From 893b597fbf77e9c6afb0718271da0735ac8e1b06 Mon Sep 17 00:00:00 2001 From: AWS SDK Rust Bot Date: Fri, 10 Nov 2023 19:30:09 +0000 Subject: [PATCH] Update design docs --- design/client/orchestrator.html | 2 +- design/print.html | 973 +++--------------- design/rfcs/rfc0003_presigning_api.html | 2 +- design/rfcs/rfc0004_retry_behavior.html | 2 +- .../rfc0006_service_specific_middleware.html | 2 +- .../rfcs/rfc0007_split_release_process.html | 2 +- .../rfcs/rfc0009_example_consolidation.html | 2 +- design/rfcs/rfc0010_waiters.html | 2 +- .../rfc0011_crates_io_alpha_publishing.html | 4 +- .../rfc0012_independent_crate_versioning.html | 18 +- design/rfcs/rfc0013_body_callback_apis.html | 4 +- design/rfcs/rfc0014_timeout_config.html | 10 +- .../rfc0015_using_features_responsibly.html | 8 +- design/rfcs/rfc0018_logging_sensitive.html | 20 +- design/rfcs/rfc0019_event_streams_errors.html | 16 +- design/rfcs/rfc0020_service_builder.html | 28 +- design/rfcs/rfc0023_refine_builder.html | 8 +- design/rfcs/rfc0025_constraint_traits.html | 14 +- ...0028_sdk_credential_cache_type_safety.html | 2 +- .../rfcs/rfc0029_new_home_for_cred_types.html | 4 +- ...iding_fallback_credentials_on_timeout.html | 2 +- .../rfc0032_better_constraint_violations.html | 22 +- ...rfc0033_improve_sdk_request_id_access.html | 2 +- design/rfcs/rfc0037_http_wrapper.html | 733 +------------ design/searchindex.js | 2 +- design/searchindex.json | 2 +- design/server/anatomy.html | 8 +- design/server/code_generation.html | 38 +- design/server/middleware.html | 2 +- design/smithy/aggregate_shapes.html | 4 +- design/smithy/overview.html | 4 +- design/smithy/recursive_shapes.html | 2 +- design/smithy/simple_shapes.html | 6 +- 33 files changed, 244 insertions(+), 1706 deletions(-) diff --git a/design/client/orchestrator.html b/design/client/orchestrator.html index 5de48f5e28..5d35229746 100644 --- a/design/client/orchestrator.html +++ b/design/client/orchestrator.html @@ -355,7 +355,7 @@

The actual code

-

The current implementation of orchestrate is defined here, in the aws-smithy-runtime crate. Related code can be found in the aws-smithy-runtime-api crate.

+

The current implementation of orchestrate is defined here, in the aws-smithy-runtime crate. Related code can be found in the aws-smithy-runtime-api crate.

Frequently asked questions

Why can't users create and use their own runtime plugins?

We chose to hide the runtime plugin API from users because we are concerned that exposing it will cause more problems than it solves. Instead, we encourage users to use interceptors. This is because, when setting a runtime plugin, any existing runtime plugin with the same type will be replaced. For example, there can only be one retry strategy or response deserializer. Errors resulting from unintentionally overriding a plugin would be difficult for users to diagnose, and would consume valuable development time.

diff --git a/design/print.html b/design/print.html index 977e9adf90..8a3b4094bc 100644 --- a/design/print.html +++ b/design/print.html @@ -356,10 +356,10 @@

Internals

Shape: The core Smithy primitive. A smithy model is composed of nested shapes defining an API.

  • -

    Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt. Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately.

    +

    Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt. Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately.

  • -

    Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a "Rust block" of code.

    +

    Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a "Rust block" of code.

    writer.rustBlock("struct Model") {
         model.fields.forEach {
             write("${field.name}: #T", field.symbol)
    @@ -393,8 +393,8 @@ 

    Internals

    doublef64 bigIntegerBigInteger (Not implemented yet) bigDecimalBigDecimal (Not implemented yet) -timestampDateTime -documentDocument +timestampDateTime +documentDocument

    Big Numbers

    @@ -405,7 +405,7 @@

    Big Numbers

    pub struct BigDecimal(String); }

    This will enable us to add helpers over time as requested. Users will also be able to define their own conversions into their preferred large-number libraries.

    -

    As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here.

    +

    As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here.

    Timestamps

    chrono is the current de facto library for datetime in Rust, but it is pre-1.0. DateTimes are represented by an SDK defined structure modeled on std::time::Duration from the Rust standard library.

    #![allow(unused)]
    @@ -482,7 +482,7 @@ 

    Document Types< | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `main::TopStructure` representable

    -

    This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt

    +

    This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt

    To support this, as the message suggests, we must "Box" the offending type. There is a touch of trickiness—only one element in the cycle needs to be boxed, but we need to select it deterministically such that we always pick the same element between multiple codegen runs. To do this the Rust SDK will:

    1. Topologically sort the graph of shapes.
    2. @@ -526,7 +526,7 @@

      Document Types< Unionenum -

      Most generated types are controlled by SymbolVisitor.

      +

      Most generated types are controlled by SymbolVisitor.

      List

      List objects in Smithy are transformed into vectors in Rust. Based on the output of the NullableIndex, the generated list may be Vec<T> or Vec<Option<T>>.

      Set

      @@ -630,7 +630,7 @@

      Union

      Smithy Union is modeled as enum in Rust.

      1. Generated enums must be marked #[non_exhaustive].
      2. -
      3. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue.
      4. +
      5. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue.
      6. Union members (enum variants) are not nullable, because Smithy union members cannot contain null values.
      7. When union members contain references to other shapes, we generate a wrapping variant (see below).
      8. Union members do not require #[non_exhaustive], because changing the shape targeted by a union member is not backwards compatible.
      9. @@ -1040,7 +1040,7 @@

        The actual code

        -

        The current implementation of orchestrate is defined here, in the aws-smithy-runtime crate. Related code can be found in the aws-smithy-runtime-api crate.

        +

        The current implementation of orchestrate is defined here, in the aws-smithy-runtime crate. Related code can be found in the aws-smithy-runtime-api crate.

        Frequently asked questions

        Why can't users create and use their own runtime plugins?

        We chose to hide the runtime plugin API from users because we are concerned that exposing it will cause more problems than it solves. Instead, we encourage users to use interceptors. This is because, when setting a runtime plugin, any existing runtime plugin with the same type will be replaced. For example, there can only be one retry strategy or response deserializer. Errors resulting from unintentionally overriding a plugin would be difficult for users to diagnose, and would consume valuable development time.

        @@ -1225,7 +1225,7 @@

        Middleware

        The following document provides a brief survey of the various positions middleware can be inserted in Smithy Rust.

        -

        We use the Pokémon service as a reference model throughout.

        +

        We use the Pokémon service as a reference model throughout.

        /// A Pokémon species forms the basis for at least one Pokémon.
         @title("Pokémon Species")
         resource PokemonSpecies {
        @@ -1828,7 +1828,7 @@ 

        The Anatomy of a Service

        What is Smithy? At a high-level, it's a grammar for specifying services while leaving the business logic undefined. A Smithy Service specifies a collection of function signatures in the form of Operations, their purpose is to encapsulate business logic. A Smithy implementation should, for each Smithy Service, provide a builder, which accepts functions conforming to said signatures, and returns a service subject to the semantics specified by the model.

        This survey is disinterested in the actual Kotlin implementation of the code generator, and instead focuses on the structure of the generated Rust code and how it relates to the Smithy model. The intended audience is new contributors and users interested in internal details.

        -

        During the survey we will use the pokemon.smithy model as a reference:

        +

        During the survey we will use the pokemon.smithy model as a reference:

        /// A Pokémon species forms the basis for at least one Pokémon.
         @title("Pokémon Species")
         resource PokemonSpecies {
        @@ -2032,7 +2032,7 @@ 

        Operations

        }

        To summarize a model service constructed can be constructed from a Handler or a OperationService subject to the constraints of an OperationShape. More detailed information on these conversions is provided in the Handler and OperationService section Rust docs.

        Serialization and Deserialization

        -

        A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits:

        +

        A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits:

        #![allow(unused)]
         fn main() {
         extern crate aws_smithy_http_server;
        @@ -2220,7 +2220,7 @@ 

        Plugins

        fn apply(&self, input: T) -> Self::Output { <U as Pl<Ser, Op, T>>::apply(self, input) } } }
        -

        An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs.

        +

        An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs.

        Plugins can be applied in two places:

        • HTTP plugins, which are applied pre-deserialization/post-serialization, acting on HTTP requests/responses.
        • @@ -2363,7 +2363,7 @@

          Builders

          self.get_pokemon_species = Some(Route::new(svc)); self }

    -

    Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise.

    +

    Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise.

    You can transform a builder instance into a complete service (PokemonService) using one of the following methods:

    Crates in /rust-runtime (informally referred to as "runtime crates") are added to a crate's dependency only when used. For example, if a model uses event streams, the generated crates will depend on aws-smithy-eventstream.

    Generating code

    -

    smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and +

    smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and inherits from SmithyBuildPlugin in smithy-build. Code generation is in Kotlin and shared common, non-Rust specific code with the smithy Java repository. They plug into the Smithy gradle plugin, which is a gradle plugin.

    The comment at the beginning of execute describes what a Decorator is and uses the following terms:

    -

    The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method.

    -

    CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor.

    +

    The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method.

    +

    CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor.

    CodegenVisitor, RustCodegenPlugin, and wherever there are different implementations between client and server, such as in generating error types, have corresponding server versions.

    Objects used throughout code generation are:

    Useful conversions are:

    SymbolProvider.toSymbol(shape)
     

    where SymbolProvider constructs symbols for shapes. Some symbols require to create other symbols and types; -event streams and other streaming shapes are an example. -Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider, -and all other providers will work with this new symbol.

    +event streams and other streaming shapes are an example. +Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider, +and all other providers will work with this new symbol.

    Model.expectShape(shapeId)
     

    Each model has a shapeId to shape map; this method returns the shape associated with this shapeId.

    -

    Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape.

    -

    CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust; -here is how a service is constructed, -here a structure and so on.

    -

    Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis. -The complete result is a Rust crate, -in which all dependencies are written into their modules and lib.rs is generated (here). -execute() ends by running cargo fmt, +

    Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape.

    +

    CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust; +here is how a service is constructed, +here a structure and so on.

    +

    Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis. +The complete result is a Rust crate, +in which all dependencies are written into their modules and lib.rs is generated (here). +execute() ends by running cargo fmt, to avoid having to format correctly Rust in Writers and to be sure the generated code follows the styling rules.

    RFCs

    What is an RFC?: An RFC is a document that proposes a change to smithy-rs or the AWS Rust SDK. Request for Comments means a request for discussion and oversight about the future of the project from maintainers, contributors and users.

    @@ -3240,7 +3240,7 @@

    similar to how send is renamed.

    +similar to how send is renamed.

    Changes Checklist

    RFC: Split Release Process

    -

    Status: Implemented in smithy-rs#986 and aws-sdk-rust#351

    +

    Status: Implemented in smithy-rs#986 and aws-sdk-rust#351

    At the time of writing, the aws-sdk-rust repository is used exclusively for the entire release process of both the Rust runtime crates from smithy-rs as @@ -3950,7 +3950,7 @@

    Chang

    Currently, the AWS Rust SDK's examples are duplicated across awslabs/aws-sdk-rust, -awslabs/smithy-rs, +smithy-lang/smithy-rs, and awsdocs/aws-doc-sdk-examples. The smithy-rs repository was formerly the source of truth for examples, with the examples being copied over to aws-sdk-rust as part of the release @@ -4192,7 +4192,7 @@

    W ) }

    The retry delay time should be calculated by the same exponential backoff with jitter code that the -default RetryHandler uses in aws-smithy-client. This function will need to be split up and made +default RetryHandler uses in aws-smithy-client. This function will need to be split up and made available to the waiter implementations so that just the delay can be calculated.

    Changes Checklist

  • patch: @@ -4376,7 +4376,7 @@

    Versioning

  • Changes that aren't breaking
  • Dependency updates for dependencies that are part of the public API
  • Model updates with API changes
  • -
  • For code-generated crates: when a newer version of smithy-rs is used to generate the crate
  • +
  • For code-generated crates: when a newer version of smithy-rs is used to generate the crate
  • patch: @@ -4429,13 +4429,13 @@

    Version Tra the version numbers from runtime crates directly, and it will use the rules from the next section to determine the version numbers for the generated crates.

    Versioning for Code Generated (SDK Service) Crates

    -

    Code generated crates will have their minor version bumped when the version of smithy-rs used to generate +

    Code generated crates will have their minor version bumped when the version of smithy-rs used to generate them changes, or when model updates with API changes are made. Three pieces of information are required to -handle this process: the previously released version number, the smithy-rs version used to generate the code, +handle this process: the previously released version number, the smithy-rs version used to generate the code, and the level of model updates being applied. For this last one, if there are multiple model updates that affect only documentation, but then one model update that affects an API, then as a whole they will be considered as affecting an API and require a minor version bump.

    -

    The previously released version number will be retrieved from crates.io using its API. The smithy-rs version +

    The previously released version number will be retrieved from crates.io using its API. The smithy-rs version used during code generation will become a build artifact that is saved to versions.toml in aws-sdk-rust. During phase 1, the tooling required to know if a model is a documentation-only change will not be available, so all model changes will result in a minor version bump during this phase.

    @@ -4449,11 +4449,11 @@

    Versioning for Runtime Crates

    -

    The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with +

    The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with a build step to replace those with a consistent major.minor will be removed. These runtime crates will begin having their actual next version number in the Cargo.toml file in smithy-rs.

    This introduces a new problem where a developer can forget to bump a runtime crate version, so a method of @@ -4513,7 +4513,7 @@

    Chang
  • Establish initial versions.toml in aws-sdk-rust/main
  • -Set version numbers in runtime crates in smithy-rs
  • +Set version numbers in runtime crates in smithy-rs

  • Update the auto-sync tool to generate versions.toml
  • @@ -4567,7 +4567,7 @@

    The Imp fn make_new(&self) -> Box<dyn SendCallback> { BodyCallback::make_new(self) } }

    The changes we need to make to ByteStream:

    -

    (The current version of ByteStream and Inner can be seen here.)

    +

    (The current version of ByteStream and Inner can be seen here.)

    // in `aws_smithy_http::byte_stream`...
     
     // We add a new method to `ByteStream` for inserting callbacks
    @@ -4589,7 +4589,7 @@ 

    The Imp } }

    The changes we need to make to SdkBody:

    -

    (The current version of SdkBody can be seen here.)

    +

    (The current version of SdkBody can be seen here.)

    // In aws_smithy_http::body...
     
     #[pin_project]
    @@ -4827,7 +4827,7 @@ 

    General terms

    HTTP stack terms

    • Service: A trait defined in the tower-service crate. The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response.
    • -
    • Layer: Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code.
    • +
    • Layer: Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code.
    • Middleware: a term with several meanings,
    • -
    • The most notable example of a Middleware is the AwsMiddleware. Other notable examples include MapRequest, AsyncMapRequest, and ParseResponse.
    • +
    • The most notable example of a Middleware is the AwsMiddleware. Other notable examples include MapRequest, AsyncMapRequest, and ParseResponse.

  • DispatchService: The innermost part of a group of nested services. The Service that actually makes an HTTP call on behalf of a request. Responsible for parsing success and error responses.
  • Connector: a term with several meanings,
      -
    • DynConnectors (a struct that implements DynConnect) are Services with their specific type erased so that we can do dynamic dispatch.
    • +
    • DynConnectors (a struct that implements DynConnect) are Services with their specific type erased so that we can do dynamic dispatch.
    • A term from hyper for any object that implements the Connect trait. Really just an alias for tower_service::Service. Sometimes referred to as a Connection.
  • @@ -4904,7 +4904,7 @@

    Prior Art

    Behind the scenes

    Timeouts are achieved by racing a future against a tokio::time::Sleep future. The question, then, is "how can I create a future that represents a condition I want to watch for?". For example, in the case of a ConnectTimeout, how do we watch an ongoing request to see if it's completed the connect-handshake? Our current stack of Middleware acts on requests at different levels of granularity. The timeout Middlewares will be no different.

    Middlewares for AWS Client requests

    -

    View AwsMiddleware in GitHub

    +

    View AwsMiddleware in GitHub

    #[derive(Debug, Default)]
     #[non_exhaustive]
     pub struct AwsMiddleware;
    @@ -4926,7 +4926,7 @@ 

    Middlewares for Smithy Client requests

    -

    View aws_smithy_client::Client::call_raw in GitHub

    +

    View aws_smithy_client::Client::call_raw in GitHub

    impl<C, M, R> Client<C, M, R>
       where
               C: bounds::SmithyConnector,
    @@ -5076,7 +5076,7 @@ 

    aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.

    +

    We use features in a majority of our runtime crates and in all of our SDK crates. For example, aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.

    Features should be additive

    The Cargo book has this to say:

    @@ -5141,7 +5141,7 @@

    }

    Both features can now be enabled at once without creating a conflict. Since both methods have different names, it's now Ok for them to have different return types.

    -

    This is real code, see it in context

    +

    This is real code, see it in context

    We should avoid using #[cfg(not(feature = "some-feature"))]

    At the risk of seeming repetitive, the Cargo book says:

    @@ -5160,9 +5160,9 @@

    Don't default to defining "default features"

    -

    Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users.

    +

    Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users.

    When a default feature providing some functionality is disabled, active features must not automatically replace that functionality

    -

    As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example.

    +

    As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example.

    This RFC proposes that we should have a single default for any configurable functionality and that that functionality depends on a corresponding default feature being active. If default-features are disabled, then so is the corresponding default functionality. In its place would be functionality that fails fast with a message describing why it failed (a default was deactivated but the user didn't set a replacement), and what the user should do to fix it (with links to documentation and examples where necessary). We should use compile-time errors to communicate failures with users, or panics for cases that can't be evaluated at compile-time.

    For an example: Say you have a crate with features a, b, c that all provide some version of functionality foo. Feature a is part of default-features. When no-default-features = true but features b and c are active, don't automatically fall back to b or c. Instead, emit an error with a message like this:

    @@ -6784,7 +6784,7 @@

    Cha

    Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients).

    This RFC is concerned with solving the problem of honouring this specification in the context of logging.

    -

    Progress has been made towards this goal in the form of the Sensitive Trait PR, which uses code generation to remove sensitive fields from Debug implementations.

    +

    Progress has been made towards this goal in the form of the Sensitive Trait PR, which uses code generation to remove sensitive fields from Debug implementations.

    The problem remains open due to the existence of HTTP binding traits and a lack of clearly defined user guidelines which customers may follow to honour the specification.

    This RFC proposes:

    @@ -8439,7 +8439,7 @@

    Overview

  • There should be no significant degradation in runtime performance (i.e. startup time for applications).
  • Handling missing operations

    -

    Let's start by reviewing the API proposed in RFC 20. We will use the Pokemon service as our driving example throughout the RFC. +

    Let's start by reviewing the API proposed in RFC 20. We will use the Pokemon service as our driving example throughout the RFC. This is what the startup code looks like:

    #[tokio::main]
     pub async fn main() {
    @@ -9009,19 +9009,19 @@ 

    Cha
  • Update codegen-server to generate the proposed service builder API
  • Implement Pluggable for PluginStack
  • Evaluate the introduction of a PluginBuilder as the primary API to compose multiple plugins (instead of PluginStack::new(IdentityPlugin, IdentityPlugin).apply(...))
  • @@ -9153,11 +9153,11 @@

    RFC: Constraint traits

    Status: Implemented.

    -

    See the description of the PR that laid the +

    See the description of the PR that laid the foundation for the implementation of constraint traits for a complete -reference. See the Better Constraint Violations RFC too for subsequent +reference. See the Better Constraint Violations RFC too for subsequent improvements to this design.

    -

    See the uber tracking issue for pending work.

    +

    See the uber tracking issue for pending work.

    Constraint traits are used to constrain the values that can be provided for a shape.

    @@ -9211,7 +9211,7 @@

    #1148.

    +#1148.

    That leaves 4 traits: length, pattern, range, and uniqueItems.

    Implementation

    This section addresses how to implement and enforce the length, pattern, @@ -9325,7 +9325,7 @@

    #1187). +does not need such a variant (#1187).
  • Conversions into the tuple struct are fallible (try_from() instead of from()). These errors will result in a my_struct::ConstraintViolation.
  • @@ -9394,7 +9394,7 @@

    Unr provide a complete and structured report? @@ -9443,7 +9443,7 @@

    Alterna migrate from one to the other without breaking user code.

    UPDATE: We ended up implementing both designs, adding a flag to opt into the alternative design. Refer to the mentions of the publicConstrainedTypes flag -in the description of the Builders of builders PR.

    +in the description of the Builders of builders PR.

    RFC: Client Crate Organization

    Status: Implemented

    @@ -10311,7 +10311,7 @@

    RFC: SDK Credential Cache Type Safety

    -

    Status: Implemented in smithy-rs#2122

    +

    Status: Implemented in smithy-rs#2122

    Applies to: AWS SDK for Rust

    At time of writing (2022-10-11), the SDK's credentials provider can be customized by providing:

    @@ -10586,10 +10586,10 @@

    Pros/cons

    RFC: Finding New Home for Credential Types

    -

    Status: Implemented in smithy-rs#2108

    +

    Status: Implemented in smithy-rs#2108

    Applies to: clients

    -

    This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them.

    +

    This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them.

    It is assumed that the primary motivation behind the introduction of type safe credentials caching remains the same as the preceding RFC.

    Assumptions

    This document assumes that the following items in the changes checklist in the preceding RFC have been implemented:

    @@ -11110,7 +11110,7 @@

    Cha

    RFC: Providing fallback credentials on external timeout

    -

    Status: Implemented in smithy-rs#2246

    +

    Status: Implemented in smithy-rs#2246

    Applies to: client

    For a summarized list of proposed changes, see the Changes Checklist section.

    @@ -11383,7 +11383,7 @@

    Pos

    Status: Accepted

    Applies to: server

    -

    During and after the design and the core +

    During and after the design and the core implementation of constraint traits in the server SDK, some problems relating to constraint violations were identified. This RFC sets out to explain and address three of them: impossible constraint @@ -11396,9 +11396,9 @@

    Pos one changeset (see the Checklist) section.

    Note: code snippets from generated SDKs in this document are abridged so as to be didactic and relevant to the point being made. They are accurate with -regards to commit 2226fe.

    +regards to commit 2226fe.

    Terminology

    -

    The design and the description of the +

    The design and the description of the PR where the core implementation of constraint traits was made are recommended prior reading to understand this RFC.

      @@ -11535,7 +11535,7 @@

      Problem

      framework deserializes requests into fully unconstrained types. These are types holding unconstrained types all the way through their closures. For instance, in the case of structure shapes, builder types (the unconstrained -type corresponding to the structure shape) hold +type corresponding to the structure shape) hold builders all the way down.

      In the case of the above model, below is the alternate pub(crate) constructor the server framework uses upon deserialization. Observe how @@ -11573,7 +11573,7 @@

      Problem

      framework operates that has no bearing on their application code. They shouldn't be exposed to impossible constraint violation variants in their Rust docs, nor have to match on these variants when handling errors.

      -

      Note: this comment alludes to the problem described above.

      +

      Note: this comment alludes to the problem described above.

      Solution proposal

      The problem can be mitigated by adding #[doc(hidden)] to the internal variants and #[non_exhaustive] to the enum. We're already doing this in some @@ -11598,14 +11598,14 @@

      Solution ), } }

    -

    Note that, to some extent, the spirit of this approach is already currently +

    Note that, to some extent, the spirit of this approach is already currently present in the case of builder types when publicConstrainedTypes is set to false:

      -
    1. ServerBuilderGenerator.kt renders the usual builder type that enforces +
    2. ServerBuilderGenerator.kt renders the usual builder type that enforces constraint traits, setting its visibility to pub (crate), for exclusive use by the framework.
    3. -
    4. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the +
    5. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the builder type the user is exposed to: this builder does not take in constrained types and does not enforce all modeled constraints.
    @@ -11654,7 +11654,7 @@

    Background

    member: ValidationExceptionField }
    -

    It was mentioned in the constraint traits +

    It was mentioned in the constraint traits RFC, and implicit in the definition of Smithy's smithy.framework.ValidationException @@ -11698,7 +11698,7 @@

    Problem

    pub fn compile_regex() -> &'static regex::Regex { static REGEX: once_cell::sync::Lazy<regex::Regex> = once_cell::sync::Lazy::new(|| { - regex::Regex::new(r#"[a-f0-5]*"#).expect(r#"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/awslabs/smithy-rs/issues for support"#) + regex::Regex::new(r#"[a-f0-5]*"#).expect(r#"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/smithy-lang/smithy-rs/issues for support"#) }); &REGEX @@ -11809,7 +11809,7 @@

    ). We will provide a similar request body limiting mechanism regardless. -

    This RFC advocates for implementing the first option, arguing that it's fair +

    This RFC advocates for implementing the first option, arguing that it's fair to say that the framework should return an error that is as informative as possible, but it doesn't necessarily have to be complete. @@ -12071,7 +12071,7 @@

    Checklist

    RFC: Improving access to request IDs in SDK clients

    -

    Status: Implemented in #2129

    +

    Status: Implemented in #2129

    Applies to: AWS SDK clients

    At time of writing, customers can retrieve a request ID in one of four ways in the Rust SDK:

    @@ -13031,738 +13031,7 @@

    Request

    Proposed Implementation

    Proposed Implementation of `request` -
    /*
    - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
    - * SPDX-License-Identifier: Apache-2.0
    - */
    -
    -//! Http Request Types
    -
    -use aws_smithy_types::body::SdkBody;
    -use http as http0;
    -use http::header::{InvalidHeaderName, InvalidHeaderValue};
    -use http::uri::InvalidUri;
    -use http0::header::Iter;
    -use http0::uri::PathAndQuery;
    -use http0::{Extensions, HeaderMap, Method};
    -use std::borrow::Cow;
    -use std::error::Error;
    -use std::fmt::{Debug, Display, Formatter};
    -use std::str::{FromStr, Utf8Error};
    -
    -#[derive(Debug)]
    -/// An HTTP Request Type
    -pub struct Request<B = SdkBody> {
    -    body: B,
    -    uri: Uri,
    -    method: Method,
    -    extensions: Extensions,
    -    headers: Headers,
    -}
    -
    -/// A Request URI
    -#[derive(Debug, Clone)]
    -pub struct Uri {
    -    as_string: String,
    -    parsed: http0::Uri,
    -}
    -
    -impl Uri {
    -    /// Sets `endpoint` as the endpoint for a URL.
    -    ///
    -    /// An `endpoint` MUST contain a scheme and authority.
    -    /// An `endpoint` MAY contain a port and path.
    -    ///
    -    /// An `endpoint` MUST NOT contain a query
    -    pub fn set_endpoint(&mut self, endpoint: &str) -> Result<(), HttpError> {
    -        let endpoint: http0::Uri = endpoint.parse().map_err(HttpError::invalid_uri)?;
    -        let endpoint = endpoint.into_parts();
    -        let authority = endpoint
    -            .authority
    -            .ok_or_else(|| HttpError::new("endpoint must contain authority"))?;
    -        let scheme = endpoint
    -            .scheme
    -            .ok_or_else(|| HttpError::new("endpoint must have scheme"))?;
    -        let new_uri = http0::Uri::builder()
    -            .authority(authority)
    -            .scheme(scheme)
    -            .path_and_query(merge_paths(endpoint.path_and_query, &self.parsed).as_ref())
    -            .build()
    -            .map_err(HttpError::new)?;
    -        self.as_string = new_uri.to_string();
    -        self.parsed = new_uri;
    -        Ok(())
    -    }
    -}
    -
    -fn merge_paths(endpoint_path: Option<PathAndQuery>, uri: &http0::Uri) -> Cow<'_, str> {
    -    let uri_path_and_query = uri.path_and_query().map(|pq| pq.as_str()).unwrap_or("");
    -    let endpoint_path = match endpoint_path {
    -        None => return Cow::Borrowed(uri_path_and_query),
    -        Some(path) => path,
    -    };
    -    if let Some(query) = endpoint_path.query() {
    -        tracing::warn!(query = %query, "query specified in endpoint will be ignored during endpoint resolution");
    -    }
    -    let endpoint_path = endpoint_path.path();
    -    if endpoint_path.is_empty() {
    -        Cow::Borrowed(uri_path_and_query)
    -    } else {
    -        let ep_no_slash = endpoint_path.strip_suffix('/').unwrap_or(endpoint_path);
    -        let uri_path_no_slash = uri_path_and_query
    -            .strip_prefix('/')
    -            .unwrap_or(uri_path_and_query);
    -        Cow::Owned(format!("{}/{}", ep_no_slash, uri_path_no_slash))
    -    }
    -}
    -
    -impl TryFrom<String> for Uri {
    -    type Error = HttpError;
    -
    -    fn try_from(value: String) -> Result<Self, Self::Error> {
    -        let parsed = value.parse().map_err(HttpError::invalid_uri)?;
    -        Ok(Uri {
    -            as_string: value,
    -            parsed,
    -        })
    -    }
    -}
    -
    -impl<'a> TryFrom<&'a str> for Uri {
    -    type Error = HttpError;
    -    fn try_from(value: &'a str) -> Result<Self, Self::Error> {
    -        Self::try_from(value.to_string())
    -    }
    -}
    -
    -impl From<http0::Uri> for Uri {
    -    fn from(value: http::Uri) -> Self {
    -        Self {
    -            as_string: value.to_string(),
    -            parsed: value,
    -        }
    -    }
    -}
    -
    -impl<B> TryInto<http0::Request<B>> for Request<B> {
    -    type Error = HttpError;
    -
    -    fn try_into(self) -> Result<http::Request<B>, Self::Error> {
    -        self.into_http02x()
    -    }
    -}
    -
    -impl<B> Request<B> {
    -    /// Converts this request into an http 0.x request.
    -    ///
    -    /// Depending on the internal storage type, this operation may be free or it may have an internal
    -    /// cost.
    -    pub fn into_http02x(self) -> Result<http0::Request<B>, HttpError> {
    -        let mut req = http::Request::builder()
    -            .uri(self.uri.parsed)
    -            .method(self.method)
    -            .body(self.body)
    -            .expect("known valid");
    -        let mut headers = HeaderMap::new();
    -        headers.extend(
    -            self.headers
    -                .headers
    -                .into_iter()
    -                .map(|(k, v)| (k, v.into_http02x())),
    -        );
    -        *req.headers_mut() = headers;
    -        *req.extensions_mut() = self.extensions;
    -        Ok(req)
    -    }
    -
    -    /// Update the body of this request to be a new body.
    -    pub fn map<U>(self, f: impl Fn(B) -> U) -> Request<U> {
    -        Request {
    -            body: f(self.body),
    -            uri: self.uri,
    -            method: self.method,
    -            extensions: self.extensions,
    -            headers: self.headers,
    -        }
    -    }
    -
    -    /// Returns a GET request with no URI
    -    pub fn new(body: B) -> Self {
    -        Self {
    -            body,
    -            uri: Uri::from(http0::Uri::from_static("/")),
    -            method: Method::GET,
    -            extensions: Default::default(),
    -            headers: Default::default(),
    -        }
    -    }
    -
    -    /// Returns a reference to the header map
    -    pub fn headers(&self) -> &Headers {
    -        &self.headers
    -    }
    -
    -    /// Returns a mutable reference to the header map
    -    pub fn headers_mut(&mut self) -> &mut Headers {
    -        &mut self.headers
    -    }
    -
    -    /// Returns the body associated with the request
    -    pub fn body(&self) -> &B {
    -        &self.body
    -    }
    -
    -    /// Returns a mutable reference to the body
    -    pub fn body_mut(&mut self) -> &mut B {
    -        &mut self.body
    -    }
    -
    -    /// Returns the method associated with this request
    -    pub fn method(&self) -> &str {
    -        self.method.as_str()
    -    }
    -
    -    /// Returns the URI associated with this request
    -    pub fn uri(&self) -> &str {
    -        &self.uri.as_string
    -    }
    -
    -    /// Returns a mutable reference the the URI of this http::Request
    -    pub fn uri_mut(&mut self) -> &mut Uri {
    -        &mut self.uri
    -    }
    -
    -    /// Sets the URI of this request
    -    pub fn set_uri<U>(&mut self, uri: U) -> Result<(), U::Error>
    -    where
    -        U: TryInto<Uri>,
    -    {
    -        let uri = uri.try_into()?;
    -        self.uri = uri;
    -        Ok(())
    -    }
    -
    -    /// Adds an extension to the request extensions
    -    pub fn add_extension<T: Send + Sync + Clone + 'static>(&mut self, extension: T) {
    -        self.extensions.insert(extension);
    -    }
    -}
    -
    -impl Request<SdkBody> {
    -    /// Attempts to clone this request
    -    ///
    -    /// If the body is cloneable, this will clone the request. Otherwise `None` will be returned
    -    pub fn try_clone(&self) -> Option<Self> {
    -        let body = self.body().try_clone()?;
    -        Some(Self {
    -            body,
    -            uri: self.uri.clone(),
    -            method: self.method.clone(),
    -            extensions: Extensions::new(),
    -            headers: self.headers.clone(),
    -        })
    -    }
    -
    -    /// Replaces this requests body with [`SdkBody::taken()`]
    -    pub fn take_body(&mut self) -> SdkBody {
    -        std::mem::replace(self.body_mut(), SdkBody::taken())
    -    }
    -
    -    /// Create a GET request to `/` with an empty body
    -    pub fn empty() -> Self {
    -        Self::new(SdkBody::empty())
    -    }
    -
    -    /// Creates a GET request to `uri` with an empty body
    -    pub fn get(uri: impl AsRef<str>) -> Result<Self, HttpError> {
    -        let mut req = Self::new(SdkBody::empty());
    -        req.set_uri(uri.as_ref())?;
    -        Ok(req)
    -    }
    -}
    -
    -impl<B> TryFrom<http0::Request<B>> for Request<B> {
    -    type Error = HttpError;
    -
    -    fn try_from(value: http::Request<B>) -> Result<Self, Self::Error> {
    -        if let Some(e) = value
    -            .headers()
    -            .values()
    -            .filter_map(|value| std::str::from_utf8(value.as_bytes()).err())
    -            .next()
    -        {
    -            Err(HttpError::header_was_not_a_string(e))
    -        } else {
    -            let (parts, body) = value.into_parts();
    -            let mut string_safe_headers: HeaderMap<HeaderValue> = Default::default();
    -            string_safe_headers.extend(
    -                parts
    -                    .headers
    -                    .into_iter()
    -                    .map(|(k, v)| (k, HeaderValue::from_http02x(v).expect("validated above"))),
    -            );
    -            Ok(Self {
    -                body,
    -                uri: parts.uri.into(),
    -                method: parts.method.clone(),
    -                extensions: parts.extensions,
    -                headers: Headers {
    -                    headers: string_safe_headers,
    -                },
    -            })
    -        }
    -    }
    -}
    -
    -/// An immutable view of request headers
    -#[derive(Clone, Default, Debug)]
    -pub struct Headers {
    -    headers: HeaderMap<HeaderValue>,
    -}
    -
    -impl<'a> IntoIterator for &'a Headers {
    -    type Item = (&'a str, &'a str);
    -    type IntoIter = HeadersIter<'a>;
    -
    -    fn into_iter(self) -> Self::IntoIter {
    -        HeadersIter {
    -            inner: self.headers.iter(),
    -        }
    -    }
    -}
    -
    -/// An Iterator over headers
    -pub struct HeadersIter<'a> {
    -    inner: Iter<'a, HeaderValue>,
    -}
    -
    -impl<'a> Iterator for HeadersIter<'a> {
    -    type Item = (&'a str, &'a str);
    -
    -    fn next(&mut self) -> Option<Self::Item> {
    -        self.inner.next().map(|(k, v)| (k.as_str(), v.as_ref()))
    -    }
    -}
    -
    -impl Headers {
    -    /// Create an empty header map
    -    pub fn new() -> Self {
    -        Self::default()
    -    }
    -
    -    /// Returns the value for a given key
    -    ///
    -    /// If multiple values are associated, the first value is returned
    -    /// See [HeaderMap::get]
    -    pub fn get(&self, key: impl AsRef<str>) -> Option<&str> {
    -        self.headers.get(key.as_ref()).map(|v| v.as_ref())
    -    }
    -
    -    /// Returns all values for a given key
    -    pub fn get_all(&self, key: impl AsRef<str>) -> impl Iterator<Item = &str> {
    -        self.headers
    -            .get_all(key.as_ref())
    -            .iter()
    -            .map(|v| v.as_ref())
    -    }
    -
    -    /// Returns an iterator over the headers
    -    pub fn iter(&self) -> HeadersIter<'_> {
    -        HeadersIter {
    -            inner: self.headers.iter(),
    -        }
    -    }
    -
    -    /// Returns the total number of **values** stored in the map
    -    pub fn len(&self) -> usize {
    -        self.headers.len()
    -    }
    -
    -    /// Returns true if there are no headers
    -    pub fn is_empty(&self) -> bool {
    -        self.len() == 0
    -    }
    -
    -    /// Returns true if this header is present
    -    pub fn contains_key(&self, key: &str) -> bool {
    -        self.headers.contains_key(key)
    -    }
    -
    -    /// Insert a value into the headers structure.
    -    ///
    -    /// This will *replace* any existing value for this key. Returns the previous associated value if any.
    -    ///
    -    /// # Panics
    -    /// If the key or value are not valid ascii, this function will panic.
    -    pub fn insert(
    -        &mut self,
    -        key: impl AsHeaderComponent,
    -        value: impl AsHeaderComponent,
    -    ) -> Option<String> {
    -        self.try_insert(key, value)
    -            .expect("HeaderName or HeaderValue was invalid")
    -    }
    -
    -    /// Insert a value into the headers structure.
    -    ///
    -    /// This will *replace* any existing value for this key. Returns the previous associated value if any.
    -    ///
    -    /// If the key or value are not valid ascii, an error is returned
    -    pub fn try_insert(
    -        &mut self,
    -        key: impl AsHeaderComponent,
    -        value: impl AsHeaderComponent,
    -    ) -> Result<Option<String>, HttpError> {
    -        let key = header_name(key)?;
    -        let value = header_value(value.into_maybe_static()?)?;
    -        Ok(self
    -            .headers
    -            .insert(key, value)
    -            .map(|old_value| old_value.into()))
    -    }
    -
    -    /// Appends a value to a given key
    -    ///
    -    /// If the key or value are NOT valid ascii, an error is returned
    -    pub fn try_append(
    -        &mut self,
    -        key: impl AsHeaderComponent,
    -        value: impl AsHeaderComponent,
    -    ) -> Result<bool, HttpError> {
    -        let key = header_name(key.into_maybe_static()?)?;
    -        let value = header_value(value.into_maybe_static()?)?;
    -        Ok(self.headers.append(key, value))
    -    }
    -
    -    /// Removes all headers with a given key
    -    ///
    -    /// If there are multiple entries for this key, the first entry is returned
    -    pub fn remove(&mut self, key: impl AsRef<str>) -> Option<String> {
    -        self.headers
    -            .remove(key.as_ref())
    -            .map(|h| h.as_str().to_string())
    -    }
    -
    -    /// Appends a value to a given key
    -    ///
    -    /// # Panics
    -    /// If the key or value are NOT valid ascii, this function will panic
    -    pub fn append(&mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent) -> bool {
    -        self.try_append(key, value)
    -            .expect("HeaderName or HeaderValue was invalid")
    -    }
    -}
    -
    -use sealed::AsHeaderComponent;
    -
    -mod sealed {
    -    use super::*;
    -    /// Trait defining things that may be converted into a header component (name or value)
    -    pub trait AsHeaderComponent {
    -        /// If the component can be represented as a Cow<'static, str>, return it
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError>;
    -
    -        /// Return a string reference to this header
    -        fn as_str(&self) -> Result<&str, HttpError>;
    -
    -        /// If a component is already internally represented as a `http02x::HeaderName`, return it
    -        fn repr_as_http02x_header_name(self) -> Result<http0::HeaderName, Self>
    -        where
    -            Self: Sized,
    -        {
    -            Err(self)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for &'static str {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(Cow::Borrowed(self))
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for String {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(Cow::Owned(self))
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for Cow<'static, str> {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(self)
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self.as_ref())
    -        }
    -    }
    -
    -    impl AsHeaderComponent for http0::HeaderValue {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(Cow::Owned(
    -                std::str::from_utf8(self.as_bytes())
    -                    .map_err(HttpError::header_was_not_a_string)?
    -                    .to_string(),
    -            ))
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            std::str::from_utf8(self.as_bytes()).map_err(HttpError::header_was_not_a_string)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for http0::HeaderName {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(self.to_string().into())
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self.as_ref())
    -        }
    -
    -        fn repr_as_http02x_header_name(self) -> Result<http0::HeaderName, Self>
    -        where
    -            Self: Sized,
    -        {
    -            Ok(self)
    -        }
    -    }
    -}
    -
    -mod header_value {
    -    use super::http0;
    -    use std::str::Utf8Error;
    -
    -    /// HeaderValue type
    -    ///
    -    /// **Note**: Unlike `HeaderValue` in `http`, this only supports UTF-8 header values
    -    #[derive(Debug, Clone)]
    -    pub struct HeaderValue {
    -        _private: http0::HeaderValue,
    -    }
    -
    -    impl HeaderValue {
    -        pub(crate) fn from_http02x(value: http0::HeaderValue) -> Result<Self, Utf8Error> {
    -            let _ = std::str::from_utf8(value.as_bytes())?;
    -            Ok(Self { _private: value })
    -        }
    -
    -        pub(crate) fn into_http02x(self) -> http0::HeaderValue {
    -            self._private
    -        }
    -    }
    -
    -    impl AsRef<str> for HeaderValue {
    -        fn as_ref(&self) -> &str {
    -            std::str::from_utf8(self._private.as_bytes())
    -                .expect("unreachable—only strings may be stored")
    -        }
    -    }
    -
    -    impl From<HeaderValue> for String {
    -        fn from(value: HeaderValue) -> Self {
    -            value.as_ref().to_string()
    -        }
    -    }
    -}
    -
    -use crate::box_error::BoxError;
    -pub use header_value::HeaderValue;
    -
    -impl HeaderValue {
    -    /// Returns the string representation of this header value
    -    pub fn as_str(&self) -> &str {
    -        self.as_ref()
    -    }
    -}
    -
    -impl FromStr for HeaderValue {
    -    type Err = HttpError;
    -
    -    fn from_str(s: &str) -> Result<Self, Self::Err> {
    -        HeaderValue::try_from(s.to_string())
    -    }
    -}
    -
    -impl TryFrom<String> for HeaderValue {
    -    type Error = HttpError;
    -
    -    fn try_from(value: String) -> Result<Self, Self::Error> {
    -        Ok(HeaderValue::from_http02x(
    -            http0::HeaderValue::try_from(value).map_err(HttpError::invalid_header_value)?,
    -        )
    -        .expect("input was a string"))
    -    }
    -}
    -
    -type MaybeStatic = Cow<'static, str>;
    -
    -#[derive(Debug)]
    -/// An error occurred constructing an Http Request.
    -///
    -/// This is normally due to configuration issues, internal SDK bugs, or other user error.
    -pub struct HttpError(BoxError);
    -
    -impl HttpError {
    -    // TODO(httpRefactor): Add better error internals
    -    fn new<E: Into<Box<dyn Error + Send + Sync + 'static>>>(err: E) -> Self {
    -        HttpError(err.into())
    -    }
    -
    -    fn invalid_header_value(err: InvalidHeaderValue) -> Self {
    -        Self(err.into())
    -    }
    -
    -    fn header_was_not_a_string(err: Utf8Error) -> Self {
    -        Self(err.into())
    -    }
    -
    -    fn invalid_header_name(err: InvalidHeaderName) -> Self {
    -        Self(err.into())
    -    }
    -
    -    fn invalid_uri(err: InvalidUri) -> Self {
    -        Self(err.into())
    -    }
    -}
    -
    -impl Display for HttpError {
    -    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
    -        write!(f, "an error occurred creating an HTTP Request")
    -    }
    -}
    -
    -impl Error for HttpError {
    -    fn source(&self) -> Option<&(dyn Error + 'static)> {
    -        Some(self.0.as_ref())
    -    }
    -}
    -
    -fn header_name(name: impl AsHeaderComponent) -> Result<http0::HeaderName, HttpError> {
    -    name.repr_as_http02x_header_name().or_else(|name| {
    -        name.into_maybe_static().and_then(|cow| {
    -            if cow.chars().any(|c| c.is_uppercase()) {
    -                return Err(HttpError::new("Header names must be all lower case"));
    -            }
    -            match cow {
    -                Cow::Borrowed(staticc) => Ok(http0::HeaderName::from_static(staticc)),
    -                Cow::Owned(s) => {
    -                    http0::HeaderName::try_from(s).map_err(HttpError::invalid_header_name)
    -                }
    -            }
    -        })
    -    })
    -}
    -
    -fn header_value(value: MaybeStatic) -> Result<HeaderValue, HttpError> {
    -    let header = match value {
    -        Cow::Borrowed(b) => http0::HeaderValue::from_static(b),
    -        Cow::Owned(s) => {
    -            http0::HeaderValue::try_from(s).map_err(HttpError::invalid_header_value)?
    -        }
    -    };
    -    HeaderValue::from_http02x(header).map_err(HttpError::new)
    -}
    -
    -#[cfg(test)]
    -mod test {
    -    use crate::client::orchestrator::HttpRequest;
    -    use aws_smithy_types::body::SdkBody;
    -    use http::header::{AUTHORIZATION, CONTENT_LENGTH};
    -    use http::{HeaderValue, Uri};
    -
    -    #[test]
    -    fn headers_can_be_any_string() {
    -        let _: HeaderValue = "😹".parse().expect("can be any string");
    -        let _: HeaderValue = "abcd".parse().expect("can be any string");
    -        let _ = "a\nb"
    -            .parse::<HeaderValue>()
    -            .expect_err("cannot contain control characters");
    -    }
    -
    -    #[test]
    -    fn non_ascii_requests() {
    -        let request = http::Request::builder()
    -            .header("k", "😹")
    -            .body(SdkBody::empty())
    -            .unwrap();
    -        let request: HttpRequest = request
    -            .try_into()
    -            .expect("failed to convert a non-string header");
    -        assert_eq!(request.headers().get("k"), Some("😹"))
    -    }
    -
    -    #[test]
    -    fn request_can_be_created() {
    -        let req = http::Request::builder()
    -            .uri("http://foo.com")
    -            .body(SdkBody::from("hello"))
    -            .unwrap();
    -        let mut req = super::Request::try_from(req).unwrap();
    -        req.headers_mut().insert("a", "b");
    -        assert_eq!(req.headers().get("a").unwrap(), "b");
    -        req.headers_mut().append("a", "c");
    -        assert_eq!(req.headers().get("a").unwrap(), "b");
    -        let http0 = req.into_http02x().unwrap();
    -        assert_eq!(http0.uri(), "http://foo.com");
    -    }
    -
    -    #[test]
    -    fn uri_mutations() {
    -        let req = http::Request::builder()
    -            .uri("http://foo.com")
    -            .body(SdkBody::from("hello"))
    -            .unwrap();
    -        let mut req = super::Request::try_from(req).unwrap();
    -        assert_eq!(req.uri(), "http://foo.com/");
    -        req.set_uri("http://bar.com").unwrap();
    -        assert_eq!(req.uri(), "http://bar.com");
    -        let http0 = req.into_http02x().unwrap();
    -        assert_eq!(http0.uri(), "http://bar.com");
    -    }
    -
    -    #[test]
    -    #[should_panic]
    -    fn header_panics() {
    -        let req = http::Request::builder()
    -            .uri("http://foo.com")
    -            .body(SdkBody::from("hello"))
    -            .unwrap();
    -        let mut req = super::Request::try_from(req).unwrap();
    -        let _ = req
    -            .headers_mut()
    -            .try_insert("a\nb", "a\nb")
    -            .expect_err("invalid header");
    -        let _ = req.headers_mut().insert("a\nb", "a\nb");
    -    }
    -
    -    #[test]
    -    fn try_clone_clones_all_data() {
    -        let request = ::http::Request::builder()
    -            .uri(Uri::from_static("https://www.amazon.com"))
    -            .method("POST")
    -            .header(CONTENT_LENGTH, 456)
    -            .header(AUTHORIZATION, "Token: hello")
    -            .body(SdkBody::from("hello world!"))
    -            .expect("valid request");
    -        let request: super::Request = request.try_into().unwrap();
    -        let cloned = request.try_clone().expect("request is cloneable");
    -
    -        assert_eq!("https://www.amazon.com/", cloned.uri());
    -        assert_eq!("POST", cloned.method());
    -        assert_eq!(2, cloned.headers().len());
    -        assert_eq!("Token: hello", cloned.headers().get(AUTHORIZATION).unwrap(),);
    -        assert_eq!("456", cloned.headers().get(CONTENT_LENGTH).unwrap());
    -        assert_eq!("hello world!".as_bytes(), cloned.body().bytes().unwrap());
    -    }
    -}
    +
    {{#include ../../../rust-runtime/aws-smithy-runtime-api/src/client/http/request.rs}}

    Future Work

    Currently, the only way to construct Request is from a compatible type (e.g. http02x::Request)

    diff --git a/design/rfcs/rfc0003_presigning_api.html b/design/rfcs/rfc0003_presigning_api.html index 8ffd4c7830..5bb4cd134b 100644 --- a/design/rfcs/rfc0003_presigning_api.html +++ b/design/rfcs/rfc0003_presigning_api.html @@ -339,7 +339,7 @@

    similar to how send is renamed.

    +similar to how send is renamed.

    Changes Checklist

    • diff --git a/design/rfcs/rfc0004_retry_behavior.html b/design/rfcs/rfc0004_retry_behavior.html index ca431ae3fd..e568cfa156 100644 --- a/design/rfcs/rfc0004_retry_behavior.html +++ b/design/rfcs/rfc0004_retry_behavior.html @@ -319,7 +319,7 @@

      Changes c
    • Create new Kotlin decorator RetryConfigDecorator
    • diff --git a/design/rfcs/rfc0006_service_specific_middleware.html b/design/rfcs/rfc0006_service_specific_middleware.html index 45a0e64aab..fa0d2a039e 100644 --- a/design/rfcs/rfc0006_service_specific_middleware.html +++ b/design/rfcs/rfc0006_service_specific_middleware.html @@ -173,7 +173,7 @@

      Smithy Rust

      RFC: Service-specific middleware

      -

      Status: Implemented

      +

      Status: Implemented

      For a summarized list of proposed changes, see the Changes Checklist section.

      Currently, all services use a centralized AwsMiddleware that is defined in the (poorly named) aws-hyper crate. This diff --git a/design/rfcs/rfc0007_split_release_process.html b/design/rfcs/rfc0007_split_release_process.html index e5dee61fc2..64ce8b50b9 100644 --- a/design/rfcs/rfc0007_split_release_process.html +++ b/design/rfcs/rfc0007_split_release_process.html @@ -173,7 +173,7 @@

      Smithy Rust

      RFC: Split Release Process

      -

      Status: Implemented in smithy-rs#986 and aws-sdk-rust#351

      +

      Status: Implemented in smithy-rs#986 and aws-sdk-rust#351

      At the time of writing, the aws-sdk-rust repository is used exclusively for the entire release process of both the Rust runtime crates from smithy-rs as diff --git a/design/rfcs/rfc0009_example_consolidation.html b/design/rfcs/rfc0009_example_consolidation.html index 0a0fadd981..6ca1b88c16 100644 --- a/design/rfcs/rfc0009_example_consolidation.html +++ b/design/rfcs/rfc0009_example_consolidation.html @@ -177,7 +177,7 @@

      awslabs/aws-sdk-rust, -awslabs/smithy-rs, +smithy-lang/smithy-rs, and awsdocs/aws-doc-sdk-examples. The smithy-rs repository was formerly the source of truth for examples, with the examples being copied over to aws-sdk-rust as part of the release diff --git a/design/rfcs/rfc0010_waiters.html b/design/rfcs/rfc0010_waiters.html index c36bcc70c7..932f9548fb 100644 --- a/design/rfcs/rfc0010_waiters.html +++ b/design/rfcs/rfc0010_waiters.html @@ -306,7 +306,7 @@

      W ) }

      The retry delay time should be calculated by the same exponential backoff with jitter code that the -default RetryHandler uses in aws-smithy-client. This function will need to be split up and made +default RetryHandler uses in aws-smithy-client. This function will need to be split up and made available to the waiter implementations so that just the delay can be calculated.

      Changes Checklist

        diff --git a/design/rfcs/rfc0011_crates_io_alpha_publishing.html b/design/rfcs/rfc0011_crates_io_alpha_publishing.html index 4d7d444a53..85ddbd43c1 100644 --- a/design/rfcs/rfc0011_crates_io_alpha_publishing.html +++ b/design/rfcs/rfc0011_crates_io_alpha_publishing.html @@ -271,9 +271,9 @@

        Proposal

        Short-term Changes Checklist

        • -Prepare runtime crate manifests for publication to crates.io (https://github.com/awslabs/smithy-rs/pull/755)
        • +Prepare runtime crate manifests for publication to crates.io (https://github.com/smithy-lang/smithy-rs/pull/755)
        • -Update SDK generator to set correct crate versions (https://github.com/awslabs/smithy-rs/pull/755)
        • +Update SDK generator to set correct crate versions (https://github.com/smithy-lang/smithy-rs/pull/755)
        • Write bulk publish script
        • diff --git a/design/rfcs/rfc0012_independent_crate_versioning.html b/design/rfcs/rfc0012_independent_crate_versioning.html index 69d995e57b..6e4361ec8d 100644 --- a/design/rfcs/rfc0012_independent_crate_versioning.html +++ b/design/rfcs/rfc0012_independent_crate_versioning.html @@ -191,7 +191,7 @@

          Terminology

          • AWS SDK Crate: A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3.
          • AWS Runtime Crate: Any runtime crate that the AWS SDK generated code relies on, such as aws-types.
          • -
          • Smithy Runtime Crate: Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.
          • +
          • Smithy Runtime Crate: Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.

          Requirements

          Versioning

          @@ -212,7 +212,7 @@

          Versioning

        • Breaking changes
        • Dependency updates for dependencies that are part of the public API
        • Model updates with API changes
        • -
        • For code-generated crates: when a newer version of smithy-rs is used to generate the crate
        • +
        • For code-generated crates: when a newer version of smithy-rs is used to generate the crate
      • patch: @@ -230,7 +230,7 @@

        Versioning

      • Changes that aren't breaking
      • Dependency updates for dependencies that are part of the public API
      • Model updates with API changes
      • -
      • For code-generated crates: when a newer version of smithy-rs is used to generate the crate
      • +
      • For code-generated crates: when a newer version of smithy-rs is used to generate the crate
    • patch: @@ -283,13 +283,13 @@

      Version Tra the version numbers from runtime crates directly, and it will use the rules from the next section to determine the version numbers for the generated crates.

      Versioning for Code Generated (SDK Service) Crates

      -

      Code generated crates will have their minor version bumped when the version of smithy-rs used to generate +

      Code generated crates will have their minor version bumped when the version of smithy-rs used to generate them changes, or when model updates with API changes are made. Three pieces of information are required to -handle this process: the previously released version number, the smithy-rs version used to generate the code, +handle this process: the previously released version number, the smithy-rs version used to generate the code, and the level of model updates being applied. For this last one, if there are multiple model updates that affect only documentation, but then one model update that affects an API, then as a whole they will be considered as affecting an API and require a minor version bump.

      -

      The previously released version number will be retrieved from crates.io using its API. The smithy-rs version +

      The previously released version number will be retrieved from crates.io using its API. The smithy-rs version used during code generation will become a build artifact that is saved to versions.toml in aws-sdk-rust. During phase 1, the tooling required to know if a model is a documentation-only change will not be available, so all model changes will result in a minor version bump during this phase.

      @@ -303,11 +303,11 @@

      Versioning for Runtime Crates

      -

      The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with +

      The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with a build step to replace those with a consistent major.minor will be removed. These runtime crates will begin having their actual next version number in the Cargo.toml file in smithy-rs.

      This introduces a new problem where a developer can forget to bump a runtime crate version, so a method of @@ -367,7 +367,7 @@

      Changes C
    • Establish initial versions.toml in aws-sdk-rust/main
    • -Set version numbers in runtime crates in smithy-rs
    • +Set version numbers in runtime crates in smithy-rs

    • Update the auto-sync tool to generate versions.toml
    • diff --git a/design/rfcs/rfc0013_body_callback_apis.html b/design/rfcs/rfc0013_body_callback_apis.html index 5f669b3b36..943f58af3f 100644 --- a/design/rfcs/rfc0013_body_callback_apis.html +++ b/design/rfcs/rfc0013_body_callback_apis.html @@ -204,7 +204,7 @@

      The Imp fn make_new(&self) -> Box<dyn SendCallback> { BodyCallback::make_new(self) } }

      The changes we need to make to ByteStream:

      -

      (The current version of ByteStream and Inner can be seen here.)

      +

      (The current version of ByteStream and Inner can be seen here.)

      // in `aws_smithy_http::byte_stream`...
       
       // We add a new method to `ByteStream` for inserting callbacks
      @@ -226,7 +226,7 @@ 

      The Imp } }

      The changes we need to make to SdkBody:

      -

      (The current version of SdkBody can be seen here.)

      +

      (The current version of SdkBody can be seen here.)

      // In aws_smithy_http::body...
       
       #[pin_project]
      diff --git a/design/rfcs/rfc0014_timeout_config.html b/design/rfcs/rfc0014_timeout_config.html
      index c9676cec71..8b2d80f6c2 100644
      --- a/design/rfcs/rfc0014_timeout_config.html
      +++ b/design/rfcs/rfc0014_timeout_config.html
      @@ -190,7 +190,7 @@ 

      General terms

      HTTP stack terms

      • Service: A trait defined in the tower-service crate. The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response.
      • -
      • Layer: Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code.
      • +
      • Layer: Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code.
      • Middleware: a term with several meanings,
      • -
      • The most notable example of a Middleware is the AwsMiddleware. Other notable examples include MapRequest, AsyncMapRequest, and ParseResponse.
      • +
      • The most notable example of a Middleware is the AwsMiddleware. Other notable examples include MapRequest, AsyncMapRequest, and ParseResponse.

    • DispatchService: The innermost part of a group of nested services. The Service that actually makes an HTTP call on behalf of a request. Responsible for parsing success and error responses.
    • Connector: a term with several meanings,
        -
      • DynConnectors (a struct that implements DynConnect) are Services with their specific type erased so that we can do dynamic dispatch.
      • +
      • DynConnectors (a struct that implements DynConnect) are Services with their specific type erased so that we can do dynamic dispatch.
      • A term from hyper for any object that implements the Connect trait. Really just an alias for tower_service::Service. Sometimes referred to as a Connection.
    • @@ -267,7 +267,7 @@

      Prior Art

      Behind the scenes

      Timeouts are achieved by racing a future against a tokio::time::Sleep future. The question, then, is "how can I create a future that represents a condition I want to watch for?". For example, in the case of a ConnectTimeout, how do we watch an ongoing request to see if it's completed the connect-handshake? Our current stack of Middleware acts on requests at different levels of granularity. The timeout Middlewares will be no different.

      Middlewares for AWS Client requests

      -

      View AwsMiddleware in GitHub

      +

      View AwsMiddleware in GitHub

      #[derive(Debug, Default)]
       #[non_exhaustive]
       pub struct AwsMiddleware;
      @@ -289,7 +289,7 @@ 

      Middlewares for Smithy Client requests

      -

      View aws_smithy_client::Client::call_raw in GitHub

      +

      View aws_smithy_client::Client::call_raw in GitHub

      impl<C, M, R> Client<C, M, R>
         where
                 C: bounds::SmithyConnector,
      diff --git a/design/rfcs/rfc0015_using_features_responsibly.html b/design/rfcs/rfc0015_using_features_responsibly.html
      index c203355e99..f3b58012ba 100644
      --- a/design/rfcs/rfc0015_using_features_responsibly.html
      +++ b/design/rfcs/rfc0015_using_features_responsibly.html
      @@ -180,7 +180,7 @@ 

      aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.

      +

      We use features in a majority of our runtime crates and in all of our SDK crates. For example, aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.

      Features should be additive

      The Cargo book has this to say:

      @@ -245,7 +245,7 @@

      }

      Both features can now be enabled at once without creating a conflict. Since both methods have different names, it's now Ok for them to have different return types.

      -

      This is real code, see it in context

      +

      This is real code, see it in context

      We should avoid using #[cfg(not(feature = "some-feature"))]

      At the risk of seeming repetitive, the Cargo book says:

      @@ -264,9 +264,9 @@

      Don't default to defining "default features"

      -

      Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users.

      +

      Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users.

      When a default feature providing some functionality is disabled, active features must not automatically replace that functionality

      -

      As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example.

      +

      As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example.

      This RFC proposes that we should have a single default for any configurable functionality and that that functionality depends on a corresponding default feature being active. If default-features are disabled, then so is the corresponding default functionality. In its place would be functionality that fails fast with a message describing why it failed (a default was deactivated but the user didn't set a replacement), and what the user should do to fix it (with links to documentation and examples where necessary). We should use compile-time errors to communicate failures with users, or panics for cases that can't be evaluated at compile-time.

      For an example: Say you have a crate with features a, b, c that all provide some version of functionality foo. Feature a is part of default-features. When no-default-features = true but features b and c are active, don't automatically fall back to b or c. Instead, emit an error with a message like this:

      diff --git a/design/rfcs/rfc0018_logging_sensitive.html b/design/rfcs/rfc0018_logging_sensitive.html index f71137427a..9f09c17253 100644 --- a/design/rfcs/rfc0018_logging_sensitive.html +++ b/design/rfcs/rfc0018_logging_sensitive.html @@ -180,7 +180,7 @@

      Sensitive Trait PR, which uses code generation to remove sensitive fields from Debug implementations.

      +

      Progress has been made towards this goal in the form of the Sensitive Trait PR, which uses code generation to remove sensitive fields from Debug implementations.

      The problem remains open due to the existence of HTTP binding traits and a lack of clearly defined user guidelines which customers may follow to honour the specification.

      This RFC proposes:

      diff --git a/design/rfcs/rfc0023_refine_builder.html b/design/rfcs/rfc0023_refine_builder.html index 4250924a3c..43ffd8dcbc 100644 --- a/design/rfcs/rfc0023_refine_builder.html +++ b/design/rfcs/rfc0023_refine_builder.html @@ -203,7 +203,7 @@

      Overview

    • There should be no significant degradation in runtime performance (i.e. startup time for applications).

    Handling missing operations

    -

    Let's start by reviewing the API proposed in RFC 20. We will use the Pokemon service as our driving example throughout the RFC. +

    Let's start by reviewing the API proposed in RFC 20. We will use the Pokemon service as our driving example throughout the RFC. This is what the startup code looks like:

    #[tokio::main]
     pub async fn main() {
    @@ -773,19 +773,19 @@ 

    Changes c
  • Update codegen-server to generate the proposed service builder API
  • Implement Pluggable for PluginStack
  • Evaluate the introduction of a PluginBuilder as the primary API to compose multiple plugins (instead of PluginStack::new(IdentityPlugin, IdentityPlugin).apply(...))
  • diff --git a/design/rfcs/rfc0025_constraint_traits.html b/design/rfcs/rfc0025_constraint_traits.html index f5b6a076b0..3652c37f1f 100644 --- a/design/rfcs/rfc0025_constraint_traits.html +++ b/design/rfcs/rfc0025_constraint_traits.html @@ -174,11 +174,11 @@

    Smithy Rust

    RFC: Constraint traits

    Status: Implemented.

    -

    See the description of the PR that laid the +

    See the description of the PR that laid the foundation for the implementation of constraint traits for a complete -reference. See the Better Constraint Violations RFC too for subsequent +reference. See the Better Constraint Violations RFC too for subsequent improvements to this design.

    -

    See the uber tracking issue for pending work.

    +

    See the uber tracking issue for pending work.

    Constraint traits are used to constrain the values that can be provided for a shape.

    @@ -232,7 +232,7 @@

    R

    The only constraint trait enforcement that is generated by smithy-rs clients should be and is the enum trait, which renders Rust enums.

    The required trait is already and only enforced by smithy-rs servers since -#1148.

    +#1148.

    That leaves 4 traits: length, pattern, range, and uniqueItems.

    Implementation

    This section addresses how to implement and enforce the length, pattern, @@ -346,7 +346,7 @@

    #1187). +does not need such a variant (#1187).
  • Conversions into the tuple struct are fallible (try_from() instead of from()). These errors will result in a my_struct::ConstraintViolation.
  • @@ -415,7 +415,7 @@

    Unr provide a complete and structured report? @@ -464,7 +464,7 @@

    Alterna migrate from one to the other without breaking user code.

    UPDATE: We ended up implementing both designs, adding a flag to opt into the alternative design. Refer to the mentions of the publicConstrainedTypes flag -in the description of the Builders of builders PR.

    +in the description of the Builders of builders PR.

    diff --git a/design/rfcs/rfc0028_sdk_credential_cache_type_safety.html b/design/rfcs/rfc0028_sdk_credential_cache_type_safety.html index 4a8e77cc42..ca66beb22a 100644 --- a/design/rfcs/rfc0028_sdk_credential_cache_type_safety.html +++ b/design/rfcs/rfc0028_sdk_credential_cache_type_safety.html @@ -173,7 +173,7 @@

    Smithy Rust

    RFC: SDK Credential Cache Type Safety

    -

    Status: Implemented in smithy-rs#2122

    +

    Status: Implemented in smithy-rs#2122

    Applies to: AWS SDK for Rust

    At time of writing (2022-10-11), the SDK's credentials provider can be customized by providing:

    diff --git a/design/rfcs/rfc0029_new_home_for_cred_types.html b/design/rfcs/rfc0029_new_home_for_cred_types.html index c64f6c469e..dfa3201eb1 100644 --- a/design/rfcs/rfc0029_new_home_for_cred_types.html +++ b/design/rfcs/rfc0029_new_home_for_cred_types.html @@ -173,10 +173,10 @@

    Smithy Rust

    RFC: Finding New Home for Credential Types

    -

    Status: Implemented in smithy-rs#2108

    +

    Status: Implemented in smithy-rs#2108

    Applies to: clients

    -

    This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them.

    +

    This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them.

    It is assumed that the primary motivation behind the introduction of type safe credentials caching remains the same as the preceding RFC.

    Assumptions

    This document assumes that the following items in the changes checklist in the preceding RFC have been implemented:

    diff --git a/design/rfcs/rfc0031_providing_fallback_credentials_on_timeout.html b/design/rfcs/rfc0031_providing_fallback_credentials_on_timeout.html index 905467c19f..7f2f1c85f5 100644 --- a/design/rfcs/rfc0031_providing_fallback_credentials_on_timeout.html +++ b/design/rfcs/rfc0031_providing_fallback_credentials_on_timeout.html @@ -173,7 +173,7 @@

    Smithy Rust

    RFC: Providing fallback credentials on external timeout

    -

    Status: Implemented in smithy-rs#2246

    +

    Status: Implemented in smithy-rs#2246

    Applies to: client

    For a summarized list of proposed changes, see the Changes Checklist section.

    diff --git a/design/rfcs/rfc0032_better_constraint_violations.html b/design/rfcs/rfc0032_better_constraint_violations.html index 960ac9d206..d40b17cf4f 100644 --- a/design/rfcs/rfc0032_better_constraint_violations.html +++ b/design/rfcs/rfc0032_better_constraint_violations.html @@ -176,7 +176,7 @@

    the design and the core +

    During and after the design and the core implementation of constraint traits in the server SDK, some problems relating to constraint violations were identified. This RFC sets out to explain and address three of them: impossible constraint @@ -189,9 +189,9 @@

    Checklist) section.

    Note: code snippets from generated SDKs in this document are abridged so as to be didactic and relevant to the point being made. They are accurate with -regards to commit 2226fe.

    +regards to commit 2226fe.

    Terminology

    -

    The design and the description of the +

    The design and the description of the PR where the core implementation of constraint traits was made are recommended prior reading to understand this RFC.

      @@ -328,7 +328,7 @@

      Problem

      framework deserializes requests into fully unconstrained types. These are types holding unconstrained types all the way through their closures. For instance, in the case of structure shapes, builder types (the unconstrained -type corresponding to the structure shape) hold +type corresponding to the structure shape) hold builders all the way down.

      In the case of the above model, below is the alternate pub(crate) constructor the server framework uses upon deserialization. Observe how @@ -366,7 +366,7 @@

      Problem

      framework operates that has no bearing on their application code. They shouldn't be exposed to impossible constraint violation variants in their Rust docs, nor have to match on these variants when handling errors.

      -

      Note: this comment alludes to the problem described above.

      +

      Note: this comment alludes to the problem described above.

      Solution proposal

      The problem can be mitigated by adding #[doc(hidden)] to the internal variants and #[non_exhaustive] to the enum. We're already doing this in some @@ -391,14 +391,14 @@

      Solution ), } }

    -

    Note that, to some extent, the spirit of this approach is already currently +

    Note that, to some extent, the spirit of this approach is already currently present in the case of builder types when publicConstrainedTypes is set to false:

      -
    1. ServerBuilderGenerator.kt renders the usual builder type that enforces +
    2. ServerBuilderGenerator.kt renders the usual builder type that enforces constraint traits, setting its visibility to pub (crate), for exclusive use by the framework.
    3. -
    4. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the +
    5. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the builder type the user is exposed to: this builder does not take in constrained types and does not enforce all modeled constraints.
    @@ -447,7 +447,7 @@

    Background

    member: ValidationExceptionField }
    -

    It was mentioned in the constraint traits +

    It was mentioned in the constraint traits RFC, and implicit in the definition of Smithy's smithy.framework.ValidationException @@ -491,7 +491,7 @@

    Problem

    pub fn compile_regex() -> &'static regex::Regex { static REGEX: once_cell::sync::Lazy<regex::Regex> = once_cell::sync::Lazy::new(|| { - regex::Regex::new(r#"[a-f0-5]*"#).expect(r#"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/awslabs/smithy-rs/issues for support"#) + regex::Regex::new(r#"[a-f0-5]*"#).expect(r#"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/smithy-lang/smithy-rs/issues for support"#) }); &REGEX @@ -602,7 +602,7 @@

    ). We will provide a similar request body limiting mechanism regardless. -

    This RFC advocates for implementing the first option, arguing that it's fair +

    This RFC advocates for implementing the first option, arguing that it's fair to say that the framework should return an error that is as informative as possible, but it doesn't necessarily have to be complete. diff --git a/design/rfcs/rfc0033_improve_sdk_request_id_access.html b/design/rfcs/rfc0033_improve_sdk_request_id_access.html index 0ca1e4092a..071eea64fe 100644 --- a/design/rfcs/rfc0033_improve_sdk_request_id_access.html +++ b/design/rfcs/rfc0033_improve_sdk_request_id_access.html @@ -173,7 +173,7 @@

    Smithy Rust

    RFC: Improving access to request IDs in SDK clients

    -

    Status: Implemented in #2129

    +

    Status: Implemented in #2129

    Applies to: AWS SDK clients

    At time of writing, customers can retrieve a request ID in one of four ways in the Rust SDK:

    diff --git a/design/rfcs/rfc0037_http_wrapper.html b/design/rfcs/rfc0037_http_wrapper.html index 9a4b0a4f83..fa80e1da2b 100644 --- a/design/rfcs/rfc0037_http_wrapper.html +++ b/design/rfcs/rfc0037_http_wrapper.html @@ -247,738 +247,7 @@

    Request

    Proposed Implementation

    Proposed Implementation of `request` -
    /*
    - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
    - * SPDX-License-Identifier: Apache-2.0
    - */
    -
    -//! Http Request Types
    -
    -use aws_smithy_types::body::SdkBody;
    -use http as http0;
    -use http::header::{InvalidHeaderName, InvalidHeaderValue};
    -use http::uri::InvalidUri;
    -use http0::header::Iter;
    -use http0::uri::PathAndQuery;
    -use http0::{Extensions, HeaderMap, Method};
    -use std::borrow::Cow;
    -use std::error::Error;
    -use std::fmt::{Debug, Display, Formatter};
    -use std::str::{FromStr, Utf8Error};
    -
    -#[derive(Debug)]
    -/// An HTTP Request Type
    -pub struct Request<B = SdkBody> {
    -    body: B,
    -    uri: Uri,
    -    method: Method,
    -    extensions: Extensions,
    -    headers: Headers,
    -}
    -
    -/// A Request URI
    -#[derive(Debug, Clone)]
    -pub struct Uri {
    -    as_string: String,
    -    parsed: http0::Uri,
    -}
    -
    -impl Uri {
    -    /// Sets `endpoint` as the endpoint for a URL.
    -    ///
    -    /// An `endpoint` MUST contain a scheme and authority.
    -    /// An `endpoint` MAY contain a port and path.
    -    ///
    -    /// An `endpoint` MUST NOT contain a query
    -    pub fn set_endpoint(&mut self, endpoint: &str) -> Result<(), HttpError> {
    -        let endpoint: http0::Uri = endpoint.parse().map_err(HttpError::invalid_uri)?;
    -        let endpoint = endpoint.into_parts();
    -        let authority = endpoint
    -            .authority
    -            .ok_or_else(|| HttpError::new("endpoint must contain authority"))?;
    -        let scheme = endpoint
    -            .scheme
    -            .ok_or_else(|| HttpError::new("endpoint must have scheme"))?;
    -        let new_uri = http0::Uri::builder()
    -            .authority(authority)
    -            .scheme(scheme)
    -            .path_and_query(merge_paths(endpoint.path_and_query, &self.parsed).as_ref())
    -            .build()
    -            .map_err(HttpError::new)?;
    -        self.as_string = new_uri.to_string();
    -        self.parsed = new_uri;
    -        Ok(())
    -    }
    -}
    -
    -fn merge_paths(endpoint_path: Option<PathAndQuery>, uri: &http0::Uri) -> Cow<'_, str> {
    -    let uri_path_and_query = uri.path_and_query().map(|pq| pq.as_str()).unwrap_or("");
    -    let endpoint_path = match endpoint_path {
    -        None => return Cow::Borrowed(uri_path_and_query),
    -        Some(path) => path,
    -    };
    -    if let Some(query) = endpoint_path.query() {
    -        tracing::warn!(query = %query, "query specified in endpoint will be ignored during endpoint resolution");
    -    }
    -    let endpoint_path = endpoint_path.path();
    -    if endpoint_path.is_empty() {
    -        Cow::Borrowed(uri_path_and_query)
    -    } else {
    -        let ep_no_slash = endpoint_path.strip_suffix('/').unwrap_or(endpoint_path);
    -        let uri_path_no_slash = uri_path_and_query
    -            .strip_prefix('/')
    -            .unwrap_or(uri_path_and_query);
    -        Cow::Owned(format!("{}/{}", ep_no_slash, uri_path_no_slash))
    -    }
    -}
    -
    -impl TryFrom<String> for Uri {
    -    type Error = HttpError;
    -
    -    fn try_from(value: String) -> Result<Self, Self::Error> {
    -        let parsed = value.parse().map_err(HttpError::invalid_uri)?;
    -        Ok(Uri {
    -            as_string: value,
    -            parsed,
    -        })
    -    }
    -}
    -
    -impl<'a> TryFrom<&'a str> for Uri {
    -    type Error = HttpError;
    -    fn try_from(value: &'a str) -> Result<Self, Self::Error> {
    -        Self::try_from(value.to_string())
    -    }
    -}
    -
    -impl From<http0::Uri> for Uri {
    -    fn from(value: http::Uri) -> Self {
    -        Self {
    -            as_string: value.to_string(),
    -            parsed: value,
    -        }
    -    }
    -}
    -
    -impl<B> TryInto<http0::Request<B>> for Request<B> {
    -    type Error = HttpError;
    -
    -    fn try_into(self) -> Result<http::Request<B>, Self::Error> {
    -        self.into_http02x()
    -    }
    -}
    -
    -impl<B> Request<B> {
    -    /// Converts this request into an http 0.x request.
    -    ///
    -    /// Depending on the internal storage type, this operation may be free or it may have an internal
    -    /// cost.
    -    pub fn into_http02x(self) -> Result<http0::Request<B>, HttpError> {
    -        let mut req = http::Request::builder()
    -            .uri(self.uri.parsed)
    -            .method(self.method)
    -            .body(self.body)
    -            .expect("known valid");
    -        let mut headers = HeaderMap::new();
    -        headers.extend(
    -            self.headers
    -                .headers
    -                .into_iter()
    -                .map(|(k, v)| (k, v.into_http02x())),
    -        );
    -        *req.headers_mut() = headers;
    -        *req.extensions_mut() = self.extensions;
    -        Ok(req)
    -    }
    -
    -    /// Update the body of this request to be a new body.
    -    pub fn map<U>(self, f: impl Fn(B) -> U) -> Request<U> {
    -        Request {
    -            body: f(self.body),
    -            uri: self.uri,
    -            method: self.method,
    -            extensions: self.extensions,
    -            headers: self.headers,
    -        }
    -    }
    -
    -    /// Returns a GET request with no URI
    -    pub fn new(body: B) -> Self {
    -        Self {
    -            body,
    -            uri: Uri::from(http0::Uri::from_static("/")),
    -            method: Method::GET,
    -            extensions: Default::default(),
    -            headers: Default::default(),
    -        }
    -    }
    -
    -    /// Returns a reference to the header map
    -    pub fn headers(&self) -> &Headers {
    -        &self.headers
    -    }
    -
    -    /// Returns a mutable reference to the header map
    -    pub fn headers_mut(&mut self) -> &mut Headers {
    -        &mut self.headers
    -    }
    -
    -    /// Returns the body associated with the request
    -    pub fn body(&self) -> &B {
    -        &self.body
    -    }
    -
    -    /// Returns a mutable reference to the body
    -    pub fn body_mut(&mut self) -> &mut B {
    -        &mut self.body
    -    }
    -
    -    /// Returns the method associated with this request
    -    pub fn method(&self) -> &str {
    -        self.method.as_str()
    -    }
    -
    -    /// Returns the URI associated with this request
    -    pub fn uri(&self) -> &str {
    -        &self.uri.as_string
    -    }
    -
    -    /// Returns a mutable reference the the URI of this http::Request
    -    pub fn uri_mut(&mut self) -> &mut Uri {
    -        &mut self.uri
    -    }
    -
    -    /// Sets the URI of this request
    -    pub fn set_uri<U>(&mut self, uri: U) -> Result<(), U::Error>
    -    where
    -        U: TryInto<Uri>,
    -    {
    -        let uri = uri.try_into()?;
    -        self.uri = uri;
    -        Ok(())
    -    }
    -
    -    /// Adds an extension to the request extensions
    -    pub fn add_extension<T: Send + Sync + Clone + 'static>(&mut self, extension: T) {
    -        self.extensions.insert(extension);
    -    }
    -}
    -
    -impl Request<SdkBody> {
    -    /// Attempts to clone this request
    -    ///
    -    /// If the body is cloneable, this will clone the request. Otherwise `None` will be returned
    -    pub fn try_clone(&self) -> Option<Self> {
    -        let body = self.body().try_clone()?;
    -        Some(Self {
    -            body,
    -            uri: self.uri.clone(),
    -            method: self.method.clone(),
    -            extensions: Extensions::new(),
    -            headers: self.headers.clone(),
    -        })
    -    }
    -
    -    /// Replaces this requests body with [`SdkBody::taken()`]
    -    pub fn take_body(&mut self) -> SdkBody {
    -        std::mem::replace(self.body_mut(), SdkBody::taken())
    -    }
    -
    -    /// Create a GET request to `/` with an empty body
    -    pub fn empty() -> Self {
    -        Self::new(SdkBody::empty())
    -    }
    -
    -    /// Creates a GET request to `uri` with an empty body
    -    pub fn get(uri: impl AsRef<str>) -> Result<Self, HttpError> {
    -        let mut req = Self::new(SdkBody::empty());
    -        req.set_uri(uri.as_ref())?;
    -        Ok(req)
    -    }
    -}
    -
    -impl<B> TryFrom<http0::Request<B>> for Request<B> {
    -    type Error = HttpError;
    -
    -    fn try_from(value: http::Request<B>) -> Result<Self, Self::Error> {
    -        if let Some(e) = value
    -            .headers()
    -            .values()
    -            .filter_map(|value| std::str::from_utf8(value.as_bytes()).err())
    -            .next()
    -        {
    -            Err(HttpError::header_was_not_a_string(e))
    -        } else {
    -            let (parts, body) = value.into_parts();
    -            let mut string_safe_headers: HeaderMap<HeaderValue> = Default::default();
    -            string_safe_headers.extend(
    -                parts
    -                    .headers
    -                    .into_iter()
    -                    .map(|(k, v)| (k, HeaderValue::from_http02x(v).expect("validated above"))),
    -            );
    -            Ok(Self {
    -                body,
    -                uri: parts.uri.into(),
    -                method: parts.method.clone(),
    -                extensions: parts.extensions,
    -                headers: Headers {
    -                    headers: string_safe_headers,
    -                },
    -            })
    -        }
    -    }
    -}
    -
    -/// An immutable view of request headers
    -#[derive(Clone, Default, Debug)]
    -pub struct Headers {
    -    headers: HeaderMap<HeaderValue>,
    -}
    -
    -impl<'a> IntoIterator for &'a Headers {
    -    type Item = (&'a str, &'a str);
    -    type IntoIter = HeadersIter<'a>;
    -
    -    fn into_iter(self) -> Self::IntoIter {
    -        HeadersIter {
    -            inner: self.headers.iter(),
    -        }
    -    }
    -}
    -
    -/// An Iterator over headers
    -pub struct HeadersIter<'a> {
    -    inner: Iter<'a, HeaderValue>,
    -}
    -
    -impl<'a> Iterator for HeadersIter<'a> {
    -    type Item = (&'a str, &'a str);
    -
    -    fn next(&mut self) -> Option<Self::Item> {
    -        self.inner.next().map(|(k, v)| (k.as_str(), v.as_ref()))
    -    }
    -}
    -
    -impl Headers {
    -    /// Create an empty header map
    -    pub fn new() -> Self {
    -        Self::default()
    -    }
    -
    -    /// Returns the value for a given key
    -    ///
    -    /// If multiple values are associated, the first value is returned
    -    /// See [HeaderMap::get]
    -    pub fn get(&self, key: impl AsRef<str>) -> Option<&str> {
    -        self.headers.get(key.as_ref()).map(|v| v.as_ref())
    -    }
    -
    -    /// Returns all values for a given key
    -    pub fn get_all(&self, key: impl AsRef<str>) -> impl Iterator<Item = &str> {
    -        self.headers
    -            .get_all(key.as_ref())
    -            .iter()
    -            .map(|v| v.as_ref())
    -    }
    -
    -    /// Returns an iterator over the headers
    -    pub fn iter(&self) -> HeadersIter<'_> {
    -        HeadersIter {
    -            inner: self.headers.iter(),
    -        }
    -    }
    -
    -    /// Returns the total number of **values** stored in the map
    -    pub fn len(&self) -> usize {
    -        self.headers.len()
    -    }
    -
    -    /// Returns true if there are no headers
    -    pub fn is_empty(&self) -> bool {
    -        self.len() == 0
    -    }
    -
    -    /// Returns true if this header is present
    -    pub fn contains_key(&self, key: &str) -> bool {
    -        self.headers.contains_key(key)
    -    }
    -
    -    /// Insert a value into the headers structure.
    -    ///
    -    /// This will *replace* any existing value for this key. Returns the previous associated value if any.
    -    ///
    -    /// # Panics
    -    /// If the key or value are not valid ascii, this function will panic.
    -    pub fn insert(
    -        &mut self,
    -        key: impl AsHeaderComponent,
    -        value: impl AsHeaderComponent,
    -    ) -> Option<String> {
    -        self.try_insert(key, value)
    -            .expect("HeaderName or HeaderValue was invalid")
    -    }
    -
    -    /// Insert a value into the headers structure.
    -    ///
    -    /// This will *replace* any existing value for this key. Returns the previous associated value if any.
    -    ///
    -    /// If the key or value are not valid ascii, an error is returned
    -    pub fn try_insert(
    -        &mut self,
    -        key: impl AsHeaderComponent,
    -        value: impl AsHeaderComponent,
    -    ) -> Result<Option<String>, HttpError> {
    -        let key = header_name(key)?;
    -        let value = header_value(value.into_maybe_static()?)?;
    -        Ok(self
    -            .headers
    -            .insert(key, value)
    -            .map(|old_value| old_value.into()))
    -    }
    -
    -    /// Appends a value to a given key
    -    ///
    -    /// If the key or value are NOT valid ascii, an error is returned
    -    pub fn try_append(
    -        &mut self,
    -        key: impl AsHeaderComponent,
    -        value: impl AsHeaderComponent,
    -    ) -> Result<bool, HttpError> {
    -        let key = header_name(key.into_maybe_static()?)?;
    -        let value = header_value(value.into_maybe_static()?)?;
    -        Ok(self.headers.append(key, value))
    -    }
    -
    -    /// Removes all headers with a given key
    -    ///
    -    /// If there are multiple entries for this key, the first entry is returned
    -    pub fn remove(&mut self, key: impl AsRef<str>) -> Option<String> {
    -        self.headers
    -            .remove(key.as_ref())
    -            .map(|h| h.as_str().to_string())
    -    }
    -
    -    /// Appends a value to a given key
    -    ///
    -    /// # Panics
    -    /// If the key or value are NOT valid ascii, this function will panic
    -    pub fn append(&mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent) -> bool {
    -        self.try_append(key, value)
    -            .expect("HeaderName or HeaderValue was invalid")
    -    }
    -}
    -
    -use sealed::AsHeaderComponent;
    -
    -mod sealed {
    -    use super::*;
    -    /// Trait defining things that may be converted into a header component (name or value)
    -    pub trait AsHeaderComponent {
    -        /// If the component can be represented as a Cow<'static, str>, return it
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError>;
    -
    -        /// Return a string reference to this header
    -        fn as_str(&self) -> Result<&str, HttpError>;
    -
    -        /// If a component is already internally represented as a `http02x::HeaderName`, return it
    -        fn repr_as_http02x_header_name(self) -> Result<http0::HeaderName, Self>
    -        where
    -            Self: Sized,
    -        {
    -            Err(self)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for &'static str {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(Cow::Borrowed(self))
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for String {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(Cow::Owned(self))
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for Cow<'static, str> {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(self)
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self.as_ref())
    -        }
    -    }
    -
    -    impl AsHeaderComponent for http0::HeaderValue {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(Cow::Owned(
    -                std::str::from_utf8(self.as_bytes())
    -                    .map_err(HttpError::header_was_not_a_string)?
    -                    .to_string(),
    -            ))
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            std::str::from_utf8(self.as_bytes()).map_err(HttpError::header_was_not_a_string)
    -        }
    -    }
    -
    -    impl AsHeaderComponent for http0::HeaderName {
    -        fn into_maybe_static(self) -> Result<MaybeStatic, HttpError> {
    -            Ok(self.to_string().into())
    -        }
    -
    -        fn as_str(&self) -> Result<&str, HttpError> {
    -            Ok(self.as_ref())
    -        }
    -
    -        fn repr_as_http02x_header_name(self) -> Result<http0::HeaderName, Self>
    -        where
    -            Self: Sized,
    -        {
    -            Ok(self)
    -        }
    -    }
    -}
    -
    -mod header_value {
    -    use super::http0;
    -    use std::str::Utf8Error;
    -
    -    /// HeaderValue type
    -    ///
    -    /// **Note**: Unlike `HeaderValue` in `http`, this only supports UTF-8 header values
    -    #[derive(Debug, Clone)]
    -    pub struct HeaderValue {
    -        _private: http0::HeaderValue,
    -    }
    -
    -    impl HeaderValue {
    -        pub(crate) fn from_http02x(value: http0::HeaderValue) -> Result<Self, Utf8Error> {
    -            let _ = std::str::from_utf8(value.as_bytes())?;
    -            Ok(Self { _private: value })
    -        }
    -
    -        pub(crate) fn into_http02x(self) -> http0::HeaderValue {
    -            self._private
    -        }
    -    }
    -
    -    impl AsRef<str> for HeaderValue {
    -        fn as_ref(&self) -> &str {
    -            std::str::from_utf8(self._private.as_bytes())
    -                .expect("unreachable—only strings may be stored")
    -        }
    -    }
    -
    -    impl From<HeaderValue> for String {
    -        fn from(value: HeaderValue) -> Self {
    -            value.as_ref().to_string()
    -        }
    -    }
    -}
    -
    -use crate::box_error::BoxError;
    -pub use header_value::HeaderValue;
    -
    -impl HeaderValue {
    -    /// Returns the string representation of this header value
    -    pub fn as_str(&self) -> &str {
    -        self.as_ref()
    -    }
    -}
    -
    -impl FromStr for HeaderValue {
    -    type Err = HttpError;
    -
    -    fn from_str(s: &str) -> Result<Self, Self::Err> {
    -        HeaderValue::try_from(s.to_string())
    -    }
    -}
    -
    -impl TryFrom<String> for HeaderValue {
    -    type Error = HttpError;
    -
    -    fn try_from(value: String) -> Result<Self, Self::Error> {
    -        Ok(HeaderValue::from_http02x(
    -            http0::HeaderValue::try_from(value).map_err(HttpError::invalid_header_value)?,
    -        )
    -        .expect("input was a string"))
    -    }
    -}
    -
    -type MaybeStatic = Cow<'static, str>;
    -
    -#[derive(Debug)]
    -/// An error occurred constructing an Http Request.
    -///
    -/// This is normally due to configuration issues, internal SDK bugs, or other user error.
    -pub struct HttpError(BoxError);
    -
    -impl HttpError {
    -    // TODO(httpRefactor): Add better error internals
    -    fn new<E: Into<Box<dyn Error + Send + Sync + 'static>>>(err: E) -> Self {
    -        HttpError(err.into())
    -    }
    -
    -    fn invalid_header_value(err: InvalidHeaderValue) -> Self {
    -        Self(err.into())
    -    }
    -
    -    fn header_was_not_a_string(err: Utf8Error) -> Self {
    -        Self(err.into())
    -    }
    -
    -    fn invalid_header_name(err: InvalidHeaderName) -> Self {
    -        Self(err.into())
    -    }
    -
    -    fn invalid_uri(err: InvalidUri) -> Self {
    -        Self(err.into())
    -    }
    -}
    -
    -impl Display for HttpError {
    -    fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
    -        write!(f, "an error occurred creating an HTTP Request")
    -    }
    -}
    -
    -impl Error for HttpError {
    -    fn source(&self) -> Option<&(dyn Error + 'static)> {
    -        Some(self.0.as_ref())
    -    }
    -}
    -
    -fn header_name(name: impl AsHeaderComponent) -> Result<http0::HeaderName, HttpError> {
    -    name.repr_as_http02x_header_name().or_else(|name| {
    -        name.into_maybe_static().and_then(|cow| {
    -            if cow.chars().any(|c| c.is_uppercase()) {
    -                return Err(HttpError::new("Header names must be all lower case"));
    -            }
    -            match cow {
    -                Cow::Borrowed(staticc) => Ok(http0::HeaderName::from_static(staticc)),
    -                Cow::Owned(s) => {
    -                    http0::HeaderName::try_from(s).map_err(HttpError::invalid_header_name)
    -                }
    -            }
    -        })
    -    })
    -}
    -
    -fn header_value(value: MaybeStatic) -> Result<HeaderValue, HttpError> {
    -    let header = match value {
    -        Cow::Borrowed(b) => http0::HeaderValue::from_static(b),
    -        Cow::Owned(s) => {
    -            http0::HeaderValue::try_from(s).map_err(HttpError::invalid_header_value)?
    -        }
    -    };
    -    HeaderValue::from_http02x(header).map_err(HttpError::new)
    -}
    -
    -#[cfg(test)]
    -mod test {
    -    use crate::client::orchestrator::HttpRequest;
    -    use aws_smithy_types::body::SdkBody;
    -    use http::header::{AUTHORIZATION, CONTENT_LENGTH};
    -    use http::{HeaderValue, Uri};
    -
    -    #[test]
    -    fn headers_can_be_any_string() {
    -        let _: HeaderValue = "😹".parse().expect("can be any string");
    -        let _: HeaderValue = "abcd".parse().expect("can be any string");
    -        let _ = "a\nb"
    -            .parse::<HeaderValue>()
    -            .expect_err("cannot contain control characters");
    -    }
    -
    -    #[test]
    -    fn non_ascii_requests() {
    -        let request = http::Request::builder()
    -            .header("k", "😹")
    -            .body(SdkBody::empty())
    -            .unwrap();
    -        let request: HttpRequest = request
    -            .try_into()
    -            .expect("failed to convert a non-string header");
    -        assert_eq!(request.headers().get("k"), Some("😹"))
    -    }
    -
    -    #[test]
    -    fn request_can_be_created() {
    -        let req = http::Request::builder()
    -            .uri("http://foo.com")
    -            .body(SdkBody::from("hello"))
    -            .unwrap();
    -        let mut req = super::Request::try_from(req).unwrap();
    -        req.headers_mut().insert("a", "b");
    -        assert_eq!(req.headers().get("a").unwrap(), "b");
    -        req.headers_mut().append("a", "c");
    -        assert_eq!(req.headers().get("a").unwrap(), "b");
    -        let http0 = req.into_http02x().unwrap();
    -        assert_eq!(http0.uri(), "http://foo.com");
    -    }
    -
    -    #[test]
    -    fn uri_mutations() {
    -        let req = http::Request::builder()
    -            .uri("http://foo.com")
    -            .body(SdkBody::from("hello"))
    -            .unwrap();
    -        let mut req = super::Request::try_from(req).unwrap();
    -        assert_eq!(req.uri(), "http://foo.com/");
    -        req.set_uri("http://bar.com").unwrap();
    -        assert_eq!(req.uri(), "http://bar.com");
    -        let http0 = req.into_http02x().unwrap();
    -        assert_eq!(http0.uri(), "http://bar.com");
    -    }
    -
    -    #[test]
    -    #[should_panic]
    -    fn header_panics() {
    -        let req = http::Request::builder()
    -            .uri("http://foo.com")
    -            .body(SdkBody::from("hello"))
    -            .unwrap();
    -        let mut req = super::Request::try_from(req).unwrap();
    -        let _ = req
    -            .headers_mut()
    -            .try_insert("a\nb", "a\nb")
    -            .expect_err("invalid header");
    -        let _ = req.headers_mut().insert("a\nb", "a\nb");
    -    }
    -
    -    #[test]
    -    fn try_clone_clones_all_data() {
    -        let request = ::http::Request::builder()
    -            .uri(Uri::from_static("https://www.amazon.com"))
    -            .method("POST")
    -            .header(CONTENT_LENGTH, 456)
    -            .header(AUTHORIZATION, "Token: hello")
    -            .body(SdkBody::from("hello world!"))
    -            .expect("valid request");
    -        let request: super::Request = request.try_into().unwrap();
    -        let cloned = request.try_clone().expect("request is cloneable");
    -
    -        assert_eq!("https://www.amazon.com/", cloned.uri());
    -        assert_eq!("POST", cloned.method());
    -        assert_eq!(2, cloned.headers().len());
    -        assert_eq!("Token: hello", cloned.headers().get(AUTHORIZATION).unwrap(),);
    -        assert_eq!("456", cloned.headers().get(CONTENT_LENGTH).unwrap());
    -        assert_eq!("hello world!".as_bytes(), cloned.body().bytes().unwrap());
    -    }
    -}
    +
    {{#include ../../../rust-runtime/aws-smithy-runtime-api/src/client/http/request.rs}}

    Future Work

    Currently, the only way to construct Request is from a compatible type (e.g. http02x::Request)

    diff --git a/design/searchindex.js b/design/searchindex.js index 063f321e9d..31dfc47cd9 100644 --- a/design/searchindex.js +++ b/design/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["overview.html#design-overview","overview.html#acknowledgments","overview.html#external-api-overview","overview.html#internals","overview.html#code-generation","tenets.html#rust-sdk-design-tenets","tenets.html#details-justifications-and-ramifications","tenets.html#batteries-included-but-replaceable","tenets.html#make-common-problems-easy-to-solve","tenets.html#design-for-the-future","faq.html#design-faq","faq.html#what-is-smithy","faq.html#why-is-there-one-crate-per-service","faq.html#why-dont-the-sdk-service-crates-implement-serdeserialize-or-serdedeserialize-for-any-types","faq.html#i-want-to-add-new-request-building-behavior-should-i-add-that-functionality-to-the-make_operation-codegen-or-write-a-request-altering-middleware","transport/overview.html#transport","transport/overview.html#where-we-are-today","transport/overview.html#where-we-want-to-go","transport/operation.html#http-based-operations","transport/operation.html#operation-phases","transport/operation.html#input-construction","transport/operation.html#operation-construction","transport/operation.html#operation-dispatch-and-middleware","transport/operation.html#operation-parsing-and-response-loading","transport/middleware.html#http-middleware","transport/connector.html","smithy/overview.html#smithy","smithy/overview.html#internals","smithy/simple_shapes.html#simple-shapes","smithy/simple_shapes.html#big-numbers","smithy/simple_shapes.html#timestamps","smithy/simple_shapes.html#strings","smithy/simple_shapes.html#document-types","smithy/recursive_shapes.html#recursive-shapes","smithy/aggregate_shapes.html#aggregate-shapes","smithy/aggregate_shapes.html#list","smithy/aggregate_shapes.html#set","smithy/aggregate_shapes.html#map","smithy/aggregate_shapes.html#structure","smithy/aggregate_shapes.html#example-structure-output","smithy/aggregate_shapes.html#union","smithy/aggregate_shapes.html#generated-union-example","smithy/endpoint.html#endpoint-resolution","smithy/endpoint.html#requirements","smithy/endpoint.html#design","smithy/backwards-compat.html#backwards-compatibility","smithy/backwards-compat.html#new-operation-added","smithy/backwards-compat.html#new-member-added-to-structure","smithy/backwards-compat.html#summary","smithy/backwards-compat.html#validation--required-members","smithy/backwards-compat.html#new-union-variant-added","client/overview.html#smithy-client","client/orchestrator.html#what-is-the-orchestrator","client/orchestrator.html#how-is-an-orchestrator-configured","client/orchestrator.html#what-does-the-orchestrator-do","client/orchestrator.html#how-is-the-orchestrator-implemented-in-rust","client/orchestrator.html#avoiding-generics-at-all-costs","client/orchestrator.html#the-actual-code","client/orchestrator.html#frequently-asked-questions","client/orchestrator.html#why-cant-users-create-and-use-their-own-runtime-plugins","client/orchestrator.html#why-does-the-orchestrator-exist","client/orchestrator.html#why-does-this-document-exist-when-theres-already-an-orchestrator-rfc","client/identity_and_auth.html#identity-and-auth-in-clients","client/identity_and_auth.html#terminology","client/identity_and_auth.html#overview-of-smithy-client-auth","client/identity_and_auth.html#the-configuration-stage","client/identity_and_auth.html#the-execution-stage","client/identity_and_auth.html#how-this-looks-in-rust","client/identity_and_auth.html#challenges-with-this-identity-design","server/overview.html#smithy-server","server/middleware.html#middleware","server/middleware.html#introduction-to-tower","server/middleware.html#applying-middleware","server/middleware.html#a-outer-middleware","server/middleware.html#b-route-middleware","server/middleware.html#c-operation-specific-http-middleware","server/middleware.html#d-operation-specific-model-middleware","server/middleware.html#plugin-system","server/instrumentation.html#instrumentation","server/instrumentation.html#spans-over-the-requestresponse-lifecycle","server/instrumentation.html#example","server/instrumentation.html#interactions-with-sensitivity","server/from_parts.html#accessing-un-modelled-data","server/anatomy.html#the-anatomy-of-a-service","server/anatomy.html#operations","server/anatomy.html#serialization-and-deserialization","server/anatomy.html#upgrading-a-model-service","server/anatomy.html#routers","server/anatomy.html#plugins","server/anatomy.html#builders","server/anatomy.html#accessing-unmodelled-data","server/code_generation.html#generating-common-service-code","server/code_generation.html#folder-structure","server/code_generation.html#generating-code","rfcs/overview.html#rfcs","rfcs/overview.html#previously-submitted-rfcs","rfcs/rfc0001_shared_config.html#aws-configuration-rfc","rfcs/rfc0001_shared_config.html#usage-guide","rfcs/rfc0001_shared_config.html#getting-started","rfcs/rfc0001_shared_config.html#sharing-configuration-between-multiple-services","rfcs/rfc0001_shared_config.html#specifying-a-custom-credential-provider","rfcs/rfc0001_shared_config.html#proposed-design","rfcs/rfc0001_shared_config.html#shared-config-implementation","rfcs/rfc0001_shared_config.html#sleep--connectors","rfcs/rfc0001_shared_config.html#the-build-method-on-config","rfcs/rfc0001_shared_config.html#stability-and-versioning","rfcs/rfc0001_shared_config.html#changes-checklist","rfcs/rfc0001_shared_config.html#open-issues","rfcs/rfc0002_http_versions.html#rfc-supporting-multiple-http-versions-for-sdks-that-use-event-stream","rfcs/rfc0002_http_versions.html#terminology","rfcs/rfc0002_http_versions.html#how-clients-work-today","rfcs/rfc0002_http_versions.html#solving-the-connector-creation-problem","rfcs/rfc0002_http_versions.html#solving-the-connector-selection-problem","rfcs/rfc0002_http_versions.html#changes-checklist","rfcs/rfc0003_presigning_api.html#rfc-api-for-presigned-urls","rfcs/rfc0003_presigning_api.html#terminology","rfcs/rfc0003_presigning_api.html#presigned-url-config","rfcs/rfc0003_presigning_api.html#fluent-presigned-url-api","rfcs/rfc0003_presigning_api.html#input-presigned-url-api","rfcs/rfc0003_presigning_api.html#behind-the-scenes","rfcs/rfc0003_presigning_api.html#modeling-presigning","rfcs/rfc0003_presigning_api.html#avoiding-name-collision","rfcs/rfc0003_presigning_api.html#changes-checklist","rfcs/rfc0004_retry_behavior.html#rfc-retry-behavior","rfcs/rfc0004_retry_behavior.html#terminology","rfcs/rfc0004_retry_behavior.html#configuring-the-maximum-number-of-retries","rfcs/rfc0004_retry_behavior.html#setting-an-environment-variable","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-an-aws-shared-config","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-service-specific-config","rfcs/rfc0004_retry_behavior.html#disabling-retries","rfcs/rfc0004_retry_behavior.html#behind-the-scenes","rfcs/rfc0004_retry_behavior.html#changes-checklist","rfcs/rfc0005_service_generation.html#rfc-smithy-rust-service-framework","rfcs/rfc0005_service_generation.html#requirements","rfcs/rfc0005_service_generation.html#smithy-model-driven-code-generation","rfcs/rfc0005_service_generation.html#performance","rfcs/rfc0005_service_generation.html#extensibility","rfcs/rfc0005_service_generation.html#observability","rfcs/rfc0005_service_generation.html#client-generation","rfcs/rfc0005_service_generation.html#benchmarking","rfcs/rfc0005_service_generation.html#model-validation","rfcs/rfc0006_service_specific_middleware.html#rfc-service-specific-middleware","rfcs/rfc0006_service_specific_middleware.html#terminology","rfcs/rfc0006_service_specific_middleware.html#detailed-design","rfcs/rfc0006_service_specific_middleware.html#changes-checklist","rfcs/rfc0007_split_release_process.html#rfc-split-release-process","rfcs/rfc0007_split_release_process.html#terminology","rfcs/rfc0007_split_release_process.html#requirements","rfcs/rfc0007_split_release_process.html#background-how-publishing-worked-before","rfcs/rfc0007_split_release_process.html#proposed-solution","rfcs/rfc0007_split_release_process.html#avoiding-mistakes-by-disallowing-creation-of-publish-ready-bundles-outside-of-ci","rfcs/rfc0007_split_release_process.html#alternatives-considered","rfcs/rfc0007_split_release_process.html#publish-smithy-runtime-crates-from-smithy-rs-build-artifacts","rfcs/rfc0007_split_release_process.html#keep-smithy-runtime-crates-in-smithy-rs","rfcs/rfc0007_split_release_process.html#changes-checklist","rfcs/rfc0008_paginators.html#summary","rfcs/rfc0008_paginators.html#details","rfcs/rfc0008_paginators.html#updates-to-ergonomic-clients","rfcs/rfc0008_paginators.html#discussion-areas","rfcs/rfc0008_paginators.html#on-sendawait","rfcs/rfc0008_paginators.html#on-tokio_streamstream","rfcs/rfc0008_paginators.html#on-generics","rfcs/rfc0008_paginators.html#changes-checklist","rfcs/rfc0009_example_consolidation.html#rfc-examples-consolidation","rfcs/rfc0009_example_consolidation.html#requirements","rfcs/rfc0009_example_consolidation.html#example-ci-in-smithy-rs","rfcs/rfc0009_example_consolidation.html#auto-sync-to-aws-sdk-rust-from-smithy-rs-changes","rfcs/rfc0009_example_consolidation.html#process-risks","rfcs/rfc0009_example_consolidation.html#alternatives","rfcs/rfc0009_example_consolidation.html#aws-sdk-rust-as-the-source-of-truth","rfcs/rfc0009_example_consolidation.html#changes-checklist","rfcs/rfc0010_waiters.html#rfc-waiters","rfcs/rfc0010_waiters.html#terminology","rfcs/rfc0010_waiters.html#requirements","rfcs/rfc0010_waiters.html#waiter-api","rfcs/rfc0010_waiters.html#waiter-implementation","rfcs/rfc0010_waiters.html#changes-checklist","rfcs/rfc0011_crates_io_alpha_publishing.html#rfc-publishing-the-alpha-sdk-to-cratesio","rfcs/rfc0011_crates_io_alpha_publishing.html#terminology","rfcs/rfc0011_crates_io_alpha_publishing.html#requirements","rfcs/rfc0011_crates_io_alpha_publishing.html#versioning","rfcs/rfc0011_crates_io_alpha_publishing.html#yanking","rfcs/rfc0011_crates_io_alpha_publishing.html#concrete-scenarios","rfcs/rfc0011_crates_io_alpha_publishing.html#proposal","rfcs/rfc0011_crates_io_alpha_publishing.html#short-term-changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#rfc-independent-crate-versioning","rfcs/rfc0012_independent_crate_versioning.html#terminology","rfcs/rfc0012_independent_crate_versioning.html#requirements","rfcs/rfc0012_independent_crate_versioning.html#versioning","rfcs/rfc0012_independent_crate_versioning.html#release-identification","rfcs/rfc0012_independent_crate_versioning.html#yanking","rfcs/rfc0012_independent_crate_versioning.html#phase-1-dev-preview","rfcs/rfc0012_independent_crate_versioning.html#version-tracking","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-code-generated-sdk-service-crates","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-runtime-crates","rfcs/rfc0012_independent_crate_versioning.html#yanking-1","rfcs/rfc0012_independent_crate_versioning.html#changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#phase-2-stability-and-1x","rfcs/rfc0013_body_callback_apis.html#rfc-callback-apis-for-bytestream-and-sdkbody","rfcs/rfc0013_body_callback_apis.html#the-implementation","rfcs/rfc0013_body_callback_apis.html#implementing-checksums","rfcs/rfc0014_timeout_config.html#rfc-fine-grained-timeout-configuration","rfcs/rfc0014_timeout_config.html#terminology","rfcs/rfc0014_timeout_config.html#general-terms","rfcs/rfc0014_timeout_config.html#http-stack-terms","rfcs/rfc0014_timeout_config.html#timeout-terms","rfcs/rfc0014_timeout_config.html#configuring-timeouts","rfcs/rfc0014_timeout_config.html#configuration-options","rfcs/rfc0014_timeout_config.html#sdk-specific-defaults-set-by-aws-service-teams","rfcs/rfc0014_timeout_config.html#prior-art","rfcs/rfc0014_timeout_config.html#behind-the-scenes","rfcs/rfc0014_timeout_config.html#middlewares-for-aws-client-requests","rfcs/rfc0014_timeout_config.html#middlewares-for-smithy-client-requests","rfcs/rfc0014_timeout_config.html#changes-checklist","rfcs/rfc0014_timeout_config.html#implementing-http-request-timeouts","rfcs/rfc0015_using_features_responsibly.html#rfc-how-cargo-features-should-be-used-in-the-sdk-and-runtime-crates","rfcs/rfc0015_using_features_responsibly.html#some-background-on-features","rfcs/rfc0015_using_features_responsibly.html#features-should-be-additive","rfcs/rfc0015_using_features_responsibly.html#what-does-this-mean-for-the-sdk","rfcs/rfc0015_using_features_responsibly.html#avoid-writing-code-that-relies-on-only-activating-one-feature-from-a-set-of-mutually-exclusive-features","rfcs/rfc0015_using_features_responsibly.html#we-should-avoid-using-cfgnotfeature--some-feature","rfcs/rfc0015_using_features_responsibly.html#dont-default-to-defining-default-features","rfcs/rfc0015_using_features_responsibly.html#further-reading","rfcs/rfc0016_flexible_checksum_support.html#rfc-supporting-flexible-checksums","rfcs/rfc0016_flexible_checksum_support.html#what-is-the-flexible-checksums-feature","rfcs/rfc0016_flexible_checksum_support.html#implementing-checksums","rfcs/rfc0016_flexible_checksum_support.html#refactoring-aws-smithy-checksums","rfcs/rfc0016_flexible_checksum_support.html#checksumbody","rfcs/rfc0016_flexible_checksum_support.html#checksumvalidatedbody","rfcs/rfc0016_flexible_checksum_support.html#awschunkedbody-and-awschunkedbodyoptions","rfcs/rfc0016_flexible_checksum_support.html#sigv4-update","rfcs/rfc0016_flexible_checksum_support.html#inlineables","rfcs/rfc0016_flexible_checksum_support.html#codegen","rfcs/rfc0016_flexible_checksum_support.html#implementation-checklist","rfcs/rfc0017_customizable_client_operations.html#rfc-customizable-client-operations","rfcs/rfc0017_customizable_client_operations.html#terminology","rfcs/rfc0017_customizable_client_operations.html#proposal","rfcs/rfc0017_customizable_client_operations.html#why-not-remove-async-from-customize-to-make-this-more-ergonomic","rfcs/rfc0017_customizable_client_operations.html#why-the-name-customize","rfcs/rfc0017_customizable_client_operations.html#changes-checklist","rfcs/rfc0018_logging_sensitive.html#rfc-logging-in-the-presence-of-sensitive-data","rfcs/rfc0018_logging_sensitive.html#terminology","rfcs/rfc0018_logging_sensitive.html#background","rfcs/rfc0018_logging_sensitive.html#http-binding-traits","rfcs/rfc0018_logging_sensitive.html#scope-and-guidelines","rfcs/rfc0018_logging_sensitive.html#routing","rfcs/rfc0018_logging_sensitive.html#runtime-crates","rfcs/rfc0018_logging_sensitive.html#proposal","rfcs/rfc0018_logging_sensitive.html#debug-logging","rfcs/rfc0018_logging_sensitive.html#code-generated-logging-middleware","rfcs/rfc0018_logging_sensitive.html#http-debugdisplay-wrappers","rfcs/rfc0018_logging_sensitive.html#middleware-position","rfcs/rfc0018_logging_sensitive.html#logging-within-the-router","rfcs/rfc0018_logging_sensitive.html#developer-guideline","rfcs/rfc0018_logging_sensitive.html#alternative-proposals","rfcs/rfc0018_logging_sensitive.html#use-request-extensions","rfcs/rfc0018_logging_sensitive.html#accommodate-the-sensitivity-in-middleware-api","rfcs/rfc0018_logging_sensitive.html#redact-values-using-a-tracing-layer","rfcs/rfc0018_logging_sensitive.html#changes-checklist","rfcs/rfc0019_event_streams_errors.html#rfc-errors-for-event-streams","rfcs/rfc0019_event_streams_errors.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0019_event_streams_errors.html#how-to-actually-implement-this-rfc","rfcs/rfc0019_event_streams_errors.html#changes-checklist","rfcs/rfc0020_service_builder.html#rfc-service-builder-improvements","rfcs/rfc0020_service_builder.html#terminology","rfcs/rfc0020_service_builder.html#background","rfcs/rfc0020_service_builder.html#handlers","rfcs/rfc0020_service_builder.html#builder","rfcs/rfc0020_service_builder.html#router","rfcs/rfc0020_service_builder.html#comparison-to-axum","rfcs/rfc0020_service_builder.html#proposal","rfcs/rfc0020_service_builder.html#remove-two-step-build-procedure","rfcs/rfc0020_service_builder.html#statically-check-for-missing-handlers","rfcs/rfc0020_service_builder.html#switch-from-for-router-to-an-operationregistrybuild-method","rfcs/rfc0020_service_builder.html#operations-as-middleware-constructors","rfcs/rfc0020_service_builder.html#service-parameterized-routers","rfcs/rfc0020_service_builder.html#protocol-specific-routers","rfcs/rfc0020_service_builder.html#protocol-specific-errors","rfcs/rfc0020_service_builder.html#type-erasure-with-the-name-of-the-smithy-service","rfcs/rfc0020_service_builder.html#combined-proposal","rfcs/rfc0020_service_builder.html#changes-checklist","rfcs/rfc0021_dependency_versions.html#rfc-dependency-versions","rfcs/rfc0021_dependency_versions.html#categorization-of-crates","rfcs/rfc0021_dependency_versions.html#support-crates-for-applications","rfcs/rfc0021_dependency_versions.html#dependency-version-rules","rfcs/rfc0021_dependency_versions.html#what-is-a-minimum-secure-version-when-there-are-multiple-major-versions","rfcs/rfc0021_dependency_versions.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#rfc-error-context-and-compatibility","rfcs/rfc0022_error_context_and_compatibility.html#past-approaches-in-smithy-rs","rfcs/rfc0022_error_context_and_compatibility.html#case-study-invalidfullurierror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-profileparseerror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-code-generated-client-errors","rfcs/rfc0022_error_context_and_compatibility.html#approaches-from-other-projects","rfcs/rfc0022_error_context_and_compatibility.html#stdioerror","rfcs/rfc0022_error_context_and_compatibility.html#hyper-10","rfcs/rfc0022_error_context_and_compatibility.html#opaque-error-sources","rfcs/rfc0022_error_context_and_compatibility.html#error-proposal","rfcs/rfc0022_error_context_and_compatibility.html#actionable-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#informative-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#displaying-full-error-context","rfcs/rfc0022_error_context_and_compatibility.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#error-code-review-checklist","rfcs/rfc0023_refine_builder.html#rfc-evolving-the-new-service-builder-api","rfcs/rfc0023_refine_builder.html#overview","rfcs/rfc0023_refine_builder.html#handling-missing-operations","rfcs/rfc0023_refine_builder.html#compiler-errors-cannot-be-tuned","rfcs/rfc0023_refine_builder.html#the-cost-of-a-runtime-error","rfcs/rfc0023_refine_builder.html#providing-clear-feedback","rfcs/rfc0023_refine_builder.html#simplifying-pokemonservicebuilders-signature","rfcs/rfc0023_refine_builder.html#branching---incompatible-types","rfcs/rfc0023_refine_builder.html#refactoring-into-smaller-functions---prepare-for-some-type-juggling","rfcs/rfc0023_refine_builder.html#cut-them-down-going-from-2n1-to-2-generic-parameters","rfcs/rfc0023_refine_builder.html#alternatives-allow-new-plugins-to-be-registered-after-builder-creation","rfcs/rfc0023_refine_builder.html#alternatives-lazy-and-eager-on-demand-type-erasure","rfcs/rfc0023_refine_builder.html#builder-extensions-what-now","rfcs/rfc0023_refine_builder.html#playing-around-with-the-design","rfcs/rfc0023_refine_builder.html#changes-checklist","rfcs/rfc0024_request_id.html#rfc-requestid-in-business-logic-handlers","rfcs/rfc0024_request_id.html#terminology","rfcs/rfc0024_request_id.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0024_request_id.html#changes-checklist","rfcs/rfc0024_request_id.html#changes-since-the-rfc-has-been-approved","rfcs/rfc0025_constraint_traits.html#rfc-constraint-traits","rfcs/rfc0025_constraint_traits.html#implementation","rfcs/rfc0025_constraint_traits.html#example-implementation-for-the-length-trait","rfcs/rfc0025_constraint_traits.html#request-deserialization","rfcs/rfc0025_constraint_traits.html#length-trait","rfcs/rfc0025_constraint_traits.html#pattern-trait","rfcs/rfc0025_constraint_traits.html#uniqueitems-trait","rfcs/rfc0025_constraint_traits.html#trait-precedence-and-naming-of-the-tuple-struct","rfcs/rfc0025_constraint_traits.html#unresolved-questions","rfcs/rfc0025_constraint_traits.html#alternative-design","rfcs/rfc0026_client_crate_organization.html#rfc-client-crate-organization","rfcs/rfc0026_client_crate_organization.html#previous-organization","rfcs/rfc0026_client_crate_organization.html#proposed-changes","rfcs/rfc0026_client_crate_organization.html#establish-a-pattern-for-builder-organization","rfcs/rfc0026_client_crate_organization.html#organize-code-generated-types-by-operation","rfcs/rfc0026_client_crate_organization.html#reorganize-the-crate-root","rfcs/rfc0026_client_crate_organization.html#conditionally-remove-builder-from-crateclient","rfcs/rfc0026_client_crate_organization.html#create-a-primitives-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-types-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-original-crateerror-module","rfcs/rfc0026_client_crate_organization.html#flatten-the-presigning-module","rfcs/rfc0026_client_crate_organization.html#remove-the-empty-modules","rfcs/rfc0026_client_crate_organization.html#new-organization","rfcs/rfc0026_client_crate_organization.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#rfc-endpoints-20","rfcs/rfc0027_endpoints_20.html#terminology","rfcs/rfc0027_endpoints_20.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0027_endpoints_20.html#overview","rfcs/rfc0027_endpoints_20.html#overriding-endpoints","rfcs/rfc0027_endpoints_20.html#new-endpoint-traits","rfcs/rfc0027_endpoints_20.html#endpoint-params","rfcs/rfc0027_endpoints_20.html#the-default-endpoint-resolver","rfcs/rfc0027_endpoints_20.html#how-to-actually-implement-this-rfc","rfcs/rfc0027_endpoints_20.html#code-generating-client-context-params","rfcs/rfc0027_endpoints_20.html#creating-params","rfcs/rfc0027_endpoints_20.html#converting-a-smithy-endpoint-to-an-aws-endpoint","rfcs/rfc0027_endpoints_20.html#implementing-the-rules-engine","rfcs/rfc0027_endpoints_20.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#alternative-designs","rfcs/rfc0027_endpoints_20.html#context-aware-endpoint-traits","rfcs/rfc0028_sdk_credential_cache_type_safety.html#rfc-sdk-credential-cache-type-safety","rfcs/rfc0028_sdk_credential_cache_type_safety.html#credentialscache-and-configloadercredentials_cache","rfcs/rfc0028_sdk_credential_cache_type_safety.html#changes-checklist","rfcs/rfc0028_sdk_credential_cache_type_safety.html#appendix-alternatives-considered","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-a-providecachedcredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-b-cachecredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-c-credentialscache-struct-with-composition","rfcs/rfc0029_new_home_for_cred_types.html#rfc-finding-new-home-for-credential-types","rfcs/rfc0029_new_home_for_cred_types.html#assumptions","rfcs/rfc0029_new_home_for_cred_types.html#problems","rfcs/rfc0029_new_home_for_cred_types.html#proposed-solution","rfcs/rfc0029_new_home_for_cred_types.html#rejected-alternative","rfcs/rfc0029_new_home_for_cred_types.html#changes-checklist","rfcs/rfc0030_serialization_and_deserialization.html#rfc-serialization-and-deserialization","rfcs/rfc0030_serialization_and_deserialization.html#terminology","rfcs/rfc0030_serialization_and_deserialization.html#overview","rfcs/rfc0030_serialization_and_deserialization.html#use-case","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#enabling-feature","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate-for-serialization-and-de-serialization","rfcs/rfc0030_serialization_and_deserialization.html#keeping-both-features-behind-the-same-feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#different-feature-gates-for-different-data-types","rfcs/rfc0030_serialization_and_deserialization.html#implementation","rfcs/rfc0030_serialization_and_deserialization.html#smithy-types","rfcs/rfc0030_serialization_and_deserialization.html#blob","rfcs/rfc0030_serialization_and_deserialization.html#datetime","rfcs/rfc0030_serialization_and_deserialization.html#document","rfcs/rfc0030_serialization_and_deserialization.html#number","rfcs/rfc0030_serialization_and_deserialization.html#builder-types-and-non-builder-types","rfcs/rfc0030_serialization_and_deserialization.html#enum-representation","rfcs/rfc0030_serialization_and_deserialization.html#untagged","rfcs/rfc0030_serialization_and_deserialization.html#internal","rfcs/rfc0030_serialization_and_deserialization.html#external-and-adjacent","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-skip-serializationdeserialization","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-exclude-from-serde-code-generation","rfcs/rfc0030_serialization_and_deserialization.html#serde-traits-implemented-on-builder-of-output-types","rfcs/rfc0030_serialization_and_deserialization.html#fn-set_fields-to-allow-users-to-use-externally-created-input","rfcs/rfc0030_serialization_and_deserialization.html#other-concerns","rfcs/rfc0030_serialization_and_deserialization.html#model-evolution","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-fields","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-data-type","rfcs/rfc0030_serialization_and_deserialization.html#discussions","rfcs/rfc0030_serialization_and_deserialization.html#sensitive-information","rfcs/rfc0030_serialization_and_deserialization.html#compile-time","rfcs/rfc0030_serialization_and_deserialization.html#misleading-results","rfcs/rfc0030_serialization_and_deserialization.html#appendix","rfcs/rfc0030_serialization_and_deserialization.html#use-case-examples","rfcs/rfc0030_serialization_and_deserialization.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#rfc-providing-fallback-credentials-on-external-timeout","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#terminology","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#assumption","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#problem","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#proposal","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#how-to-actually-implement-this-rfc","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#alternative","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#possible-enhancement","rfcs/rfc0032_better_constraint_violations.html#rfc-better-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#terminology","rfcs/rfc0032_better_constraint_violations.html#impossible-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background","rfcs/rfc0032_better_constraint_violations.html#problem","rfcs/rfc0032_better_constraint_violations.html#solution-proposal","rfcs/rfc0032_better_constraint_violations.html#collecting-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background-1","rfcs/rfc0032_better_constraint_violations.html#problem-1","rfcs/rfc0032_better_constraint_violations.html#solution-proposal-1","rfcs/rfc0032_better_constraint_violations.html#tightness-of-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#problem-2","rfcs/rfc0032_better_constraint_violations.html#final-solution-proposal","rfcs/rfc0032_better_constraint_violations.html#checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#rfc-improving-access-to-request-ids-in-sdk-clients","rfcs/rfc0033_improve_sdk_request_id_access.html#terminology","rfcs/rfc0033_improve_sdk_request_id_access.html#sdksmithy-purity","rfcs/rfc0033_improve_sdk_request_id_access.html#proposed-changes","rfcs/rfc0033_improve_sdk_request_id_access.html#make-request-id-retrieval-on-errors-consistent","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-outputs","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-operation-and-operationresponse","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-result","rfcs/rfc0033_improve_sdk_request_id_access.html#example-interactions","rfcs/rfc0033_improve_sdk_request_id_access.html#generic-handling-case","rfcs/rfc0033_improve_sdk_request_id_access.html#success-case","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-sdkerror","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-operation-error","rfcs/rfc0033_improve_sdk_request_id_access.html#changes-checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-a-alternate-solution-for-access-on-successful-responses","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-b-adding-requestid-as-a-string-to-outputs-via-model-transform","rfcs/rfc0034_smithy_orchestrator.html#smithy-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#tldr","rfcs/rfc0034_smithy_orchestrator.html#terminology","rfcs/rfc0034_smithy_orchestrator.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0034_smithy_orchestrator.html#service-clients-and-operations-are-configured-with-runtime-plugins","rfcs/rfc0034_smithy_orchestrator.html#requests-and-responses-are-modified-by-interceptors","rfcs/rfc0034_smithy_orchestrator.html#interceptor-context","rfcs/rfc0034_smithy_orchestrator.html#how-to-implement-this-rfc","rfcs/rfc0034_smithy_orchestrator.html#integrating-with-the-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#layered-configuration-stored-in-type-maps","rfcs/rfc0034_smithy_orchestrator.html#the-aws-smithy-orchestrator-crate","rfcs/rfc0034_smithy_orchestrator.html#faq","rfcs/rfc0034_smithy_orchestrator.html#changes-checklist","rfcs/rfc0035_collection_defaults.html#rfc-collection-defaults","rfcs/rfc0035_collection_defaults.html#terminology","rfcs/rfc0035_collection_defaults.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0035_collection_defaults.html#how-to-actually-implement-this-rfc","rfcs/rfc0035_collection_defaults.html#could-this-be-implemented-for-hashmap","rfcs/rfc0035_collection_defaults.html#isnt-this-handled-by-the-default-trait","rfcs/rfc0035_collection_defaults.html#changes-checklist","rfcs/rfc0036_http_dep_elimination.html#rfc-eliminating-public-http-dependencies","rfcs/rfc0036_http_dep_elimination.html#terminology","rfcs/rfc0036_http_dep_elimination.html#why-is-this-important","rfcs/rfc0036_http_dep_elimination.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0036_http_dep_elimination.html#how-to-actually-implement-this-rfc","rfcs/rfc0036_http_dep_elimination.html#enabling-api-evolution","rfcs/rfc0036_http_dep_elimination.html#http-request-wrapper","rfcs/rfc0036_http_dep_elimination.html#removing-the-sigv4-http-dependency","rfcs/rfc0036_http_dep_elimination.html#removing-the-http-dependency-from-generated-clients","rfcs/rfc0036_http_dep_elimination.html#changes-checklist","rfcs/rfc0037_http_wrapper.html#rfc-the-http-wrapper-type","rfcs/rfc0037_http_wrapper.html#terminology","rfcs/rfc0037_http_wrapper.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0037_http_wrapper.html#how-to-actually-implement-this-rfc","rfcs/rfc0037_http_wrapper.html#future-work","rfcs/rfc0037_http_wrapper.html#changes-checklist","rfcs/rfc0038_retry_classifier_customization.html#rfc-user-configurable-retry-classification","rfcs/rfc0038_retry_classifier_customization.html#terminology","rfcs/rfc0038_retry_classifier_customization.html#how-the-orchestrator-should-model-retries","rfcs/rfc0038_retry_classifier_customization.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0038_retry_classifier_customization.html#defining-a-custom-classifier","rfcs/rfc0038_retry_classifier_customization.html#setting-classifiers","rfcs/rfc0038_retry_classifier_customization.html#default-classifiers","rfcs/rfc0038_retry_classifier_customization.html#how-to-actually-implement-this-rfc","rfcs/rfc0038_retry_classifier_customization.html#the-retryclassifier-trait","rfcs/rfc0038_retry_classifier_customization.html#resolving-the-correct-order-of-multiple-retry-classifiers","rfcs/rfc0038_retry_classifier_customization.html#questions-and-answers","rfcs/rfc0038_retry_classifier_customization.html#changes-checklist","contributing/overview.html#contributing","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#writing-and-debugging-a-low-level-feature-that-relies-on-http","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#background","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-streaming-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-issues-i-encountered-while-implementing-checksums-for-streaming-request-bodies","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#s3-requires-a-content-length-unless-you-also-set-transfer-encoding-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#adding-trailers-to-a-request-changes-the-size-of-that-request","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#hyper-supports-http-request-trailers-but-isnt-compatible-with-content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-stream-is-closing-early-and-i-dont-know-why","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#what-helped-me-to-understand-the-problems-and-their-solutions","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#"],"index":{"documentStore":{"docInfo":{"0":{"body":42,"breadcrumbs":4,"title":2},"1":{"body":18,"breadcrumbs":3,"title":1},"10":{"body":0,"breadcrumbs":4,"title":2},"100":{"body":74,"breadcrumbs":12,"title":4},"101":{"body":126,"breadcrumbs":10,"title":2},"102":{"body":53,"breadcrumbs":11,"title":3},"103":{"body":40,"breadcrumbs":10,"title":2},"104":{"body":27,"breadcrumbs":11,"title":3},"105":{"body":107,"breadcrumbs":10,"title":2},"106":{"body":67,"breadcrumbs":10,"title":2},"107":{"body":10,"breadcrumbs":10,"title":2},"108":{"body":82,"breadcrumbs":20,"title":9},"109":{"body":81,"breadcrumbs":12,"title":1},"11":{"body":24,"breadcrumbs":3,"title":1},"110":{"body":165,"breadcrumbs":14,"title":3},"111":{"body":134,"breadcrumbs":15,"title":4},"112":{"body":315,"breadcrumbs":15,"title":4},"113":{"body":79,"breadcrumbs":13,"title":2},"114":{"body":40,"breadcrumbs":11,"title":4},"115":{"body":49,"breadcrumbs":8,"title":1},"116":{"body":159,"breadcrumbs":10,"title":3},"117":{"body":151,"breadcrumbs":11,"title":4},"118":{"body":53,"breadcrumbs":11,"title":4},"119":{"body":240,"breadcrumbs":9,"title":2},"12":{"body":80,"breadcrumbs":6,"title":4},"120":{"body":36,"breadcrumbs":9,"title":2},"121":{"body":22,"breadcrumbs":10,"title":3},"122":{"body":59,"breadcrumbs":9,"title":2},"123":{"body":45,"breadcrumbs":8,"title":3},"124":{"body":154,"breadcrumbs":6,"title":1},"125":{"body":57,"breadcrumbs":9,"title":4},"126":{"body":42,"breadcrumbs":8,"title":3},"127":{"body":37,"breadcrumbs":10,"title":5},"128":{"body":40,"breadcrumbs":10,"title":5},"129":{"body":70,"breadcrumbs":7,"title":2},"13":{"body":96,"breadcrumbs":10,"title":8},"130":{"body":182,"breadcrumbs":7,"title":2},"131":{"body":157,"breadcrumbs":7,"title":2},"132":{"body":33,"breadcrumbs":12,"title":5},"133":{"body":0,"breadcrumbs":8,"title":1},"134":{"body":15,"breadcrumbs":12,"title":5},"135":{"body":109,"breadcrumbs":8,"title":1},"136":{"body":24,"breadcrumbs":8,"title":1},"137":{"body":34,"breadcrumbs":8,"title":1},"138":{"body":6,"breadcrumbs":9,"title":2},"139":{"body":13,"breadcrumbs":8,"title":1},"14":{"body":97,"breadcrumbs":16,"title":14},"140":{"body":9,"breadcrumbs":9,"title":2},"141":{"body":91,"breadcrumbs":10,"title":4},"142":{"body":112,"breadcrumbs":7,"title":1},"143":{"body":64,"breadcrumbs":8,"title":2},"144":{"body":49,"breadcrumbs":8,"title":2},"145":{"body":68,"breadcrumbs":10,"title":4},"146":{"body":80,"breadcrumbs":7,"title":1},"147":{"body":79,"breadcrumbs":7,"title":1},"148":{"body":69,"breadcrumbs":10,"title":4},"149":{"body":142,"breadcrumbs":8,"title":2},"15":{"body":13,"breadcrumbs":2,"title":1},"150":{"body":44,"breadcrumbs":15,"title":9},"151":{"body":0,"breadcrumbs":8,"title":2},"152":{"body":137,"breadcrumbs":14,"title":8},"153":{"body":179,"breadcrumbs":12,"title":6},"154":{"body":69,"breadcrumbs":8,"title":2},"155":{"body":131,"breadcrumbs":5,"title":1},"156":{"body":321,"breadcrumbs":5,"title":1},"157":{"body":29,"breadcrumbs":7,"title":3},"158":{"body":0,"breadcrumbs":6,"title":2},"159":{"body":19,"breadcrumbs":5,"title":1},"16":{"body":24,"breadcrumbs":2,"title":1},"160":{"body":18,"breadcrumbs":5,"title":1},"161":{"body":29,"breadcrumbs":5,"title":1},"162":{"body":33,"breadcrumbs":6,"title":2},"163":{"body":72,"breadcrumbs":8,"title":3},"164":{"body":58,"breadcrumbs":6,"title":1},"165":{"body":46,"breadcrumbs":9,"title":4},"166":{"body":85,"breadcrumbs":13,"title":8},"167":{"body":87,"breadcrumbs":7,"title":2},"168":{"body":0,"breadcrumbs":6,"title":1},"169":{"body":144,"breadcrumbs":10,"title":5},"17":{"body":55,"breadcrumbs":3,"title":2},"170":{"body":48,"breadcrumbs":7,"title":2},"171":{"body":118,"breadcrumbs":6,"title":2},"172":{"body":81,"breadcrumbs":5,"title":1},"173":{"body":55,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":169,"breadcrumbs":6,"title":2},"176":{"body":34,"breadcrumbs":6,"title":2},"177":{"body":41,"breadcrumbs":11,"title":5},"178":{"body":42,"breadcrumbs":7,"title":1},"179":{"body":0,"breadcrumbs":7,"title":1},"18":{"body":45,"breadcrumbs":6,"title":3},"180":{"body":117,"breadcrumbs":7,"title":1},"181":{"body":50,"breadcrumbs":7,"title":1},"182":{"body":73,"breadcrumbs":8,"title":2},"183":{"body":229,"breadcrumbs":7,"title":1},"184":{"body":33,"breadcrumbs":10,"title":4},"185":{"body":68,"breadcrumbs":10,"title":4},"186":{"body":42,"breadcrumbs":7,"title":1},"187":{"body":0,"breadcrumbs":7,"title":1},"188":{"body":138,"breadcrumbs":7,"title":1},"189":{"body":27,"breadcrumbs":8,"title":2},"19":{"body":10,"breadcrumbs":5,"title":2},"190":{"body":20,"breadcrumbs":7,"title":1},"191":{"body":32,"breadcrumbs":10,"title":4},"192":{"body":104,"breadcrumbs":8,"title":2},"193":{"body":163,"breadcrumbs":12,"title":6},"194":{"body":268,"breadcrumbs":9,"title":3},"195":{"body":40,"breadcrumbs":7,"title":1},"196":{"body":69,"breadcrumbs":8,"title":2},"197":{"body":34,"breadcrumbs":10,"title":4},"198":{"body":18,"breadcrumbs":11,"title":5},"199":{"body":547,"breadcrumbs":7,"title":1},"2":{"body":88,"breadcrumbs":5,"title":3},"20":{"body":66,"breadcrumbs":5,"title":2},"200":{"body":198,"breadcrumbs":8,"title":2},"201":{"body":38,"breadcrumbs":12,"title":5},"202":{"body":9,"breadcrumbs":8,"title":1},"203":{"body":99,"breadcrumbs":9,"title":2},"204":{"body":220,"breadcrumbs":10,"title":3},"205":{"body":128,"breadcrumbs":9,"title":2},"206":{"body":40,"breadcrumbs":9,"title":2},"207":{"body":56,"breadcrumbs":9,"title":2},"208":{"body":5,"breadcrumbs":14,"title":7},"209":{"body":33,"breadcrumbs":9,"title":2},"21":{"body":53,"breadcrumbs":5,"title":2},"210":{"body":36,"breadcrumbs":9,"title":2},"211":{"body":49,"breadcrumbs":11,"title":4},"212":{"body":321,"breadcrumbs":11,"title":4},"213":{"body":18,"breadcrumbs":9,"title":2},"214":{"body":88,"breadcrumbs":11,"title":4},"215":{"body":2,"breadcrumbs":16,"title":7},"216":{"body":75,"breadcrumbs":11,"title":2},"217":{"body":36,"breadcrumbs":11,"title":2},"218":{"body":66,"breadcrumbs":11,"title":2},"219":{"body":162,"breadcrumbs":20,"title":11},"22":{"body":59,"breadcrumbs":6,"title":3},"220":{"body":76,"breadcrumbs":13,"title":4},"221":{"body":209,"breadcrumbs":14,"title":5},"222":{"body":47,"breadcrumbs":11,"title":2},"223":{"body":21,"breadcrumbs":10,"title":4},"224":{"body":32,"breadcrumbs":9,"title":3},"225":{"body":19,"breadcrumbs":8,"title":2},"226":{"body":1039,"breadcrumbs":10,"title":4},"227":{"body":385,"breadcrumbs":7,"title":1},"228":{"body":320,"breadcrumbs":7,"title":1},"229":{"body":944,"breadcrumbs":8,"title":2},"23":{"body":6,"breadcrumbs":7,"title":4},"230":{"body":167,"breadcrumbs":8,"title":2},"231":{"body":232,"breadcrumbs":7,"title":1},"232":{"body":44,"breadcrumbs":7,"title":1},"233":{"body":24,"breadcrumbs":8,"title":2},"234":{"body":85,"breadcrumbs":10,"title":4},"235":{"body":29,"breadcrumbs":7,"title":1},"236":{"body":202,"breadcrumbs":7,"title":1},"237":{"body":50,"breadcrumbs":12,"title":6},"238":{"body":46,"breadcrumbs":8,"title":2},"239":{"body":35,"breadcrumbs":8,"title":2},"24":{"body":61,"breadcrumbs":5,"title":2},"240":{"body":89,"breadcrumbs":12,"title":5},"241":{"body":71,"breadcrumbs":8,"title":1},"242":{"body":0,"breadcrumbs":8,"title":1},"243":{"body":47,"breadcrumbs":10,"title":3},"244":{"body":91,"breadcrumbs":9,"title":2},"245":{"body":73,"breadcrumbs":8,"title":1},"246":{"body":32,"breadcrumbs":9,"title":2},"247":{"body":54,"breadcrumbs":8,"title":1},"248":{"body":80,"breadcrumbs":9,"title":2},"249":{"body":158,"breadcrumbs":11,"title":4},"25":{"body":43,"breadcrumbs":3,"title":1},"250":{"body":59,"breadcrumbs":10,"title":3},"251":{"body":106,"breadcrumbs":9,"title":2},"252":{"body":54,"breadcrumbs":10,"title":3},"253":{"body":48,"breadcrumbs":9,"title":2},"254":{"body":42,"breadcrumbs":9,"title":2},"255":{"body":128,"breadcrumbs":10,"title":3},"256":{"body":90,"breadcrumbs":11,"title":4},"257":{"body":105,"breadcrumbs":12,"title":5},"258":{"body":33,"breadcrumbs":9,"title":2},"259":{"body":21,"breadcrumbs":10,"title":4},"26":{"body":51,"breadcrumbs":2,"title":1},"260":{"body":65,"breadcrumbs":10,"title":4},"261":{"body":265,"breadcrumbs":9,"title":3},"262":{"body":20,"breadcrumbs":8,"title":2},"263":{"body":51,"breadcrumbs":10,"title":4},"264":{"body":75,"breadcrumbs":7,"title":1},"265":{"body":112,"breadcrumbs":7,"title":1},"266":{"body":246,"breadcrumbs":7,"title":1},"267":{"body":156,"breadcrumbs":7,"title":1},"268":{"body":124,"breadcrumbs":7,"title":1},"269":{"body":380,"breadcrumbs":8,"title":2},"27":{"body":133,"breadcrumbs":2,"title":1},"270":{"body":53,"breadcrumbs":7,"title":1},"271":{"body":23,"breadcrumbs":11,"title":5},"272":{"body":119,"breadcrumbs":10,"title":4},"273":{"body":48,"breadcrumbs":11,"title":5},"274":{"body":717,"breadcrumbs":9,"title":3},"275":{"body":56,"breadcrumbs":9,"title":3},"276":{"body":101,"breadcrumbs":9,"title":3},"277":{"body":90,"breadcrumbs":9,"title":3},"278":{"body":123,"breadcrumbs":11,"title":5},"279":{"body":91,"breadcrumbs":8,"title":2},"28":{"body":38,"breadcrumbs":5,"title":2},"280":{"body":40,"breadcrumbs":8,"title":2},"281":{"body":39,"breadcrumbs":8,"title":3},"282":{"body":57,"breadcrumbs":7,"title":2},"283":{"body":36,"breadcrumbs":8,"title":3},"284":{"body":47,"breadcrumbs":8,"title":3},"285":{"body":39,"breadcrumbs":11,"title":6},"286":{"body":15,"breadcrumbs":7,"title":2},"287":{"body":91,"breadcrumbs":10,"title":4},"288":{"body":18,"breadcrumbs":10,"title":4},"289":{"body":227,"breadcrumbs":9,"title":3},"29":{"body":44,"breadcrumbs":5,"title":2},"290":{"body":110,"breadcrumbs":9,"title":3},"291":{"body":61,"breadcrumbs":12,"title":6},"292":{"body":0,"breadcrumbs":8,"title":2},"293":{"body":65,"breadcrumbs":7,"title":1},"294":{"body":40,"breadcrumbs":8,"title":2},"295":{"body":97,"breadcrumbs":9,"title":3},"296":{"body":55,"breadcrumbs":8,"title":2},"297":{"body":271,"breadcrumbs":9,"title":3},"298":{"body":69,"breadcrumbs":9,"title":3},"299":{"body":69,"breadcrumbs":10,"title":4},"3":{"body":38,"breadcrumbs":3,"title":1},"30":{"body":114,"breadcrumbs":4,"title":1},"300":{"body":22,"breadcrumbs":8,"title":2},"301":{"body":73,"breadcrumbs":10,"title":4},"302":{"body":68,"breadcrumbs":14,"title":6},"303":{"body":91,"breadcrumbs":9,"title":1},"304":{"body":56,"breadcrumbs":11,"title":3},"305":{"body":138,"breadcrumbs":11,"title":3},"306":{"body":141,"breadcrumbs":11,"title":3},"307":{"body":212,"breadcrumbs":11,"title":3},"308":{"body":112,"breadcrumbs":11,"title":3},"309":{"body":306,"breadcrumbs":11,"title":3},"31":{"body":71,"breadcrumbs":4,"title":1},"310":{"body":331,"breadcrumbs":14,"title":6},"311":{"body":189,"breadcrumbs":15,"title":7},"312":{"body":176,"breadcrumbs":15,"title":7},"313":{"body":634,"breadcrumbs":14,"title":6},"314":{"body":87,"breadcrumbs":11,"title":3},"315":{"body":10,"breadcrumbs":11,"title":3},"316":{"body":48,"breadcrumbs":10,"title":2},"317":{"body":12,"breadcrumbs":9,"title":5},"318":{"body":146,"breadcrumbs":5,"title":1},"319":{"body":235,"breadcrumbs":8,"title":4},"32":{"body":60,"breadcrumbs":5,"title":2},"320":{"body":30,"breadcrumbs":6,"title":2},"321":{"body":4,"breadcrumbs":7,"title":3},"322":{"body":241,"breadcrumbs":8,"title":3},"323":{"body":23,"breadcrumbs":6,"title":1},"324":{"body":213,"breadcrumbs":9,"title":4},"325":{"body":134,"breadcrumbs":7,"title":2},"326":{"body":25,"breadcrumbs":7,"title":2},"327":{"body":21,"breadcrumbs":7,"title":2},"328":{"body":26,"breadcrumbs":7,"title":2},"329":{"body":62,"breadcrumbs":10,"title":5},"33":{"body":208,"breadcrumbs":5,"title":2},"330":{"body":153,"breadcrumbs":7,"title":2},"331":{"body":143,"breadcrumbs":7,"title":2},"332":{"body":41,"breadcrumbs":10,"title":4},"333":{"body":161,"breadcrumbs":8,"title":2},"334":{"body":13,"breadcrumbs":8,"title":2},"335":{"body":81,"breadcrumbs":10,"title":4},"336":{"body":93,"breadcrumbs":11,"title":5},"337":{"body":102,"breadcrumbs":9,"title":3},"338":{"body":55,"breadcrumbs":10,"title":4},"339":{"body":21,"breadcrumbs":9,"title":3},"34":{"body":19,"breadcrumbs":5,"title":2},"340":{"body":100,"breadcrumbs":9,"title":3},"341":{"body":28,"breadcrumbs":10,"title":4},"342":{"body":34,"breadcrumbs":9,"title":3},"343":{"body":33,"breadcrumbs":9,"title":3},"344":{"body":109,"breadcrumbs":8,"title":2},"345":{"body":112,"breadcrumbs":8,"title":2},"346":{"body":53,"breadcrumbs":8,"title":3},"347":{"body":75,"breadcrumbs":6,"title":1},"348":{"body":0,"breadcrumbs":9,"title":4},"349":{"body":157,"breadcrumbs":6,"title":1},"35":{"body":13,"breadcrumbs":4,"title":1},"350":{"body":329,"breadcrumbs":7,"title":2},"351":{"body":178,"breadcrumbs":8,"title":3},"352":{"body":122,"breadcrumbs":7,"title":2},"353":{"body":53,"breadcrumbs":8,"title":3},"354":{"body":88,"breadcrumbs":8,"title":3},"355":{"body":134,"breadcrumbs":10,"title":5},"356":{"body":179,"breadcrumbs":7,"title":2},"357":{"body":47,"breadcrumbs":10,"title":5},"358":{"body":8,"breadcrumbs":8,"title":3},"359":{"body":94,"breadcrumbs":7,"title":2},"36":{"body":21,"breadcrumbs":4,"title":1},"360":{"body":0,"breadcrumbs":7,"title":2},"361":{"body":68,"breadcrumbs":9,"title":4},"362":{"body":93,"breadcrumbs":14,"title":6},"363":{"body":213,"breadcrumbs":10,"title":2},"364":{"body":51,"breadcrumbs":10,"title":2},"365":{"body":0,"breadcrumbs":11,"title":3},"366":{"body":154,"breadcrumbs":11,"title":3},"367":{"body":105,"breadcrumbs":12,"title":4},"368":{"body":314,"breadcrumbs":13,"title":5},"369":{"body":34,"breadcrumbs":14,"title":6},"37":{"body":25,"breadcrumbs":4,"title":1},"370":{"body":35,"breadcrumbs":9,"title":1},"371":{"body":168,"breadcrumbs":9,"title":1},"372":{"body":103,"breadcrumbs":10,"title":2},"373":{"body":90,"breadcrumbs":10,"title":2},"374":{"body":40,"breadcrumbs":10,"title":2},"375":{"body":15,"breadcrumbs":8,"title":3},"376":{"body":34,"breadcrumbs":6,"title":1},"377":{"body":83,"breadcrumbs":6,"title":1},"378":{"body":28,"breadcrumbs":7,"title":2},"379":{"body":0,"breadcrumbs":7,"title":2},"38":{"body":92,"breadcrumbs":4,"title":1},"380":{"body":77,"breadcrumbs":7,"title":2},"381":{"body":81,"breadcrumbs":10,"title":5},"382":{"body":26,"breadcrumbs":12,"title":7},"383":{"body":25,"breadcrumbs":11,"title":6},"384":{"body":0,"breadcrumbs":6,"title":1},"385":{"body":16,"breadcrumbs":7,"title":2},"386":{"body":211,"breadcrumbs":6,"title":1},"387":{"body":86,"breadcrumbs":6,"title":1},"388":{"body":21,"breadcrumbs":6,"title":1},"389":{"body":20,"breadcrumbs":6,"title":1},"39":{"body":186,"breadcrumbs":6,"title":3},"390":{"body":31,"breadcrumbs":10,"title":5},"391":{"body":14,"breadcrumbs":7,"title":2},"392":{"body":13,"breadcrumbs":6,"title":1},"393":{"body":14,"breadcrumbs":6,"title":1},"394":{"body":32,"breadcrumbs":7,"title":2},"395":{"body":84,"breadcrumbs":9,"title":4},"396":{"body":103,"breadcrumbs":11,"title":6},"397":{"body":38,"breadcrumbs":11,"title":6},"398":{"body":55,"breadcrumbs":13,"title":8},"399":{"body":0,"breadcrumbs":6,"title":1},"4":{"body":19,"breadcrumbs":4,"title":2},"40":{"body":66,"breadcrumbs":4,"title":1},"400":{"body":11,"breadcrumbs":7,"title":2},"401":{"body":62,"breadcrumbs":8,"title":3},"402":{"body":103,"breadcrumbs":9,"title":4},"403":{"body":0,"breadcrumbs":6,"title":1},"404":{"body":16,"breadcrumbs":7,"title":2},"405":{"body":198,"breadcrumbs":7,"title":2},"406":{"body":30,"breadcrumbs":7,"title":2},"407":{"body":0,"breadcrumbs":6,"title":1},"408":{"body":73,"breadcrumbs":8,"title":3},"409":{"body":45,"breadcrumbs":7,"title":2},"41":{"body":104,"breadcrumbs":6,"title":3},"410":{"body":46,"breadcrumbs":13,"title":6},"411":{"body":60,"breadcrumbs":8,"title":1},"412":{"body":31,"breadcrumbs":8,"title":1},"413":{"body":317,"breadcrumbs":8,"title":1},"414":{"body":215,"breadcrumbs":8,"title":1},"415":{"body":205,"breadcrumbs":10,"title":3},"416":{"body":189,"breadcrumbs":8,"title":1},"417":{"body":18,"breadcrumbs":9,"title":2},"418":{"body":265,"breadcrumbs":9,"title":2},"419":{"body":76,"breadcrumbs":10,"title":4},"42":{"body":0,"breadcrumbs":5,"title":2},"420":{"body":88,"breadcrumbs":7,"title":1},"421":{"body":0,"breadcrumbs":9,"title":3},"422":{"body":94,"breadcrumbs":7,"title":1},"423":{"body":250,"breadcrumbs":7,"title":1},"424":{"body":98,"breadcrumbs":8,"title":2},"425":{"body":0,"breadcrumbs":9,"title":3},"426":{"body":124,"breadcrumbs":7,"title":1},"427":{"body":191,"breadcrumbs":7,"title":1},"428":{"body":352,"breadcrumbs":8,"title":2},"429":{"body":0,"breadcrumbs":9,"title":3},"43":{"body":109,"breadcrumbs":4,"title":1},"430":{"body":194,"breadcrumbs":7,"title":1},"431":{"body":369,"breadcrumbs":9,"title":3},"432":{"body":101,"breadcrumbs":7,"title":1},"433":{"body":139,"breadcrumbs":16,"title":7},"434":{"body":75,"breadcrumbs":10,"title":1},"435":{"body":44,"breadcrumbs":11,"title":2},"436":{"body":24,"breadcrumbs":11,"title":2},"437":{"body":166,"breadcrumbs":15,"title":6},"438":{"body":207,"breadcrumbs":12,"title":3},"439":{"body":24,"breadcrumbs":13,"title":4},"44":{"body":121,"breadcrumbs":4,"title":1},"440":{"body":23,"breadcrumbs":12,"title":3},"441":{"body":0,"breadcrumbs":11,"title":2},"442":{"body":16,"breadcrumbs":12,"title":3},"443":{"body":7,"breadcrumbs":11,"title":2},"444":{"body":11,"breadcrumbs":12,"title":3},"445":{"body":18,"breadcrumbs":13,"title":4},"446":{"body":90,"breadcrumbs":11,"title":2},"447":{"body":28,"breadcrumbs":15,"title":6},"448":{"body":28,"breadcrumbs":18,"title":9},"449":{"body":83,"breadcrumbs":7,"title":2},"45":{"body":66,"breadcrumbs":5,"title":2},"450":{"body":38,"breadcrumbs":6,"title":1},"451":{"body":191,"breadcrumbs":6,"title":1},"452":{"body":55,"breadcrumbs":9,"title":4},"453":{"body":84,"breadcrumbs":11,"title":6},"454":{"body":329,"breadcrumbs":9,"title":4},"455":{"body":62,"breadcrumbs":7,"title":2},"456":{"body":0,"breadcrumbs":7,"title":2},"457":{"body":159,"breadcrumbs":7,"title":2},"458":{"body":325,"breadcrumbs":10,"title":5},"459":{"body":415,"breadcrumbs":9,"title":4},"46":{"body":43,"breadcrumbs":6,"title":3},"460":{"body":122,"breadcrumbs":6,"title":1},"461":{"body":58,"breadcrumbs":7,"title":2},"462":{"body":72,"breadcrumbs":8,"title":3},"463":{"body":21,"breadcrumbs":6,"title":1},"464":{"body":38,"breadcrumbs":9,"title":4},"465":{"body":20,"breadcrumbs":8,"title":3},"466":{"body":26,"breadcrumbs":7,"title":2},"467":{"body":6,"breadcrumbs":9,"title":4},"468":{"body":21,"breadcrumbs":7,"title":2},"469":{"body":49,"breadcrumbs":11,"title":5},"47":{"body":0,"breadcrumbs":7,"title":4},"470":{"body":98,"breadcrumbs":7,"title":1},"471":{"body":192,"breadcrumbs":7,"title":1},"472":{"body":97,"breadcrumbs":10,"title":4},"473":{"body":0,"breadcrumbs":9,"title":3},"474":{"body":15,"breadcrumbs":9,"title":3},"475":{"body":163,"breadcrumbs":9,"title":3},"476":{"body":14,"breadcrumbs":10,"title":4},"477":{"body":26,"breadcrumbs":11,"title":5},"478":{"body":75,"breadcrumbs":8,"title":2},"479":{"body":29,"breadcrumbs":9,"title":4},"48":{"body":116,"breadcrumbs":4,"title":1},"480":{"body":16,"breadcrumbs":6,"title":1},"481":{"body":58,"breadcrumbs":9,"title":4},"482":{"body":1596,"breadcrumbs":8,"title":3},"483":{"body":8,"breadcrumbs":7,"title":2},"484":{"body":29,"breadcrumbs":7,"title":2},"485":{"body":37,"breadcrumbs":12,"title":5},"486":{"body":131,"breadcrumbs":8,"title":1},"487":{"body":138,"breadcrumbs":10,"title":3},"488":{"body":20,"breadcrumbs":11,"title":4},"489":{"body":385,"breadcrumbs":10,"title":3},"49":{"body":43,"breadcrumbs":6,"title":3},"490":{"body":88,"breadcrumbs":9,"title":2},"491":{"body":177,"breadcrumbs":9,"title":2},"492":{"body":40,"breadcrumbs":10,"title":3},"493":{"body":104,"breadcrumbs":9,"title":2},"494":{"body":38,"breadcrumbs":13,"title":6},"495":{"body":41,"breadcrumbs":9,"title":2},"496":{"body":80,"breadcrumbs":9,"title":2},"497":{"body":14,"breadcrumbs":2,"title":1},"498":{"body":0,"breadcrumbs":15,"title":7},"499":{"body":51,"breadcrumbs":9,"title":1},"5":{"body":100,"breadcrumbs":5,"title":4},"50":{"body":75,"breadcrumbs":7,"title":4},"500":{"body":106,"breadcrumbs":12,"title":4},"501":{"body":72,"breadcrumbs":13,"title":5},"502":{"body":0,"breadcrumbs":15,"title":7},"503":{"body":112,"breadcrumbs":12,"title":4},"504":{"body":112,"breadcrumbs":17,"title":9},"505":{"body":55,"breadcrumbs":14,"title":6},"506":{"body":134,"breadcrumbs":19,"title":11},"507":{"body":42,"breadcrumbs":13,"title":5},"508":{"body":340,"breadcrumbs":12,"title":4},"509":{"body":2,"breadcrumbs":8,"title":1},"51":{"body":23,"breadcrumbs":3,"title":2},"52":{"body":111,"breadcrumbs":4,"title":1},"53":{"body":98,"breadcrumbs":5,"title":2},"54":{"body":264,"breadcrumbs":4,"title":1},"55":{"body":0,"breadcrumbs":6,"title":3},"56":{"body":391,"breadcrumbs":6,"title":3},"57":{"body":17,"breadcrumbs":5,"title":2},"58":{"body":0,"breadcrumbs":6,"title":3},"59":{"body":44,"breadcrumbs":9,"title":6},"6":{"body":0,"breadcrumbs":4,"title":3},"60":{"body":12,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":9,"title":6},"62":{"body":58,"breadcrumbs":6,"title":3},"63":{"body":47,"breadcrumbs":4,"title":1},"64":{"body":6,"breadcrumbs":7,"title":4},"65":{"body":136,"breadcrumbs":5,"title":2},"66":{"body":117,"breadcrumbs":5,"title":2},"67":{"body":200,"breadcrumbs":5,"title":2},"68":{"body":134,"breadcrumbs":6,"title":3},"69":{"body":22,"breadcrumbs":3,"title":2},"7":{"body":51,"breadcrumbs":4,"title":3},"70":{"body":67,"breadcrumbs":3,"title":1},"71":{"body":122,"breadcrumbs":4,"title":2},"72":{"body":121,"breadcrumbs":4,"title":2},"73":{"body":92,"breadcrumbs":4,"title":2},"74":{"body":111,"breadcrumbs":5,"title":3},"75":{"body":99,"breadcrumbs":7,"title":5},"76":{"body":99,"breadcrumbs":7,"title":5},"77":{"body":319,"breadcrumbs":4,"title":2},"78":{"body":171,"breadcrumbs":3,"title":1},"79":{"body":106,"breadcrumbs":6,"title":4},"8":{"body":42,"breadcrumbs":6,"title":5},"80":{"body":165,"breadcrumbs":3,"title":1},"81":{"body":155,"breadcrumbs":4,"title":2},"82":{"body":260,"breadcrumbs":9,"title":4},"83":{"body":185,"breadcrumbs":5,"title":2},"84":{"body":462,"breadcrumbs":4,"title":1},"85":{"body":177,"breadcrumbs":5,"title":2},"86":{"body":168,"breadcrumbs":6,"title":3},"87":{"body":199,"breadcrumbs":4,"title":1},"88":{"body":215,"breadcrumbs":4,"title":1},"89":{"body":351,"breadcrumbs":4,"title":1},"9":{"body":56,"breadcrumbs":3,"title":2},"90":{"body":229,"breadcrumbs":6,"title":3},"91":{"body":13,"breadcrumbs":9,"title":4},"92":{"body":90,"breadcrumbs":7,"title":2},"93":{"body":288,"breadcrumbs":7,"title":2},"94":{"body":114,"breadcrumbs":2,"title":1},"95":{"body":193,"breadcrumbs":4,"title":3},"96":{"body":80,"breadcrumbs":11,"title":3},"97":{"body":6,"breadcrumbs":10,"title":2},"98":{"body":149,"breadcrumbs":10,"title":2},"99":{"body":127,"breadcrumbs":13,"title":5}},"docs":{"0":{"body":"The AWS Rust SDK aims to provide an official, high quality & complete interface to AWS services. We plan to eventually use the CRT to provide signing & credential management. The Rust SDK will provide first-class support for the CRT as well as Tokio & Hyper . The Rust SDK empowers advanced customers to bring their own HTTP/IO implementations. Our design choices are guided by our Tenets .","breadcrumbs":"Design Overview » Design Overview","id":"0","title":"Design Overview"},"1":{"body":"The design builds on the learnings, ideas, hard work, and GitHub issues of the 142 Rusoto contributors & thousands of users who built this first and learned the hard way.","breadcrumbs":"Design Overview » Acknowledgments","id":"1","title":"Acknowledgments"},"10":{"body":"","breadcrumbs":"Design FAQ » Design FAQ","id":"10","title":"Design FAQ"},"100":{"body":"If you have your own source of credentials, you may opt-out of the standard credential provider chain. To do this, implement the ProvideCredentials trait. NOTE: aws_types::Credentials already implements ProvideCredentials. If you want to use the SDK with static credentials, you're already done! use aws_types::credentials::{ProvideCredentials, provide_credentials::future, Result}; struct MyCustomProvider; impl MyCustomProvider { pub async fn load_credentials(&self) -> Result { todo!() // A regular async function }\n} impl ProvideCredentials for MyCustomProvider { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.load_credentials()) }\n} Hint: If your credential provider is not asynchronous, you can use ProvideCredentials::ready instead to save an allocation. After writing your custom provider, you'll use it in when constructing the configuration: #[tokio::main]\nasync fn main() { let config = aws_config::from_env().credentials_provider(MyCustomProvider).load().await; let dynamodb = dynamodb::new(&config);\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Specifying a custom credential provider","id":"100","title":"Specifying a custom credential provider"},"101":{"body":"Achieving this design consists of three major changes: Add a Config struct to aws-types. This contains a config, but with no logic to construct it. This represents what configuration SDKS need, but not how to load the information from the environment. Create the aws-config crate. aws-config contains the logic to load configuration from the environment. No generated service clients will depend on aws-config. This is critical to avoid circular dependencies and to allow aws-config to depend on other AWS services. aws-config contains individual providers as well as a pre-assembled default provider chain for region and credentials. It will also contain crate features to automatically bring in HTTPS and async-sleep implementations. Remove all \"business logic\" from aws-types. aws-types should be an interface-only crate that is extremely stable. The ProvideCredentials trait should move into aws-types. The region provider trait which only exists to support region-chaining will move out of aws-types into aws-config. Services will continue to generate their own Config structs. These will continue to be customizable as they are today, however, they won't have any default resolvers built in. Each AWS config will implement From<&aws_types::SharedConfig> . A convenience method to new() a fluent client directly from a shared config will also be generated.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Proposed Design","id":"101","title":"Proposed Design"},"102":{"body":"This RFC proposes adding region and credentials providers support to the shared config. A future RFC will propose integration with HTTP settings, HTTPs connectors, and async sleep. struct Config { // private fields ...\n} impl Config { pub fn region(&self) -> Option<&Region> { self.region.as_ref() } pub fn credentials_provider(&self) -> Option { self.credentials_provider.clone() } pub fn builder() -> Builder { Builder::default() }\n} The Builder for Config allows customers to provide individual overrides and handles the insertion of the default chain for regions and credentials.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Shared Config Implementation","id":"102","title":"Shared Config Implementation"},"103":{"body":"Sleep and Connector are both runtime dependent features. aws-config will define rt-tokio and rustls and native-tls optional features. This centralizes the Tokio/Hyper dependency eventually removing the need for each service to maintain their own Tokio/Hyper features. Although not proposed in this RFC, shared config will eventually gain support for creating an HTTPs client from HTTP settings.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sleep + Connectors","id":"103","title":"Sleep + Connectors"},"104":{"body":"Currently, the .build() method on service config will fill in defaults. As part of this change, .build() called on the service config with missing properties will fill in \"empty\" defaults. If no credentials provider is given, a NoCredentials provider will be set, and Region will remain as None.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » The .build() method on ::Config","id":"104","title":"The .build() method on ::Config"},"105":{"body":"The introduction of Config to aws-types is not without risks. If a customer depends on a version aws-config that uses Config that is incompatible, they will get confusing compiler errors. An example of a problematic set of dependent versions: ┌─────────────────┐ ┌───────────────┐\n│ aws-types = 0.1 │ │aws-types= 0.2 │\n└─────────────────┘ └───────────────┘ ▲ ▲ │ │ │ │ │ │ ┌─────────┴─────────────┐ ┌────────┴───────┐ │aws-sdk-dynamodb = 0.5 │ │aws-config = 0.6│ └───────────┬───────────┘ └───────┬────────┘ │ │ │ │ │ │ │ │ │ │ ├─────────────────────┬────────┘ │ my-lambda-function │ └─────────────────────┘ To mitigate this risk, we will need to make aws-types essentially permanently stable. Changes to aws-types need to be made with extreme care. This will ensure that two versions of aws-types never end up in a customer's dependency tree. We will dramatically reduce the surface area of aws-types to contain only interfaces. Several breaking changes will be made as part of this, notably, the profile file parsing will be moved out of aws-types. Finally, to mitigate this risk even further, services will pub use items from aws-types directly which means that even if a dependency mismatch exists, it is still possible for customers to work around it.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Stability and Versioning","id":"105","title":"Stability and Versioning"},"106":{"body":"ProvideRegion becomes async using a newtype'd future. AsyncProvideCredentials is removed. ProvideCredentials becomes async using a newtype'd future. ProvideCredentials moved into aws-types. Credentials moved into aws-types Create aws-config. Profile-file parsing moved into aws-config, region chain & region environment loaders moved to aws-config. os_shim_internal moved to ??? aws-smithy-types? Add Config to aws-types. Ensure that it's set up to add new members while remaining backwards compatible. Code generate From<&SharedConfig> for ::Config Code generate ::Client::new(&shared_config) Remove ::from_env","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Changes Checklist","id":"106","title":"Changes Checklist"},"107":{"body":"Connector construction needs to be a function of HTTP settings An AsyncSleep should be added to aws-types::Config","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Open Issues","id":"107","title":"Open Issues"},"108":{"body":"Status: Accepted For a summarized list of proposed changes, see the Changes Checklist section. Most AWS SDK operations use HTTP/1.1, but bi-directional streaming operations that use the Event Stream message framing format need to use HTTP/2 (h2). Smithy models can also customize which HTTP versions are used in each individual protocol trait. For example, @restJson1 has attributes http and eventStreamHttp to list out the versions that should be used in a priority order. There are two problems in play that this doc attempts to solve: Connector Creation : Customers need to be able to create connectors with the HTTP settings they desire, and these custom connectors must align with what the Smithy model requires. Connector Selection : The generated code must be able to select the connector that best matches the requirements from the Smithy model.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » RFC: Supporting multiple HTTP versions for SDKs that use Event Stream","id":"108","title":"RFC: Supporting multiple HTTP versions for SDKs that use Event Stream"},"109":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Terminology","id":"109","title":"Terminology"},"11":{"body":"Smithy is the interface design language used by AWS services. smithy-rs allows users to generate a Rust client for any Smithy based service (pending protocol support), including those outside of AWS.","breadcrumbs":"Design FAQ » What is Smithy?","id":"11","title":"What is Smithy?"},"110":{"body":"Fluent clients currently keep a handle to a single Smithy client, which is a wrapper around the underlying connector. When constructing operation builders, this handle is Arc cloned and given to the new builder instances so that their send() calls can initiate a request. The generated fluent client code ends up looking like this: struct Handle { client: aws_smithy_client::Client, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} Functions are generated per operation on the fluent client to gain access to the individual operation builders. For example: pub fn assume_role(&self) -> fluent_builders::AssumeRole { fluent_builders::AssumeRole::new(self.handle.clone())\n} The fluent operation builders ultimately implement send(), which chooses the one and only Smithy client out of the handle to make the request with: pub struct AssumeRole { handle: std::sync::Arc>, inner: crate::input::assume_role_input::Builder,\n} impl AssumeRole where ...{ pub async fn send(self) -> Result> where ... { // Setup code omitted ... // Make the actual request self.handle.client.call(op).await }\n} Smithy clients are constructed from a connector, as shown: let connector = Builder::new() .https() .middleware(...) .build();\nlet client = Client::with_config(connector, Config::builder().build()); The https() method on the Builder constructs the actual Hyper client, and is driven off Cargo features to select the correct TLS implementation. For example: #[cfg(feature = \"rustls\")]\npub fn https() -> Https { let https = hyper_rustls::HttpsConnector::with_native_roots(); let client = hyper::Client::builder().build::<_, SdkBody>(https); // HyperAdapter is a Tower `Service` request -> response connector that just calls the Hyper client crate::hyper_impls::HyperAdapter::from(client)\n}","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » How Clients Work Today","id":"110","title":"How Clients Work Today"},"111":{"body":"Customers need to be able to provide HTTP settings, such as timeouts, for all connectors that the clients use. These should come out of the SharedConfig when it is used. Connector creation also needs to be customizable so that alternate HTTP implementations can be used, or so that a fake implementation can be used for tests. To accomplish this, SharedConfig will have a make_connector member. A customer would configure it as such: let config = some_shared_config_loader() .with_http_settings(my_http_settings) .with_make_connector(|reqs: &MakeConnectorRequirements| { Some(MyCustomConnector::new(reqs)) }) .await; The passed in MakeConnectorRequirements will hold the customer-provided HttpSettings as well as any Smithy-modeled requirements, which will just be HttpVersion for now. The MakeConnectorRequirements struct will be marked non_exhaustive so that new requirements can be added to it as the SDK evolves. A default make_connector implementation would be provided that creates a Hyper connector based on the Cargo feature flags. This might look something like this: #[cfg(feature = \"rustls\")]\npub fn default_connector(reqs: &HttpRequirements) -> HyperAdapter { let https = hyper_rustls::HttpsConnector::with_native_roots(); let mut builder = hyper::Client::builder(); builder = configure_settings(builder, &reqs.http_settings); if let Http2 = &reqs.http_version { builder = builder.http2_only(true); } HyperAdapter::from(builder.build::<_, SdkBody>(https))\n} For any given service, make_connector could be called multiple times to create connectors for all required HTTP versions and settings. Note: the make_connector returns an Option since an HTTP version may not be required, but rather, preferred according to a Smithy model. For operations that list out [\"h2\", \"HTTP/1.1\"] as the desired versions, a customer could choose to provide only an HTTP 1 connector, and the operation should still succeed.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Creation Problem","id":"111","title":"Solving the Connector Creation Problem"},"112":{"body":"Each service operation needs to be able to select a connector that meets its requirements best from the customer provided connectors. Initially, the only selection criteria will be the HTTP version, but later when per-operation HTTP settings are implemented, the connector will also need to be keyed off of those settings. Since connector creation is not a cheap process, connectors will need to be cached after they are created. This caching is currently handled by the Handle in the fluent client, which holds on to the Smithy client. This cache needs to be adjusted to: Support multiple connectors, keyed off of the customer provided HttpSettings, and also off of the Smithy modeled requirements. Be lazy initialized. Services that have a mix of Event Stream and non-streaming operations shouldn't create an HTTP/2 client if the customer doesn't intend to use the Event Stream operations that require it. To accomplish this, the Handle will hold a cache that is optimized for many reads and few writes: #[derive(Debug, Hash, Eq, PartialEq)]\nstruct ConnectorKey { http_settings: HttpSettings, http_version: HttpVersion,\n} struct Handle { clients: RwLock, aws_smithy_client::Client>>, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} With how the generics are organized, the connector type will have to be the same between HTTP implementations, but this should be fine since it is generally a thin wrapper around a separate HTTP implementor. For cases where it is not, the custom connector type can host its own dyn Trait solution. The HttpRequirements struct will hold HttpSettings as copy-on-write so that it can be used for cache lookup without having to clone HttpSettings: struct HttpRequirements<'a> { http_settings: Cow<'a, HttpSettings>, http_version: HttpVersion,\n} impl<'a> HttpRequirements<'a> { // Needed for converting a borrowed HttpRequirements into an owned cache key for cache population pub fn into_owned(self) -> HttpRequirements<'static> { Self { http_settings: Cow::Owned(self.http_settings.into_owned()), http_version: self.http_version, } }\n} With the cache established, each operation needs to be aware of its requirements. The code generator will be updated to store a prioritized list of HttpVersion in the property bag in an input's make_operation() method. This prioritized list will come from the Smithy protocol trait's http or eventStreamHttp attribute, depending on the operation. The fluent client will then pull this list out of the property bag so that it can determine which connector to use. This indirection is necessary so that an operation still holds all information needed to make a service call from the Smithy client directly. Note: This may be extended in the future to be more than just HttpVersion, for example, when per-operation HTTP setting overrides are implemented. This doc is not attempting to solve that problem. In the fluent client, this will look as follows: impl AssumeRole where ... { pub async fn send(self) -> Result> where ... { let input = self.create_input()?; let op = input.make_operation(&self.handle.conf)?; // Grab the `make_connector` implementation let make_connector = self.config.make_connector(); // Acquire the prioritized HttpVersion list let http_versions = op.properties().get::(); // Make the actual request (using default HttpSettings until modifying those is implemented) let client = self.handle .get_or_create_client(make_connector, &default_http_settings(), &http_versions) .await?; client.call(op).await }\n} If an operation requires a specific protocol version, and if the make_connection implementation can't provide that it, then the get_or_create_client() function will return SdkError::ConstructionFailure indicating the error.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Selection Problem","id":"112","title":"Solving the Connector Selection Problem"},"113":{"body":"Create HttpVersion in aws-smithy-http with Http1_1 and Http2 Refactor existing https() connector creation functions to take HttpVersion Add make_connector to SharedConfig, and wire up the https() functions as a default Create HttpRequirements in aws-smithy-http Implement the connector cache on Handle Implement function to calculate a minimum required set of HTTP versions from a Smithy model in the code generator Update the make_operation code gen to put an HttpVersionList into the operation property bag Update the fluent client send() function code gen grab the HTTP version list and acquire the correct connector with it Add required defaulting for models that don't set the optional http and eventStreamHttp protocol trait attributes","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Changes Checklist","id":"113","title":"Changes Checklist"},"114":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Several AWS services allow for presigned requests in URL form, which is described well by S3's documentation on authenticating requests using query parameters . This doc establishes the customer-facing API for creating these presigned URLs and how they will be implemented in a generic fashion in the SDK codegen.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » RFC: API for Presigned URLs","id":"114","title":"RFC: API for Presigned URLs"},"115":{"body":"To differentiate between the clients that are present in the generated SDK today, the following terms will be used throughout this doc: Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Terminology","id":"115","title":"Terminology"},"116":{"body":"Today, presigned URLs take an expiration time that's not part of the service API. The SDK will make this configurable as a separate struct so that there's no chance of name collisions, and so that additional fields can be added in the future. Fields added later will require defaulting for backwards compatibility. Customers should also be able to set a start time on the presigned URL's expiration so that they can generate URLs that become active in the future. An optional start_time option will be available and default to SystemTime::now(). Construction PresigningConfig can be done with a builder, but a PresigningConfig::expires_in convenience function will be provided to bypass the builder for the most frequent use-case. #[non_exhaustive]\n#[derive(Debug, Clone)]\npub struct PresigningConfig { start_time: SystemTime, expires_in: Duration,\n} #[non_exhaustive]\n#[derive(Debug)]\npub struct Builder { start_time: Option, expires_in: Option,\n} impl Builder { pub fn start_time(self, start_time: SystemTime) -> Self { ... } pub fn set_start_time(&mut self, start_time: Option) { ... } pub fn expires_in(self, expires_in: Duration) -> Self { ... } pub fn set_expires_in(&mut self, expires_in: Option) { ... } // Validates `expires_in` is no greater than one week pub fn build(self) -> Result { ... }\n} impl PresigningConfig { pub fn expires_in(expires_in: Duration) -> PresigningConfig { Self::builder().expires(expires).build().unwrap() } pub fn builder() -> Builder { ... }\n} Construction of PresigningConfig will validate that expires_in is no greater than one week, as this is the longest supported expiration time for SigV4. This validation will result in a panic. It's not inconceivable that PresigningConfig will need additional service-specific parameters as customizations, so it will be code generated with each service rather than living a shared location.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Presigned URL config","id":"116","title":"Presigned URL config"},"117":{"body":"The generated fluent builders for operations that support presigning will have a presigned() method in addition to send() that will return a presigned URL rather than sending the request. For S3's GetObject, the usage of this will look as follows: let config = aws_config::load_config_from_environment().await;\nlet client = s3::Client::new(&config);\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = client.get_object() .bucket(\"example-bucket\") .key(\"example-object\") .presigned(presigning_config) .await?; This API requires a client, and for use-cases where no actual service calls need to be made, customers should be able to create presigned URLs without the overhead of an HTTP client. Once the HTTP Versions RFC is implemented, the underlying HTTP client won't be created until the first service call, so there will be no HTTP client overhead to this approach. In a step away from the general pattern of keeping fluent client capabilities in line with Smithy client capabilities, creating presigned URLs directly from the Smithy client will not be supported. This is for two reasons: The Smithy client is not code generated, so adding a method to do presigning would apply to all operations, but not all operations can be presigned. Presigned URLs are not currently a Smithy concept ( although this may change soon ). The result of calling presigned() is a PresignedRequest, which is a wrapper with delegating functions around http::Request<()> so that the request method and additional signing headers are also made available. This is necessary since there are some presignable POST operations that require the signature to be in the headers rather than the query. Note: Presigning needs to be async because the underlying credentials provider used to sign the request may need to make service calls to acquire the credentials.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Fluent Presigned URL API","id":"117","title":"Fluent Presigned URL API"},"118":{"body":"Even though generating a presigned URL through the fluent client doesn't necessitate an HTTP client, it will be clearer that this is the case by allowing the creation of presigned URLs directly from an input. This would look as follows: let config = aws_config::load_config_from_environment().await;\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = GetObjectInput::builder() .bucket(\"example-bucket\") .key(\"example-bucket\") .presigned(&config, presigning_config) .await?; Creating the URL through the input will exercise the same code path as creating it through the client, but it will be more apparent that the overhead of a client isn't present.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Input Presigned URL API","id":"118","title":"Input Presigned URL API"},"119":{"body":"From an SDK's perspective, the following are required to make a presigned URL: Valid request input Endpoint Credentials to sign with Signing implementation The AWS middleware provides everything except the request, and the request is provided as part of the fluent builder API. The generated code needs to be able to run the middleware to fully populate a request property bag, but not actually dispatch it. The expires_in value from the presigning config needs to be piped all the way through to the signer. Additionally, the SigV4 signing needs to adjusted to do query param signing, which is slightly different than its header signing. Today, request dispatch looks as follows: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls send(). send(): Builds the final input struct, and then calls its make_operation() method with the stored config to create a Smithy Operation. Calls the underlying Smithy client with the operation. The Smithy client constructs a Tower Service with AWS middleware and a dispatcher at the bottom, and then executes it. The middleware acquire and add required signing parameters (region, credentials, endpoint, etc) to the request property bag. The SigV4 signing middleware signs the request by adding HTTP headers to it. The dispatcher makes the actual HTTP request and returns the response all the way back up the Tower. Presigning will take advantage of a lot of these same steps, but will cut out the Operation and replace the dispatcher with a presigned URL generator: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls presigned(). presigned(): Builds the final input struct, calls the make_operation() method with the stored config, and then extracts the request from the operation (discarding the rest). Mutates the OperationSigningConfig in the property bag to: Change the signature_type to HttpRequestQueryParams so that the signer runs the correct signing logic. Set expires_in to the value given by the customer in the presigning config. Constructs a Tower Service with AwsMiddleware layered in, and a PresignedUrlGeneratorLayer at the bottom. Calls the Tower Service and returns its result The AwsMiddleware will sign the request. The PresignedUrlGeneratorLayer directly returns the request since all of the work is done by the middleware. It should be noted that the presigned() function above is on the generated input struct, so implementing this for the input API is identical to implementing it for the fluent client. All the code for the new make_request() is already in the existing make_operation() and will just need to be split out.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Behind the scenes","id":"119","title":"Behind the scenes"},"12":{"body":"Compilation time: Although it's possible to use cargo features to conditionally compile individual services, we decided that this added significant complexity to the generated code. In Rust the \"unit of compilation\" is a Crate, so by using smaller crates we can get better compilation parallelism. Furthermore, ecosystem services like docs.rs have an upper limit on the maximum amount of time required to build an individual crate—if we packaged the entire SDK as a single crate, we would quickly exceed this limit. Versioning: It is expected that over time we may major-version-bump individual services. New updates will be pushed for some AWS service nearly every day. Maintaining separate crates allows us to only increment versions for the relevant pieces that change. See Independent Crate Versioning for more info.","breadcrumbs":"Design FAQ » Why is there one crate per service?","id":"12","title":"Why is there one crate per service?"},"120":{"body":"AWS models don't currently have any information about which operations can be presigned. To work around this, the Rust SDK will create a synthetic trait to model presigning with, and apply this trait to known presigned operations via customization. The code generator will look for this synthetic trait when creating the fluent builders and inputs to know if a presigned() method should be added.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Modeling Presigning","id":"120","title":"Modeling Presigning"},"121":{"body":"If a presignable operation input has a member named presigned, then there will be a name collision with the function to generate a presigned URL. To mitigate this, RustReservedWords will be updated to rename the presigned member to presigned_value similar to how send is renamed .","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Avoiding name collision","id":"121","title":"Avoiding name collision"},"122":{"body":"Update aws-sigv4 to support query param signing Create PresignedOperationSyntheticTrait Customize models for known presigned operations Create PresigningConfig and its builder Implement PresignedUrlGeneratorLayer Create new AWS codegen decorator to: Add new presigned() method to input code generator Add new presigned() method to fluent client generator Update RustReservedWords to reserve presigned() Add integration test to S3 Add integration test to Polly Add examples for using presigning for: S3 GetObject and PutObject Polly SynthesizeSpeech","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Changes Checklist","id":"122","title":"Changes Checklist"},"123":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. It is not currently possible for users of the SDK to configure a client's maximum number of retry attempts. This RFC establishes a method for users to set the number of retries to attempt when calling a service and would allow users to disable retries entirely. This RFC would introduce breaking changes to the retry module of the aws-smithy-client crate.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » RFC: Retry Behavior","id":"123","title":"RFC: Retry Behavior"},"124":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. Standard retry behavior : The standard set of retry rules across AWS SDKs. This mode includes a standard set of errors that are retried, and support for retry quotas. The default maximum number of attempts with this mode is three, unless max_attempts is explicitly configured. Adaptive retry behavior : Adaptive retry mode dynamically limits the rate of AWS requests to maximize success rate. This may be at the expense of request latency. Adaptive retry mode is not recommended when predictable latency is important. Note: supporting the \"adaptive\" retry behavior is considered outside the scope of this RFC","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Terminology","id":"124","title":"Terminology"},"125":{"body":"This RFC will demonstrate (with examples) the following ways that Users can set the maximum number of retry attempts: By calling the Config::retry_config(..) or Config::disable_retries() methods when building a service-specific config By calling the Config::retry_config(..) or Config::disable_retries() methods when building a shared config By setting the AWS_MAX_ATTEMPTS environment variable The above list is in order of decreasing precedence e.g. setting maximum retry attempts with the max_attempts builder method will override a value set by AWS_MAX_ATTEMPTS. The default number of retries is 3 as specified in the AWS SDKs and Tools Reference Guide .","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Configuring the maximum number of retries","id":"125","title":"Configuring the maximum number of retries"},"126":{"body":"Here's an example app that logs your AWS user's identity use aws_sdk_sts as sts; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Then, in your terminal: # Set the env var before running the example program\nexport AWS_MAX_ATTEMPTS=5\n# Run the example program\ncargo run","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Setting an environment variable","id":"126","title":"Setting an environment variable"},"127":{"body":"Here's an example app that creates a shared config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let config = aws_config::from_env().retry_config(retry_config).load().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on an AWS shared config","id":"127","title":"Calling a method on an AWS shared config"},"128":{"body":"Here's an example app that creates a service-specific config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let sts_config = sts::config::Config::from(&config).retry_config(retry_config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on service-specific config","id":"128","title":"Calling a method on service-specific config"},"129":{"body":"Here's an example app that creates a shared config that disables retries and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::config::Config; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::from_env().disable_retries().load().await; let sts_config = sts::config::Config::from(&config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Retries can also be disabled by explicitly passing the RetryConfig::NoRetries enum variant to the retry_config builder method: use aws_sdk_sts as sts;\nuse aws_types::retry_config::RetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts_config = sts::config::Config::from(&config).retry_config(RetryConfig::NoRetries).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Disabling retries","id":"129","title":"Disabling retries"},"13":{"body":"Compilation time: serde makes heavy use of several crates (proc-macro2, quote, and syn) that are very expensive to compile. Several service crates are already quite large and adding a serde dependency would increase compile times beyond what we consider acceptable. When we last checked, adding serde derives made compilation 23% slower. Misleading results: We can't use serde for serializing requests to AWS or deserializing responses from AWS because both sides of that process would require too much customization. Adding serialize/deserialize impls for operations has the potential to confuse users when they find it doesn't actually capture all the necessary information (like headers and trailers) sent in a request or received in a response. In the future, we may add serde support behind a feature gate. However, we would only support this for operation Input and Output structs with the aim of making SDK-related tests easier to set up and run.","breadcrumbs":"Design FAQ » Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?","id":"13","title":"Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?"},"130":{"body":"Currently, when users want to send a request, the following occurs: The user creates either a shared config or a service-specific config The user creates a fluent client for the service they want to interact with and passes the config they created. Internally, this creates an AWS client with a default retry policy The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy After this change, the process will work like this: The user creates either a shared config or a service-specific config If AWS_MAX_ATTEMPTS is set to zero, this is invalid and we will log it with tracing::warn. However, this will not error until a request is made If AWS_MAX_ATTEMPTS is 1, retries will be disabled If AWS_MAX_ATTEMPTS is greater than 1, retries will be attempted at most as many times as is specified If the user creates the config with the .disable_retries builder method, retries will be disabled If the user creates the config with the retry_config builder method, retry behavior will be set according to the RetryConfig they passed The user creates a fluent client for the service they want to interact with and passes the config they created Provider precedence will determine what retry behavior is actually set, working like how Region is set The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy These changes will be made in such a way that they enable us to add the \"adaptive\" retry behavior at a later date without introducing a breaking change.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Behind the scenes","id":"130","title":"Behind the scenes"},"131":{"body":"Create new Kotlin decorator RetryConfigDecorator Based on RegionDecorator.kt This decorator will live in the codegen project because it has relevance outside the SDK Breaking changes: Rename aws_smithy_client::retry::Config to StandardRetryConfig Rename aws_smithy_client::retry::Config::with_max_retries method to with_max_attempts in order to follow AWS convention Passing 0 to with_max_attempts will panic with a helpful, descriptive error message Create non-exhaustive aws_types::retry_config::RetryConfig enum wrapping structs that represent specific retry behaviors A NoRetry variant that disables retries. Doesn't wrap a struct since it doesn't need to contain any data A Standard variant that enables the standard retry behavior. Wraps a StandardRetryConfig struct. Create aws_config::meta::retry_config::RetryConfigProviderChain Create aws_config::meta::retry_config::ProvideRetryConfig Create EnvironmentVariableMaxAttemptsProvider struct Setting AWS_MAX_ATTEMPTS=0 and trying to load from env will panic with a helpful, descriptive error message Add retry_config method to aws_config::ConfigLoader Update AwsFluentClientDecorator to correctly configure the max retry attempts of its inner aws_hyper::Client based on the passed-in Config Add tests Test that setting retry_config to 1 disables retries Test that setting retry_config to n limits retries to n where n is a non-zero integer Test that correct precedence is respected when overriding retry behavior in a service-specific config Test that correct precedence is respected when overriding retry behavior in a shared config Test that creating a config from env if AWS_MAX_ATTEMPTS=0 will panic with a helpful, descriptive error message Test that setting invalid max_attempts=0 with a StandardRetryConfig will panic with a helpful, descriptive error message","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Changes checklist","id":"131","title":"Changes checklist"},"132":{"body":"Status: RFC The Rust Smithy Framework is a full-fledged service framework whose main responsibility is to handle request lifecycles from beginning to end. It takes care of input de-serialization, operation execution, output serialization, error handling, and provides facilities to fulfill the requirements below.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » RFC: Smithy Rust Service Framework","id":"132","title":"RFC: Smithy Rust Service Framework"},"133":{"body":"","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Requirements","id":"133","title":"Requirements"},"134":{"body":"Server side code is generated from Smithy models and implements operations, input and output structures, and errors defined in the service model.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Smithy model-driven code generation","id":"134","title":"Smithy model-driven code generation"},"135":{"body":"This new framework is built with performance in mind. It refrains from allocating memory when not needed and tries to use a majority of borrowed types, handling their memory lifetimes so that a request body can be stored in memory only once and not cloned if possible. The code is implemented on solid and widely used foundations. It uses Hyper to handle the HTTP requests, the Tokio ecosystem for asynchronous (non-blocking) operations and Tower to implement middleware such as timeouts, rate limiting, retries, and more. CPU intensive operations are scheduled on a separated thread-pool to avoid blocking the event loop. It uses Tokio axum , an HTTP framework built on top of the technologies mentioned above which handles routing, request extraction, response building, and workers lifecycle. Axum is a relatively thin layer on top of Hyper and adds very little overhead, so its performance is comparable to Hyper. The framework should allow customers to use the built-in HTTP server or select other transport implementations that can be more performant or better suited than HTTP for their use case.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Performance","id":"135","title":"Performance"},"136":{"body":"We want to deliver an extensible framework that can plugin components possibly during code generation and at runtime for specific scenarios that cannot be covered during generation. These components are developed using a standard interface provided by the framework itself.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Extensibility","id":"136","title":"Extensibility"},"137":{"body":"Being able to report and trace the status of the service is vital for the success of any product. The framework is integrated with tracing and allows non-blocking I/O through the asynchronous tracing appender . Metrics and logging are built with extensibility in mind, allowing customers to plug their own handlers following a well defined interface provided by the framework.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Observability","id":"137","title":"Observability"},"138":{"body":"Client generation is deferred to the various Smithy implementations.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Client generation","id":"138","title":"Client generation"},"139":{"body":"Benchmarking the framework is key and customers can't use anything that compromises the fundamental business objectives of latency and performance.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Benchmarking","id":"139","title":"Benchmarking"},"14":{"body":"The main question to ask yourself in this case is \"is this new behavior relevant to all services or is it only relevant to some services?\" If the behavior is relevant to all services: Behavior like this should be defined as a middleware. Behavior like this is often AWS-specific and may not be relevant to non-AWS smithy clients. Middlewares are defined outside of codegen. One example of behavior that should be defined as a middleware is request signing because all requests to AWS services must be signed. If the behavior is only relevant to some services/depends on service model specifics: Behavior like this should be defined within make_operation. Avoid defining AWS-specific behavior within make_operation. One example of behavior that should be defined in make_operation is checksum validation because only some AWS services have APIs that support checksum validation. \"Wait a second\" I hear you say, \"checksum validation is part of the AWS smithy spec, not the core smithy spec. Why is that behavior defined in make_operation?\" The answer is that that feature only applies to some operations and we don't want to codegen a middleware that only supports a subset of operations for a service.","breadcrumbs":"Design FAQ » I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?","id":"14","title":"I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?"},"140":{"body":"The generated service code is responsible for validating the model constraints of input structures.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Model validation","id":"140","title":"Model validation"},"141":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Currently, all services use a centralized AwsMiddleware that is defined in the (poorly named) aws-hyper crate. This poses a number of long term risks and limitations: When creating a Smithy Client directly for a given service, customers are forced to implicitly assume that the service uses stock AwsMiddleware. This prevents us from ever changing the middleware stack for a service in the future. It is impossible / impractical in the current situation to alter the middleware stack for a given service. For services like S3, we will almost certainly want to customize endpoint middleware in a way that is currently impossible. In light of these limitations, this RFC proposes moving middleware into each generated service. aws-inlineable will be used to host and test the middleware stack. Each service will then define a public middleware module containing their middleware stack.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » RFC: Service-specific middleware","id":"141","title":"RFC: Service-specific middleware"},"142":{"body":"Middleware : A tower layer that augments operation::Request -> operation::Response for things like signing and endpoint resolution. Aws Middleware : A specific middleware stack that meets the requirements for AWS services. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Terminology","id":"142","title":"Terminology"},"143":{"body":"Currently, AwsMiddleware is defined in aws-hyper. As part of this change, an aws-inlineable dependency will be added containing code that is largely identical. This will be exposed in a public middleware module in all generated services. At some future point, we could even expose a baseline set of default middleware for whitelabel Smithy services to make them easier to use out-of-the-box. The ClientGenerics parameter of the AwsFluentClientGenerator will be updated to become a RuntimeType, enabling loading the type directly. This has the advantage of making it fairly easy to do per-service middleware stacks since we can easily configure AwsFluentClientGenerator to insert different types based on the service id.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Detailed Design","id":"143","title":"Detailed Design"},"144":{"body":"Move aws-hyper into aws-inlineable. Update comments as needed including with a usage example about how customers can augment it. Refactor ClientGenerics to contain a RuntimeType instead of a string and configure. Update AwsFluentClientDecorator. Update all code and examples that use aws-hyper to use service-specific middleware. Push an updated README to aws-hyper deprecating the package, explaining what happened. Do not yank previous versions since those will be relied on by older SDK versions.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Changes Checklist","id":"144","title":"Changes Checklist"},"145":{"body":"Status: Implemented in smithy-rs#986 and aws-sdk-rust#351 At the time of writing, the aws-sdk-rust repository is used exclusively for the entire release process of both the Rust runtime crates from smithy-rs as well as the AWS runtime crates and the AWS SDK. This worked well when smithy-rs was only used for the AWS SDK, but now that it's also used for server codegen, there are issues around publishing the server-specific runtime crates since they don't belong to the SDK. This RFC proposes a new split-release process so that the entire smithy-rs runtime can be published separately before the AWS SDK is published.","breadcrumbs":"RFCs » RFC-0007: Split release process » RFC: Split Release Process","id":"145","title":"RFC: Split Release Process"},"146":{"body":"Smithy Runtime Crate : A crate that gets published to crates.io and supports the code generated by smithy-rs. These crates don't provide any SDK-only functionality. These crates can support client and/or server code, and clients or servers may use only a subset of them. AWS Runtime Crate : A crate of SDK-specific code that supports the code generated by the aws/codegen module in smithy-rs. These also get published to crates.io. Publish-ready Bundle : A build artifact that is ready to publish to crates.io without additional steps (such as running the publisher tool's fix-manifests subcommand). Publishing one group of crates before another is not considered an additional step for this definition. Releaser : A developer, automated process, or combination of the two that performs the actual release.","breadcrumbs":"RFCs » RFC-0007: Split release process » Terminology","id":"146","title":"Terminology"},"147":{"body":"At a high level, the requirements are: publish from both smithy-rs and aws-sdk-rust while preserving our current level of confidence in the quality of the release. This can be enumerated as: All Smithy runtime crates must be published together from smithy-rs AWS runtime crates and the SDK must be published together from aws-sdk-rust CI on smithy-rs must give confidence that the Smithy runtime crates, AWS runtime crates, and SDK are all at the right quality bar for publish. CI on the aws-sdk-rust repository must give confidence that the AWS SDK and its runtime crates are at the right quality bar for publish. To do this successfully, it must run against the exact versions of the Smithy runtime crates the code was generated against both before AND after they have been published to crates.io .","breadcrumbs":"RFCs » RFC-0007: Split release process » Requirements","id":"147","title":"Requirements"},"148":{"body":"The publish process to crates.io relied on copying all the Smithy runtime crates into the final aws-sdk-rust repository. Overall, the process looked as follows: smithy-rs generates a complete aws-sdk-rust source bundle at CI time The releaser copies the generated bundle over to aws-sdk-rust The releaser runs the publisher fix-manifests subcommand to correct the Cargo.toml files generated by smithy-rs The aws-sdk-rust CI performs one last pass on the code to verify it's sound The releaser runs the publisher publish subcommand to push all the crates up to crates.io","breadcrumbs":"RFCs » RFC-0007: Split release process » Background: How Publishing Worked Before","id":"148","title":"Background: How Publishing Worked Before"},"149":{"body":"CI in smithy-rs will be revised to generate two separate build artifacts where it generates just an SDK artifact previously. Now, it will have two build targets that get executed from CI to generate these artifacts: rust-runtime:assemble - Generates a publish-ready bundle of Smithy runtime crates. aws:sdk:assemble - Generates a publish-ready bundle of AWS runtime crates, SDK crates, and just the Smithy runtime crates that are used by the SDK. The aws-sdk-rust repository will have a new next branch that has its own set of CI workflows and branch protection rules. The releaser will take the aws:sdk:assemble artifact and apply it directly to this next branch as would have previously been done against the main branch. The main branch will continue to have the same CI as next. When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next (this will be automated in the future) Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main Tag release for main Publish SDK with publisher tool The server team can then download the rust-runtime:assemble build artifact for the tagged release in smithy-rs, and publish the aws-smithy-http-server crate from there.","breadcrumbs":"RFCs » RFC-0007: Split release process » Proposed Solution","id":"149","title":"Proposed Solution"},"15":{"body":"The transport layer of smithy-rs and the Rust SDK. Our goal is support customers to bring their own HTTP stack and runtime.","breadcrumbs":"Transport » Transport","id":"15","title":"Transport"},"150":{"body":"It should be difficult to accidentally publish a locally built set of crates. To add friction to this, the smithy-rs build process will look for the existence of the GITHUB_ACTIONS=true environment variable. If this environment variable is not set, then it will pass a flag to the Rust codegen plugin that tells it to emit a publish = false under [package] in the generated Cargo.toml. This could be easily circumvented, but the goal is to reduce the chances of accidentally publishing crates rather than making it impossible.","breadcrumbs":"RFCs » RFC-0007: Split release process » Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI","id":"150","title":"Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI"},"151":{"body":"","breadcrumbs":"RFCs » RFC-0007: Split release process » Alternatives Considered","id":"151","title":"Alternatives Considered"},"152":{"body":"This approach is similar to the proposed solution, except that the SDK would not publish the Smithy runtime crates. The aws-sdk-rust/main branch would have a small tweak to its CI so that the SDK is tested against the Smithy runtime crates that are published to crates.io This CI process would look as follows: Shallow clone aws-sdk-rust with the revision being tested Run a script to remove the path argument for the Smithy runtime crate dependencies for every crate in aws-sdk-rust. For example, aws-smithy-types = { version = \"0.33.0\", path = \"../aws-smithy-types\" } Would become: aws-smithy-types = { version = \"0.33.0\" } Run the tests as usual When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next Wait for successful CI in aws-sdk-rust/next Download the Smithy runtime crates build artifact and publish it to crates.io Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main (this time actually running against the crates.io Smithy runtime crates) Tag release for main Publish SDK with publisher tool","breadcrumbs":"RFCs » RFC-0007: Split release process » Publish Smithy runtime crates from smithy-rs build artifacts","id":"152","title":"Publish Smithy runtime crates from smithy-rs build artifacts"},"153":{"body":"This approach is similar to the previous alternative, except that the aws-sdk-rust repository won't have a snapshot of the Smithy runtime crates, and an additional step needs to be performed during CI for the next branch so that it looks as follows: Make a shallow clone of aws-sdk-rust/next Retrieve the smithy-rs commit hash that was used to generate the SDK from a file that was generated alongside the rest of the build artifacts from smithy-rs and copied into aws-sdk-rust. Make a shallow clone of smithy-rs at the correct commit hash Use a script to add a [patch] section to all the AWS SDK crates to point to the Smithy runtime crates from the local clone of smithy-rs. For example: # The dependencies section is left alone, but is here for context\n[dependencies]\n# Some version of aws-smithy-types that isn't on crates.io yet, referred to as `` below\naws-smithy-types = \"\" # This patch section gets added by the script\n[patch.crates-io]\naws-smithy-types = { version = \"\", path = \"path/to/local/smithy-rs/rust-runtime/aws-smithy-types\"} Run CI as normal. Note: smithy-rs would need to do the same patching in CI as aws-sdk-rust/next since the generated SDK would not have path dependencies for the Smithy runtime crates (since they are a publish-ready bundle intended for landing in aws-sdk-rust). The script that does this patching could live in smithy-rs and be reused by aws-sdk-rust. The disadvantage of this approach is that a customer having an issue with the current release wouldn't be able to get a fix sooner by patching their own project's crate manifest to use the aws-sdk-rust/next branch before a release is cut since their project wouldn't be able to find the unreleased Smithy runtime crates.","breadcrumbs":"RFCs » RFC-0007: Split release process » Keep Smithy runtime crates in smithy-rs","id":"153","title":"Keep Smithy runtime crates in smithy-rs"},"154":{"body":"In smithy-rs: Move publisher tool from aws-sdk-rust into smithy-rs Modify aws:sdk:assemble target to run the publisher fix-manifests subcommand Add rust-runtime:assemble target that generates publish-ready Smithy runtime crates Add CI step to create Smithy runtime bundle artifact Add GITHUB_ACTIONS=true env var check for setting the publish flag in generated AND runtime manifests Revise publisher tool to publish from an arbitrary directory In aws-sdk-rust: Implement CI for the aws-sdk-rust/next branch Remove the publisher tool Update release process documentation","breadcrumbs":"RFCs » RFC-0007: Split release process » Changes Checklist","id":"154","title":"Changes Checklist"},"155":{"body":"Status: Implemented Smithy models paginated responses . Customers of Smithy generated code & the Rust SDK will have an improved user experience if code is generated to support this. Fundamentally, paginators are a way to automatically make a series of requests with the SDK, where subsequent requests automatically forward output from the previous responses. There is nothing a paginator does that a user could not do manually, they merely simplify the common task of interacting with paginated APIs. **Specifically, a paginator will resend the orginal request but with inputToken updated to the value of the previous outputToken. In this RFC, we propose modeling paginated data as a Stream of output shapes. When an output is paginated, a paginate() method will be added to the high level builder An Paginator struct will be generated into the paginator module. If items is modeled, paginate().items() will be added to produce the paginated items. PaginatorItems will be generated into the paginator module. The Stream trait enables customers to use a number of abstractions including simple looping, and collect()ing all data in a single call. A paginator will resend the original input, but with the field marked inputToken to the value of outputToken in the previous output. Usage example: let paginator = client .list_tables() .paginate() .items() .page_size(10) .send() .await;\nlet tables: Result, _ > = paginator.collect().await; Paginators are lazy and only retrieve pages when polled by a client.","breadcrumbs":"RFCs » RFC-0008: Paginators » Summary","id":"155","title":"Summary"},"156":{"body":"Paginators will be generated into the paginator module of service crates. Currently, paginators are not feature gated, but this could be considered in the future. A paginator struct captures 2 pieces of data: // dynamodb/src/paginator.rs\nstruct ListTablesPaginator { // holds the low-level client and configuration handle: Arc>, // input builder to construct the actual input on demand input: ListTablesInputBuilder\n} In addition to the basic usage example above, when pageSize is modeled, customers can specify the page size during pagination: let mut tables = vec![];\nlet mut pages = client .list_tables() .paginate() .page_size(20) .send();\nwhile let Some(next_page) = pages.try_next().await? { // pages of 20 items requested from DynamoDb tables.extend(next_page.table_names.unwrap_or_default().into_iter());\n} Paginators define a public method send(). This method returns impl Stream. This uses FnStream defined in the aws-smithy-async crate which enables demand driven execution of a closure. A rendezvous channel is used which will block on send until demand exists. When modeled by Smithy, page_size which automatically sets the appropriate page_size parameter and items() which returns an automatically flattened paginator are also generated. Note : page_size directly sets the modeled parameter on the internal builder. This means that a value set for page size will override any previously set value for that field. // Generated paginator for ListTables\nimpl ListTablesPaginator\n{ /// Set the page size pub fn page_size(mut self, limit: i32) -> Self { self.builder.limit = Some(limit); self } /// Create a flattened paginator /// /// This paginator automatically flattens results using `table_names`. Queries to the underlying service /// are dispatched lazily. pub fn items(self) -> crate::paginator::ListTablesPaginatorItems { crate::paginator::ListTablesPaginatorItems(self) } /// Create the pagination stream /// /// _Note:_ No requests will be dispatched until the stream is used (eg. with [`.next().await`](tokio_stream::StreamExt::next)). pub async fn send( self, ) -> impl tokio_stream::Stream< Item = std::result::Result< crate::output::ListTablesOutput, aws_smithy_http::result::SdkError, >, > + Unpin { // Move individual fields out of self for the borrow checker let builder = self.builder; let handle = self.handle; fn_stream::FnStream::new(move |tx| { Box::pin(async move { // Build the input for the first time. If required fields are missing, this is where we'll produce an early error. let mut input = match builder.build().map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(input) => input, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; loop { let op = match input.make_operation(&handle.conf).await.map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(op) => op, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; let resp = handle.client.call(op).await; // If the input member is None or it was an error let done = match resp { Ok(ref resp) => { input.exclusive_start_table_name = crate::lens::reflens_structure_crate_output_list_tables_output_last_evaluated_table_name(resp).cloned(); input.exclusive_start_table_name.is_none() } Err(_) => true, }; if let Err(_) = tx.send(resp).await { // receiving end was dropped return; } if done { return; } } }) }) }\n} On Box::pin : The stream returned by AsyncStream does not implement Unpin. Unfortunately, this makes iteration require an invocation of pin_mut! and generates several hundred lines of compiler errors. Box::pin seems a worthwhile trade off to improve the user experience. On the + Unpin bound : Because auto-traits leak across impl Trait boundaries, + Unpin prevents accidental regressions in the generated code which would break users. On the crate::reflens::... : We use LensGenerator.kt to generate potentially complex accessors to deeply nested fields.","breadcrumbs":"RFCs » RFC-0008: Paginators » Details","id":"156","title":"Details"},"157":{"body":"The builders generated by ergonomic clients will gain the following method, if they represent an operation that implements the Paginated trait: /// Create a paginator for this request\n///\n/// Paginators are used by calling [`send().await`](crate::paginator::ListTablesPaginator::send) which returns a [`Stream`](tokio_stream::Stream).\npub fn paginate(self) -> crate::paginator::ListTablesPaginator { crate::paginator::ListTablesPaginator::new(self.handle, self.inner)\n}","breadcrumbs":"RFCs » RFC-0008: Paginators » Updates to ergonomic clients","id":"157","title":"Updates to ergonomic clients"},"158":{"body":"","breadcrumbs":"RFCs » RFC-0008: Paginators » Discussion Areas","id":"158","title":"Discussion Areas"},"159":{"body":"Calling send().await is not necessary from an API perspective—we could have the paginators impl-stream directly. However, it enables using impl Trait syntax and also makes the API consistent with other SDK APIs.","breadcrumbs":"RFCs » RFC-0008: Paginators » On send().await","id":"159","title":"On send().await"},"16":{"body":"aws-hyper assembles a middleware stack with tower. It provides a way to use an HTTP client other than Hyper, however, it currently has a hard dependency on Hyper & Tokio. hyper::Body is being used directly as the body implementation for responses.","breadcrumbs":"Transport » Where we are today","id":"16","title":"Where we are today"},"160":{"body":"Currently, the core trait we use is tokio_stream::Stream. This is a re-export from futures-util. There are a few other choices: Re-export Stream from tokio_stream. Use futures_util directly","breadcrumbs":"RFCs » RFC-0008: Paginators » On tokio_stream::Stream","id":"160","title":"On tokio_stream::Stream"},"161":{"body":"Currently, the paginators forward the generics from the client (C, M, R) along with their fairly annoying bounds. However, if we wanted to we could simplify this and erase all the generics when the paginator was created. Since everything is code generated, there isn't actually much duplicated code in the generator, just in the generated code.","breadcrumbs":"RFCs » RFC-0008: Paginators » On Generics","id":"161","title":"On Generics"},"162":{"body":"Create and test FnStream abstraction Generate page-level paginators Generate .items() paginators Generate doc hints pointing people to paginators Integration test using mocked HTTP traffic against a generated paginator for a real service Integration test using real traffic","breadcrumbs":"RFCs » RFC-0008: Paginators » Changes Checklist","id":"162","title":"Changes Checklist"},"163":{"body":"Status: Implemented Currently, the AWS Rust SDK's examples are duplicated across awslabs/aws-sdk-rust , awslabs/smithy-rs , and awsdocs/aws-doc-sdk-examples . The smithy-rs repository was formerly the source of truth for examples, with the examples being copied over to aws-sdk-rust as part of the release process, and examples were manually copied over to aws-doc-sdk-examples so that they could be included in the developer guide. Now that the SDK is more stable with less frequent breaking changes, the aws-doc-sdk-examples repository can become the source of truth so long as the examples are tested against smithy-rs and continue to be copied into aws-sdk-rust.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » RFC: Examples Consolidation","id":"163","title":"RFC: Examples Consolidation"},"164":{"body":"Examples are authored and maintained in aws-doc-sdk-examples Examples are no longer present in smithy-rs CI in smithy-rs checks out examples from aws-doc-sdk-examples and builds them against the generated SDK. Success for this CI job is optional for merging since there can be a time lag between identifying that examples are broken and fixing them. Examples must be copied into aws-sdk-rust so that the examples for a specific version of the SDK can be easily referenced. Examples must be verified in aws-sdk-rust prior to merging into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Requirements","id":"164","title":"Requirements"},"165":{"body":"A CI job will be added to smithy-rs that: Depends on the CI job that generates the full AWS SDK Checks out the aws-doc-sdk-examples repository Modifies example Cargo.toml files to point to the newly generated AWS SDK crates Runs cargo check on each example This job will not be required to pass for branch protection, but will let us know that examples need to be updated before the next release.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Example CI in smithy-rs","id":"165","title":"Example CI in smithy-rs"},"166":{"body":"The auto-sync job that copies generated code from smithy-rs into the aws-sdk-rust/next branch will be updated to check out the aws-doc-sdk-examples repository and copy the examples into aws-sdk-rust. The example Cargo.toml files will also be updated to point to the local crate paths as part of this process. The aws-sdk-rust CI already requires examples to compile, so merging next into main, the step required to perform a release, will be blocked until the examples are fixed. In the event the examples don't work on the next branch, developers and example writers will need to be able to point the examples in aws-doc-sdk-examples to the generated SDK in next so that they can verify their fixes. This can be done by hand, or a tool can be written to automate it if a significant number of examples need to be fixed.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Auto-sync to aws-sdk-rust from smithy-rs changes","id":"166","title":"Auto-sync to aws-sdk-rust from smithy-rs changes"},"167":{"body":"There are a couple of risks with this approach: Risk: Examples are broken and an urgent fix needs to be released. Possible mitigations: Revert the change that broke the examples and then add the urgent fix Create a patch branch in aws-sdk-rust, apply the fix to that based off an older version of smithy-rs with the fix applied, and merge that into main. Risk: A larger project requires changes to examples prior to GA, but multiple releases need to occur before the project completion. Possible mitigations: If the required changes compile against the older SDK, then just make the changes to the examples. Feature gate any incremental new functionality in smithy-rs, and work on example changes on a branch in aws-doc-sdk-examples. When wrapping up the project, remove the feature gating and merge the examples into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Process Risks","id":"167","title":"Process Risks"},"168":{"body":"","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Alternatives","id":"168","title":"Alternatives"},"169":{"body":"Alternatively, the examples could reside in aws-sdk-rust, be referenced from smithy-rs CI, and get copied into aws-doc-sdk-examples for inclusion in the user guide. Pros: Prior to GA, fixing examples after making breaking changes to the SDK would be easier. Otherwise, Cargo.toml files have to be temporarily modified to point to the aws-sdk-rust/next branch in order to make fixes. If a customer discovers examples via the aws-sdk-rust repository rather than via the SDK user guide, then it would be more obvious how to make changes to examples. At time of writing, the examples in the user guide link to the aws-doc-sdk-examples repository, so if the examples are discovered that way, then updating them should already be clear. Cons: Tooling would need to be built to sync examples from aws-sdk-rust into aws-doc-sdk-examples so that they could be incorporated into the user guide. Creates a circular dependency between the aws-sdk-rust and smithy-rs repositories. CI in smithy-rs needs to exercise examples, which would be in aws-sdk-rust, and aws-sdk-rust has its code generated by smithy-rs. This is workable, but may lead to problems later on. The tooling to auto-sync from aws-sdk-rust into aws-doc-sdk-examples will likely cost more than tooling to temporarily update Cargo.toml files to make example fixes (if that tooling is even necessary).","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » aws-sdk-rust as the source of truth","id":"169","title":"aws-sdk-rust as the source of truth"},"17":{"body":"Extend HttpService to add a sleep method. This is required to enable runtimes other than Tokio to define how they should sleep. Replace hyper::Body in responses with SDK Body. For now, SDKBody will probably privately wrap hyper::Body. Merge aws-hyper into aws-http. Tokio becomes an optional feature—When the Tokio feature is opted out the \"fast path\" variants for the connection variants are cfg'd out. By default, customers get a fully baked HTTP stack, but they can opt out of certain features and BYO implementation of HttpService.","breadcrumbs":"Transport » Where we want to go","id":"17","title":"Where we want to go"},"170":{"body":"Add example CI job to smithy-rs Diff examples in smithy-rs and aws-doc-sdk-examples and move desired differences into aws-doc-sdk-examples Apply example fix PRs from aws-sdk-rust into aws-doc-sdk-examples Update smithy-rs CI to copy examples from aws-doc-sdk-examples rather than from smithy-rs Delete examples from smithy-rs","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Changes Checklist","id":"170","title":"Changes Checklist"},"171":{"body":"Status: Accepted Waiters are a convenient polling mechanism to wait for a resource to become available or to be deleted. For example, a waiter could be used to wait for a S3 bucket to be created after a call to the CreateBucket API, and this would only require a small amount of code rather than building out an entire polling mechanism manually. At the highest level, a waiter is a simple polling loop (pseudo-Rust): // Track state that contains the number of attempts made and the previous delay\nlet mut state = initial_state(); loop { // Poll the service let result = poll_service().await; // Classify the action that needs to be taken based on the Smithy model match classify(result) { // If max attempts hasn't been exceeded, then retry after a delay. Otherwise, error. Retry => if state.should_retry() { let delay = state.next_retry(); sleep(delay).await; } else { return error_max_attempts(); } // Otherwise, if the termination condition was met, return the output Terminate(result) => return result, }\n} In the AWS SDK for Rust, waiters can be added without making any backwards breaking changes to the current API. This doc outlines the approach to add them in this fashion, but does NOT examine code generating response classification from JMESPath expressions, which can be left to the implementer without concern for the overall API.","breadcrumbs":"RFCs » RFC-0010: Waiters » RFC: Waiters","id":"171","title":"RFC: Waiters"},"172":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0010: Waiters » Terminology","id":"172","title":"Terminology"},"173":{"body":"Waiters must adhere to the Smithy waiter specification . To summarize: Waiters are specified by the Smithy @waitable trait Retry during polling must be exponential backoff with jitter, with the min/max delay times and max attempts configured by the @waitable trait The SDK's built-in retry needs to be replaced by the waiter's retry since the Smithy model can specify retry conditions that are contrary to the defaults. For example, an error that would otherwise be retried by default might be the termination condition for the waiter. Classification of the response must be code generated based on the JMESPath expression in the model.","breadcrumbs":"RFCs » RFC-0010: Waiters » Requirements","id":"173","title":"Requirements"},"174":{"body":"To invoke a waiter, customers will only need to invoke a single function on the AWS Client. For example, if waiting for a S3 bucket to exist, it would look like the following: // Request bucket creation\nclient.create_bucket() .bucket_name(\"my-bucket\") .send() .await()?; // Wait for it to be created\nclient.wait_until_bucket_exists() .bucket_name(\"my-bucket\") .send() .await?; The call to wait_until_bucket_exists() will return a waiter-specific fluent builder with a send() function that will start the polling and return a future. To avoid name conflicts with other API methods, the waiter functions can be added to the client via trait: pub trait WaitUntilBucketExists { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder;\n} This trait would be implemented for the service's fluent client (which will necessitate making the fluent client's handle field pub(crate)).","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter API","id":"174","title":"Waiter API"},"175":{"body":"A waiter trait implementation will merely return a fluent builder: impl WaitUntilBucketExists for Client { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder { crate::waiter::bucket_exists::Builder::new() }\n} This builder will have a short send() function to kick off the actual waiter implementation: impl Builder { // ... existing fluent builder codegen can be reused to create all the setters and constructor pub async fn send(self) -> Result> { // Builds an input from this builder let input = self.inner.build().map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?; // Passes in the client's handle, which contains a Smithy client and client config crate::waiter::bucket_exists::wait(self.handle, input).await }\n} This wait function needs to, in a loop similar to the pseudo-code in the beginning, convert the given input into an operation, replace the default response classifier on it with a no-retry classifier, and then determine what to do next based on that classification: pub async fn wait( handle: Arc, retry::Standard>>, input: HeadBucketInput,\n) -> Result> { loop { let operation = input .make_operation(&handle.conf) .await .map_err(|err| { aws_smithy_http::result::SdkError::ConstructionFailure(err.into()) })?; // Assume `ClassifyRetry` trait is implemented for `NeverRetry` to always return `RetryKind::Unnecessary` let operation = operation.with_retry_classifier(NeverRetry::new()); let result = handle.client.call(operation).await; match classify_result(&input, result) { AcceptorState::Retry => { // The sleep implementation is available here from `handle.conf.sleep_impl` unimplemented!(\"Check if another attempt should be made and calculate delay time if so\") } AcceptorState::Terminate(output) => return output, } }\n} fn classify_result( input: &HeadBucketInput, result: Result>,\n) -> AcceptorState> { unimplemented!( \"The Smithy model would dictate conditions to check here to produce an `AcceptorState`\" )\n} The retry delay time should be calculated by the same exponential backoff with jitter code that the default RetryHandler uses in aws-smithy-client . This function will need to be split up and made available to the waiter implementations so that just the delay can be calculated.","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter Implementation","id":"175","title":"Waiter Implementation"},"176":{"body":"Codegen fluent builders for waiter input and their send() functions Codegen waiter invocation traits Commonize exponential backoff with jitter delay calculation Codegen wait() functions with delay and max attempts configuration from Smithy model Codegen classify_result() functions based on JMESPath expressions in Smithy model","breadcrumbs":"RFCs » RFC-0010: Waiters » Changes Checklist","id":"176","title":"Changes Checklist"},"177":{"body":"Status: Implemented The AWS SDK for Rust and its supporting Smithy crates need to be published to crates.io so that customers can include them in their projects and also publish crates of their own that depend on them. This doc proposes a short-term solution for publishing to crates.io. This approach is intended to be executed manually by a developer using scripts and an SOP no more than once per week, and should require less than a dev week to implement.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » RFC: Publishing the Alpha SDK to Crates.io","id":"177","title":"RFC: Publishing the Alpha SDK to Crates.io"},"178":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Terminology","id":"178","title":"Terminology"},"179":{"body":"","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Requirements","id":"179","title":"Requirements"},"18":{"body":"The Smithy code generator for Rust (and by extension), the AWS SDK use an Operation abstraction to provide a unified interface for dispatching requests. Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler In the typical case, these configuration options include things like a CredentialsProvider, however, they can also be full middleware layers that will get added by the dispatch stack.","breadcrumbs":"Transport » HTTP Operations » HTTP-based Operations","id":"18","title":"HTTP-based Operations"},"180":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) For now, AWS SDK crates (including aws-config) will maintain a consistent major and minor version number across all services. The latest version of aws-sdk-s3 will always have the same major.minor version as the latest aws-sdk-dynamodb, for example. The patch version is allowed to be different between service crates, but it is unlikely that we will make use of patch versions throughout alpha and dev preview. Smithy runtime crates will have different version numbers from the AWS SDK crates, but will also maintain a consistent major.minor. The pre version tag will be alpha during the Rust SDK alpha, and will be removed once the SDK is in dev preview. During alpha, the major version will always be 0, and the minor will be bumped for all published crates for every release. A later RFC may change the process during dev preview.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Versioning","id":"180","title":"Versioning"},"181":{"body":"Mistakes will inevitably be made, and a mechanism is needed to yank packages while keeping the latest version of the SDK successfully consumable from crates.io. To keep this simple, the entire published batch of crates will be yanked if any crate in that batch needs to be yanked. For example, if 260 crates were published in a batch, and it turns out there's a problem that requires yanking one of them, then all 260 will be yanked. Attempting to do partial yanking will require a lot of effort and be difficult to get right. Yanking should be a last resort.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Yanking","id":"181","title":"Yanking"},"182":{"body":"The following changes will be bundled together as a minor version bump during weekly releases: AWS model updates New features Bug fixes in runtime crates or codegen In exceptional circumstances, a patch version will be issued if the fix doesn't require API breaking changes: CVE discovered in a runtime crate Buggy update to a runtime crate In the event of a CVE being discovered in an external dependency, if the external dependency is internal to a crate, then a patch revision can be issued for that crate to correct it. Otherwise if the CVE is in a dependency that is part of the public API, a minor revision will be issued with an expedited release. For a CVE in generated code, a minor revision will be issued with an expedited release.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Concrete Scenarios","id":"182","title":"Concrete Scenarios"},"183":{"body":"The short-term approach builds off our pre-crates.io weekly release process. That process was the following: Run script to update AWS models Manually update AWS SDK version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for GitHub actions to generate AWS SDK using newly released smithy-rs Check out aws-sdk-rust, delete existing SDK code, unzip generated SDK in place, and update readme Tag aws-sdk-rust To keep things simple: The Smithy runtime crates will have the same smithy-rs version All AWS crates will have the same AWS SDK version patch revisions are exceptional and will be one-off manually published by a developer All runtime crate version numbers in smithy-rs will be locked at 0.0.0-smithy-rs-head. This is a fake version number that gets replaced when generating the SDK. The SDK generator script in smithy-rs will be updated to: Replace Smithy runtime crate versions with the smithy-rs version from aws/sdk/gradle.properties Replace AWS runtime crate versions with AWS SDK version from aws/sdk/gradle.properties Add correct version numbers to all path dependencies in all the final crates that end up in the build artifacts This will result in all the crates having the correct version and manifests when imported into aws-sdk-rust. From there, a script needs to be written to determine crate dependency order, and publish crates (preferably with throttling and retry) in the correct order. This script needs to be able to recover from an interruption part way through publishing all the crates, and it also needs to output a list of all crate versions published together. This crate list will be commented on the release issue so that yanking the batch can be done if necessary. The new release process would be: Run script to update AWS models Manually update both the AWS SDK version and the smithy-rs version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for automation to sync changes to aws-sdk-rust/next Cut a PR to merge aws-sdk-rust/next into aws-sdk-rust/main Tag aws-sdk-rust Run publish script","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Proposal","id":"183","title":"Proposal"},"184":{"body":"Prepare runtime crate manifests for publication to crates.io (https://github.com/awslabs/smithy-rs/pull/755) Update SDK generator to set correct crate versions (https://github.com/awslabs/smithy-rs/pull/755) Write bulk publish script Write bulk yank script Write automation to sync smithy-rs to aws-sdk-rust","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Short-term Changes Checklist","id":"184","title":"Short-term Changes Checklist"},"185":{"body":"Status: RFC During its alpha and dev preview releases, the AWS SDK for Rust adopted a short-term solution for versioning and publishing to crates.io . This doc proposes a long-term versioning strategy that will carry the SDK from dev preview into general availability. This strategy will be implemented in two phases: Dev Preview : The SDK will break with its current version strategy of maintaining consistent major.minor version numbers. Stability and 1.x : This phase begins when the SDK becomes generally available. The major version will be bumped to 1, and backwards breaking changes will no longer be allowed without a major version bump to all crates in the SDK.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » RFC: Independent Crate Versioning","id":"185","title":"RFC: Independent Crate Versioning"},"186":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Terminology","id":"186","title":"Terminology"},"187":{"body":"","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Requirements","id":"187","title":"Requirements"},"188":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) In the new versioning strategy, the minor version number will no longer be coordinated across all SDK and Smithy runtime crates. During phases 1 and 2, the major version will always be 0, and the following scheme will be used: minor: New features Breaking changes Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3: major: Breaking changes minor: Changes that aren't breaking Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3, bumps to the major version must be coordinated across all SDK and runtime crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning","id":"188","title":"Versioning"},"189":{"body":"Since there will no longer be one SDK \"version\", release tags will be dates in YYYY-MM-DD format rather than version numbers. Additionally, the SDK's user agent string will need to include a separate service version number (this requirement has already been implemented).","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Release Identification","id":"189","title":"Release Identification"},"19":{"body":"This section details the flow of a request through the SDK until a response is returned to the user.","breadcrumbs":"Transport » HTTP Operations » Operation Phases","id":"19","title":"Operation Phases"},"190":{"body":"It must be possible to yank an entire release with a single action. The publisher tool must be updated to understand which crate versions were released with a given release tag, and be able to yank all the crates published from that tag.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"190","title":"Yanking"},"191":{"body":"Phase 1 will address the following challenges introduced by uncoordinating the major.minor versions: Tracking of versions associated with a release tag Creation of version bump process for code generated crates Enforcement of version bump process in runtime crates Yanking of versions associated with a release tag","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 1: Dev Preview","id":"191","title":"Phase 1: Dev Preview"},"192":{"body":"A new manifest file will be introduced in the root of aws-sdk-rust named versions.toml that describes all versioning information for any given commit in the repository. In the main branch, the versions.toml in tagged commits will become the source of truth for which crate versions belong to that release, as well as additional metadata that's required for maintaining version process in the future. The special 0.0.0-smithy-rs-head version that is used prior to Phase 1 for maintaining the runtime crate versions will no longer be used (as detailed in Versioning for Runtime Crates ). This format will look as follows: smithy_rs_version = \"\" [aws-smithy-types]\nversion = \"0.50.1\" [aws-config]\nversion = \"0.40.0\" [aws-sdk-s3]\nversion = \"0.89.0\"\nmodel_hash = \"\" # ... The auto-sync tool is responsible for maintaining this file. When it generates a new SDK, it will take the version numbers from runtime crates directly, and it will use the rules from the next section to determine the version numbers for the generated crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Version Tracking","id":"192","title":"Version Tracking"},"193":{"body":"Code generated crates will have their minor version bumped when the version of smithy-rs used to generate them changes, or when model updates with API changes are made. Three pieces of information are required to handle this process: the previously released version number, the smithy-rs version used to generate the code, and the level of model updates being applied. For this last one, if there are multiple model updates that affect only documentation, but then one model update that affects an API, then as a whole they will be considered as affecting an API and require a minor version bump. The previously released version number will be retrieved from crates.io using its API. The smithy-rs version used during code generation will become a build artifact that is saved to versions.toml in aws-sdk-rust . During phase 1, the tooling required to know if a model is a documentation-only change will not be available, so all model changes will result in a minor version bump during this phase. Overall, determining a generated crate's version number looks as follows: flowchart TD start[Generate crate version] --> smithyrschanged{A. smithy-rs changed?} smithyrschanged -- Yes --> minor1[Minor version bump] smithyrschanged -- No --> modelchanged{B. model changed?} modelchanged -- Yes --> minor2[Minor version bump] modelchanged -- No --> keep[Keep current version] A: smithy-rs changed? : Compare the smithy_rs_version in the previous versions.toml with the next versions.toml file, and if the values are different, consider smithy-rs to have changed. B: model changed? : Similarly, compare the model_hash for the crate in versions.toml.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Code Generated (SDK Service) Crates","id":"193","title":"Versioning for Code Generated (SDK Service) Crates"},"194":{"body":"The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with a build step to replace those with a consistent major.minor will be removed. These runtime crates will begin having their actual next version number in the Cargo.toml file in smithy-rs. This introduces a new problem where a developer can forget to bump a runtime crate version, so a method of process enforcement needs to be introduced. This will be done through CI when merging into smithy-rs/main and repeated when merging into aws-sdk-rust/main. The following checks need to be run for runtime crates: flowchart TD A[Check runtime crate] --> B{A. Crate has changed?} B -- Yes --> C{B. Minor bumped?} B -- No --> H{C. Version changed?} C -- Yes --> K[Pass] C -- No --> E{D. Patch bumped?} E -- Yes --> F{E. Semverver passes?} E -- No --> L[Fail] F -- Yes --> D[Pass] F -- No --> G[Fail] H -- Yes --> I[Fail] H -- No --> J[Pass] A: Crate has changed? The crate's source files and manifest will be hashed for the previous version and the next version. If these hashes match, then the crate is considered unchanged. B: Minor bumped? The previous version is compared against the next version to see if the minor version number was bumped. C: Version changed? The previous version is compared against the next version to see if it changed. D: Patch bumped? The previous version is compared against the next version to see if the patch version number was bumped. E: Semverver passes? Runs rust-semverver against the old and new versions of the crate. If semverver fails to run (for example, if it needs to be updated to the latest nightly to succeed), then fail CI saying that either semverver needs maintenance, or that a minor version bump is required. If semverver results in errors, fail CI indicating a minor version bump is required. If semverver passes, then pass CI. When running semverver, the path dependencies of the crate under examination should be updated to be crates.io references if there were no changes in those crates since the last public to crates.io. Otherwise, the types referenced from those crates in the public API will always result in breaking changes since, as far as the Rust compiler is concerned, they are different types originating from separate path-dependency crates. For CI, the aws-sdk-rust/main branch's versions.toml file is the source of truth for the previous release's crate versions and source code.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Runtime Crates","id":"194","title":"Versioning for Runtime Crates"},"195":{"body":"The publisher tool will be updated to read the versions.toml to yank all versions published in a release. This process will look as follows: Take a path to a local clone of the aws-sdk-rust repository Confirm the working tree is currently unmodified and on a release tag. Read versions.toml and print out summary of crates to yank Confirm with user before proceeding Yank crates","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"195","title":"Yanking"},"196":{"body":"Update rust-semverver to a newer nightly that can compile aws-smithy-client Establish initial versions.toml in aws-sdk-rust/main Set version numbers in runtime crates in smithy-rs Update the auto-sync tool to generate versions.toml Create CI tool to check runtime crate version Integrate with smithy-rs/main CI Integrate with aws-sdk-rust/main CI Update CI to verify no older runtime crates are used. For example, if aws-smithy-client is bumped to 0.50.0, then verify no crates (generated or runtime) depend on 0.49.0 or lower. Estimate: 2-4 dev weeks","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Changes Checklist","id":"196","title":"Changes Checklist"},"197":{"body":"When stabilizing to 1.x, the version process will stay the same, but the minor version bumps caused by version bumping runtime crates, updating models, or changing the code generator will be candidate for automatic upgrade per semver. At that point, no further API breaking changes can be made without a major version bump.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 2: Stability and 1.x","id":"197","title":"Phase 2: Stability and 1.x"},"198":{"body":"Status: RFC Adding a callback API to ByteStream and SdkBody will enable developers using the SDK to implement things like checksum validations and 'read progress' callbacks.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » RFC: Callback APIs for ByteStream and SdkBody","id":"198","title":"RFC: Callback APIs for ByteStream and SdkBody"},"199":{"body":"Note that comments starting with '//' are not necessarily going to be included in the actual implementation and are intended as clarifying comments for the purposes of this RFC. // in aws_smithy_http::callbacks... /// A callback that, when inserted into a request body, will be called for corresponding lifecycle events.\ntrait BodyCallback: Send { /// This lifecycle function is called for each chunk **successfully** read. If an error occurs while reading a chunk, /// this method will not be called. This method takes `&mut self` so that implementors may modify an implementing /// struct/enum's internal state. Implementors may return an error. fn update(&mut self, #[allow(unused_variables)] bytes: &[u8]) -> Result<(), BoxError> { Ok(()) } /// This callback is called once all chunks have been read. If the callback encountered one or more errors /// while running `update`s, this is how those errors are raised. Implementors may return a [`HeaderMap`][HeaderMap] /// that will be appended to the HTTP body as a trailer. This is only useful to do for streaming requests. fn trailers(&self) -> Result>, BoxError> { Ok(None) } /// Create a new `BodyCallback` from an existing one. This is called when a `BodyCallback` needs to be /// re-initialized with default state. For example: when a request has a body that needs to be /// rebuilt, all callbacks for that body need to be run again but with a fresh internal state. fn make_new(&self) -> Box;\n} impl BodyCallback for Box { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { BodyCallback::update(self, bytes) } fn trailers(&self) -> Result>, BoxError> { BodyCallback::trailers(self) } fn make_new(&self) -> Box { BodyCallback::make_new(self) }\n} The changes we need to make to ByteStream: (The current version of ByteStream and Inner can be seen here .) // in `aws_smithy_http::byte_stream`... // We add a new method to `ByteStream` for inserting callbacks\nimpl ByteStream { // ...other impls omitted // A \"builder-style\" method for setting callbacks pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.inner.with_body_callback(body_callback); self }\n} impl Inner { // `Inner` wraps an `SdkBody` which has a \"builder-style\" function for adding callbacks. pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.body.with_body_callback(body_callback); self }\n} The changes we need to make to SdkBody: (The current version of SdkBody can be seen here .) // In aws_smithy_http::body... #[pin_project]\npub struct SdkBody { #[pin] inner: Inner, rebuild: Option Inner) + Send + Sync>>, // We add a `Vec` to store the callbacks #[pin] callbacks: Vec>,\n} impl SdkBody { // We update the various fns that create `SdkBody`s to create an empty `Vec` to store callbacks. // Those updates are very simple so I've omitted them from this code example. fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let mut this = self.project(); // This block is old. I've included for context. let polling_result = match this.inner.project() { InnerProj::Once(ref mut opt) => { let data = opt.take(); match data { Some(bytes) if bytes.is_empty() => Poll::Ready(None), Some(bytes) => Poll::Ready(Some(Ok(bytes))), None => Poll::Ready(None), } } InnerProj::Streaming(body) => body.poll_data(cx).map_err(|e| e.into()), InnerProj::Dyn(box_body) => box_body.poll_data(cx), InnerProj::Taken => { Poll::Ready(Some(Err(\"A `Taken` body should never be polled\".into()))) } }; // This block is new. match &polling_result { // When we get some bytes back from polling, pass those bytes to each callback in turn Poll::Ready(Some(Ok(bytes))) => { for callback in this.callbacks.iter_mut() { // Callbacks can run into errors when reading bytes. They'll be surfaced here callback.update(bytes)?; } } // When we're done polling for bytes, run each callback's `trailers()` method. If any calls to // `trailers()` return an error, propagate that error up. Otherwise, continue. Poll::Ready(None) => { for callback_result in this.callbacks.iter().map(BodyCallback::trailers) { if let Err(e) = callback_result { return Poll::Ready(Some(Err(e))); } } } _ => (), } // Now that we've inspected the polling result, all that's left to do is to return it. polling_result } // This function now has the added responsibility of cloning callback functions (but with fresh state) // in the case that the `SdkBody` needs to be rebuilt. pub fn try_clone(&self) -> Option { self.rebuild.as_ref().map(|rebuild| { let next = rebuild(); let callbacks = self .callbacks .iter() .map(Callback::make_new) .collect(); Self { inner: next, rebuild: self.rebuild.clone(), callbacks, } }) } pub fn with_callback(&mut self, callback: BodyCallback) -> &mut Self { self.callbacks.push(callback); self }\n} /// Given two [`HeaderMap`][HeaderMap]s, merge them together and return the merged `HeaderMap`. If the\n/// two `HeaderMap`s share any keys, values from the right `HeaderMap` be appended to the left `HeaderMap`.\n///\n/// # Example\n///\n/// ```rust\n/// let header_name = HeaderName::from_static(\"some_key\");\n///\n/// let mut left_hand_side_headers = HeaderMap::new();\n/// left_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"lhs value\").unwrap(),\n/// );\n///\n/// let mut right_hand_side_headers = HeaderMap::new();\n/// right_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"rhs value\").unwrap(),\n/// );\n///\n/// let merged_header_map =\n/// append_merge_header_maps(left_hand_side_headers, right_hand_side_headers);\n/// let merged_values: Vec<_> = merged_header_map\n/// .get_all(header_name.clone())\n/// .into_iter()\n/// .collect();\n///\n/// // Will print 'some_key: [\"lhs value\", \"rhs value\"]'\n/// println!(\"{}: {:?}\", header_name.as_str(), merged_values);\n/// ```\nfn append_merge_header_maps( mut lhs: HeaderMap, rhs: HeaderMap,\n) -> HeaderMap { let mut last_header_name_seen = None; for (header_name, header_value) in rhs.into_iter() { // For each yielded item that has None provided for the `HeaderName`, // then the associated header name is the same as that of the previously // yielded item. The first yielded item will have `HeaderName` set. // https://docs.rs/http/latest/http/header/struct.HeaderMap.html#method.into_iter-2 match (&mut last_header_name_seen, header_name) { (_, Some(header_name)) => { lhs.append(header_name.clone(), header_value); last_header_name_seen = Some(header_name); } (Some(header_name), None) => { lhs.append(header_name.clone(), header_value); } (None, None) => unreachable!(), }; } lhs\n} impl http_body::Body for SdkBody { // The other methods have been omitted because they haven't changed fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let header_map = self .callbacks .iter() .filter_map(|callback| { match callback.trailers() { Ok(optional_header_map) => optional_header_map, // early return if a callback encountered an error Err(e) => { return e }, } }) // Merge any `HeaderMap`s from the last step together, one by one. .reduce(append_merge_header_maps); Poll::Ready(Ok(header_map)) }\n}","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » The Implementation","id":"199","title":"The Implementation"},"2":{"body":"The Rust SDK is \"modular\" meaning that each AWS service is its own crate. Each crate provides two layers to access the service: The \"fluent\" API. For most use cases, a high level API that ties together connection management and serialization will be the quickest path to success. #[tokio::main]\nasync fn main() { let client = dynamodb::Client::from_env(); let tables = client .list_tables() .limit(10) .send() .await.expect(\"failed to load tables\");\n} The \"low-level\" API: It is also possible for customers to assemble the pieces themselves. This offers more control over operation construction & dispatch semantics: #[tokio::main]\nasync fn main() { let conf = dynamodb::Config::builder().build(); let conn = aws_hyper::Client::https(); let operation = dynamodb::ListTables::builder() .limit(10) .build(&conf) .expect(\"invalid operation\"); let tables = conn.call(operation).await.expect(\"failed to list tables\");\n} The Fluent API is implemented as a thin wrapper around the core API to improve ergonomics.","breadcrumbs":"Design Overview » External API Overview","id":"2","title":"External API Overview"},"20":{"body":"A customer interacts with the SDK builders to construct an input. The build() method on an input returns an Operation. This codifies the base HTTP request & all the configuration and middleware layers required to modify and dispatch the request. pub struct Operation { request: Request, response_handler: H, _retry_policy: R,\n} pub struct Request { inner: http::Request, properties: PropertyBag,\n} For most requests, .build() will NOT consume the input. A user can call .build() multiple times to produce multiple operations from the same input. By using a property bag, we can define the Operation in Smithy core. AWS specific configuration can be added later in the stack.","breadcrumbs":"Transport » HTTP Operations » Input Construction","id":"20","title":"Input Construction"},"200":{"body":"What follows is a simplified example of how this API could be used to introduce checksum validation for outgoing request payloads. In this example, the checksum calculation is fallible and no validation takes place. All it does it calculate the checksum of some data and then returns the checksum of that data when trailers is called. This is fine because it's being used to calculate the checksum of a streaming body for a request. #[derive(Default)]\nstruct Crc32cChecksumCallback { state: Option,\n} impl ReadCallback for Crc32cChecksumCallback { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => { self.state = Some(crc32c_append(crc, bytes)) } None => { Some(crc32c(&bytes)) } }; Ok(()) } fn trailers(&self) -> Result>, Box> { let mut header_map = HeaderMap::new(); // This checksum name is an Amazon standard and would be a `const` in the real implementation let key = HeaderName::from_static(\"x-amz-checksum-crc32c\"); // If no data was provided to this callback and no CRC was ever calculated, we return zero as the checksum. let crc = self.state.unwrap_or_default(); // Convert the CRC to a string, base 64 encode it, and then convert it into a `HeaderValue`. let value = HeaderValue::from_str(&base64::encode(crc.to_string())).expect(\"base64 will always produce valid header values\"); header_map.insert(key, value); Some(header_map) } fn make_new(&self) -> Box { Box::new(Crc32cChecksumCallback::default()) }\n} NOTE: If Crc32cChecksumCallback needed to validate a response, then we could modify it to check its internal state against a target checksum value and calling trailers would produce an error if the values didn't match. In order to use this in a request, we'd modify codegen for that request's service. We'd check if the user had requested validation and also check if they'd pre-calculated a checksum. If validation was requested but no pre-calculated checksum was given, we'd create a callback similar to the one above Then, we'd create a new checksum callback and: (if streaming) we'd set the checksum callback on the request body object (if non-streaming) we'd immediately read the body and call BodyCallback::update manually. Once all data was read, we'd get the checksum by calling trailers and insert that data as a request header.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » Implementing Checksums","id":"200","title":"Implementing Checksums"},"201":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. While it is currently possible for users to implement request timeouts by racing operation send futures against timeout futures, this RFC proposes a more ergonomic solution that would also enable users to set timeouts for things like TLS negotiation and \"time to first byte\".","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » RFC: Fine-grained timeout configuration","id":"201","title":"RFC: Fine-grained timeout configuration"},"202":{"body":"There's a lot of terminology to define, so I've broken it up into three sections.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Terminology","id":"202","title":"Terminology"},"203":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. In this case, \"service\" refers to an AWS offering like S3.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » General terms","id":"203","title":"General terms"},"204":{"body":"Service : A trait defined in the tower-service crate . The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Layer : Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code. Middleware : a term with several meanings, Generically speaking, middleware are similar to Services and Layers in that they modify requests and responses. In the SDK, \"Middleware\" refers to a layer that can be wrapped around a DispatchService. In practice, this means that the resulting Service (and the inner service) must meet the bound T: where T: Service. Note: This doesn't apply to the middlewares we use when generating presigned request because those don't wrap a DispatchService. The most notable example of a Middleware is the AwsMiddleware . Other notable examples include MapRequest , AsyncMapRequest , and ParseResponse . DispatchService : The innermost part of a group of nested services. The Service that actually makes an HTTP call on behalf of a request. Responsible for parsing success and error responses. Connector : a term with several meanings, DynConnectors (a struct that implements DynConnect ) are Services with their specific type erased so that we can do dynamic dispatch. A term from hyper for any object that implements the Connect trait. Really just an alias for tower_service::Service . Sometimes referred to as a Connection. Stage : A form of middleware that's not related to tower. These currently function as a way of transforming requests and don't have the ability to transform responses. Stack : higher order abstraction over Layers defined in the tower crate e.g. Layers wrap services in one another and Stacks wrap layers within one another.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » HTTP stack terms","id":"204","title":"HTTP stack terms"},"205":{"body":"Connect Timeout : A limit on the amount of time after making an initial connect attempt on a socket to complete the connect-handshake. TODO: the runtime is based on Hyper which reuses connection and doesn't currently have a way of guaranteeing that a fresh connection will be use for a given request. TLS Negotiation Timeout : A limit on the amount of time a TLS handshake takes from when the CLIENT HELLO message is sent to the time the client and server have fully negotiated ciphers and exchanged keys. Time to First Byte Timeout : Sometimes referred to as a \"read timeout.\" A limit on the amount of time an application takes to attempt to read the first byte over an established, open connection after write request. HTTP Request Timeout For A Single Attempt : A limit on the amount of time it takes for the first byte to be sent over an established, open connection and when the last byte is received from the service. HTTP Request Timeout For Multiple Attempts : This timeout acts like the previous timeout but constrains the total time it takes to make a request plus any retries. NOTE: In a way, this is already possible in that users are free to race requests against timer futures with the futures::future::select macro or to use tokio::time::timeout . See relevant discussion in hyper#1097","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Timeout terms","id":"205","title":"Timeout terms"},"206":{"body":"Just like with Retry Behavior Configuration , these settings can be configured in several places and have the same precedence rules (paraphrased here for clarity) . Service-specific config builders Shared config builders Environment variables Profile config file (e.g., ~/.aws/credentials) The above list is in order of decreasing precedence e.g. configuration set in an app will override values from environment variables.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuring timeouts","id":"206","title":"Configuring timeouts"},"207":{"body":"The table below details the specific ways each timeout can be configured. In all cases, valid values are non-negative floats representing the number of seconds before a timeout is triggered. Timeout Environment Variable AWS Config Variable Builder Method Connect AWS_CONNECT_TIMEOUT connect_timeout connect_timeout TLS Negotiation AWS_TLS_NEGOTIATION_TIMEOUT tls_negotiation_timeout tls_negotiation_timeout Time To First Byte AWS_READ_TIMEOUT read_timeout read_timeout HTTP Request - single attempt AWS_API_CALL_ATTEMPT_TIMEOUT api_call_attempt_timeout api_call_attempt_timeout HTTP Request - all attempts AWS_API_CALL_TIMEOUT api_call_timeout api_call_timeout","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuration options","id":"207","title":"Configuration options"},"208":{"body":"QUESTION: How does the SDK currently handle these defaults?","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » SDK-specific defaults set by AWS service teams","id":"208","title":"SDK-specific defaults set by AWS service teams"},"209":{"body":"hjr3/hyper-timeout is a Connector for hyper that enables setting connect, read, and write timeouts sfackler/tokio-io-timeout provides timeouts for tokio IO operations. Used within hyper-timeout. [tokio::time::sleep_until] creates a Future that completes after some time has elapsed. Used within tokio-io-timeout.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Prior Art","id":"209","title":"Prior Art"},"21":{"body":"In order to construct an operation, the generated code injects appropriate middleware & configuration via the configuration property bag. It does this by reading the configuration properties out of the service config, copying them as necessary, and loading them into the Request: // This is approximately the generated code, I've cleaned a few things up for readability.\npub fn build(self, config: &dynamodb::config::Config) -> Operation { let op = BatchExecuteStatement::new(BatchExecuteStatementInput { statements: self.statements, }); let req = op.build_http_request().map(SdkBody::from); let mut req = operation::Request::new(req); let mut props = req.properties_mut(); props.insert_signing_config(config.signing_service()); props.insert_endpoint_resolver(config.endpoint_resolver.clone()); Operation::new(req)\n}","breadcrumbs":"Transport » HTTP Operations » Operation Construction","id":"21","title":"Operation Construction"},"210":{"body":"Timeouts are achieved by racing a future against a tokio::time::Sleep future. The question, then, is \"how can I create a future that represents a condition I want to watch for?\". For example, in the case of a ConnectTimeout, how do we watch an ongoing request to see if it's completed the connect-handshake? Our current stack of Middleware acts on requests at different levels of granularity. The timeout Middlewares will be no different.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Behind the scenes","id":"210","title":"Behind the scenes"},"211":{"body":"View AwsMiddleware in GitHub #[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsMiddleware;\nimpl tower::Layer for AwsMiddleware { type Service = >::Service; fn layer(&self, inner: S) -> Self::Service { let credential_provider = AsyncMapRequestLayer::for_mapper(CredentialsStage::new()); let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); let endpoint_resolver = MapRequestLayer::for_mapper(AwsAuthStage); let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); ServiceBuilder::new() .layer(endpoint_resolver) .layer(user_agent) .layer(credential_provider) .layer(signer) .service(inner) }\n} The above code is only included for context. This RFC doesn't define any timeouts specific to AWS so AwsMiddleware won't require any changes.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for AWS Client requests","id":"211","title":"Middlewares for AWS Client requests"},"212":{"body":"View aws_smithy_client::Client::call_raw in GitHub impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let mut svc = ServiceBuilder::new() // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} The Smithy Client creates a new Stack of services to handle each request it sends. Specifically: A method retry is used set the retry handler. The configuration for this was set during creation of the Client. ParseResponseLayer inserts a service for transforming responses into operation-specific outputs or errors. The O generic parameter of input is what decides exactly how the transformation is implemented. A middleware stack that was included during Client creation is inserted into the stack. In the case of the AWS SDK, this would be AwsMiddleware. DispatchLayer inserts a service for transforming an http::Request into an operation::Request. It's also responsible for re-attaching the property bag from the Operation that triggered the request. The innermost Service is a DynConnector wrapping a hyper client (which one depends on the TLS implementation was enabled by cargo features.) The HTTP Request Timeout For A Single Attempt and HTTP Request Timeout For Multiple Attempts can be implemented at this level. The same Layer can be used to create both TimeoutServices. The TimeoutLayer would require two inputs: sleep_fn: A runtime-specific implementation of sleep. The SDK is currently tokio-based and would default to tokio::time::sleep (this default is set in the aws_smithy_async::rt::sleep module.) The duration of the timeout as a std::time::Duration The resulting code would look like this: impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let sleep_fn = aws_smithy_async::rt::sleep::default_async_sleep(); let mut svc = ServiceBuilder::new() .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_timeout(), )) // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_attempt_timeout(), )) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} Note: Our HTTP client supports multiple TLS implementations. We'll likely have to implement this feature once per library. Timeouts will be implemented in the following places: HTTP request timeout for multiple requests will be implemented as the outermost Layer in Client::call_raw. HTTP request timeout for a single request will be implemented within RetryHandler::retry. Time to first byte, TLS negotiation, and connect timeouts will be implemented within the central hyper connector.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for Smithy Client requests","id":"212","title":"Middlewares for Smithy Client requests"},"213":{"body":"Changes are broken into to sections: HTTP requests (single or multiple) are implementable as layers within our current stack Other timeouts will require changes to our dependencies and may be slower to implement","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Changes checklist","id":"213","title":"Changes checklist"},"214":{"body":"Add TimeoutConfig to smithy-types Add TimeoutConfigProvider to aws-config Add provider that fetches config from environment variables Add provider that fetches config from profile Add timeout method to aws_types::Config for setting timeout configuration Add timeout method to generated Configs too Create a generic TimeoutService and accompanying Layer TimeoutLayer should accept a sleep function so that it doesn't have a hard dependency on tokio insert a TimeoutLayer before the RetryPolicy to handle timeouts for multiple-attempt requests insert a TimeoutLayer after the RetryPolicy to handle timeouts for single-attempt requests Add tests for timeout behavior test multi-request timeout triggers after 3 slow retries test single-request timeout triggers correctly test single-request timeout doesn't trigger if request completes in time","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Implementing HTTP request timeouts","id":"214","title":"Implementing HTTP request timeouts"},"215":{"body":"Status: Accepted","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » RFC: How Cargo \"features\" should be used in the SDK and runtime crates","id":"215","title":"RFC: How Cargo \"features\" should be used in the SDK and runtime crates"},"216":{"body":"What is a feature? Here's a definition from the Cargo Book section on features : Cargo \"features\" provide a mechanism to express conditional compilation and optional dependencies. A package defines a set of named features in the [features] table of Cargo.toml, and each feature can either be enabled or disabled. Features for the package being built can be enabled on the command-line with flags such as --features. Features for dependencies can be enabled in the dependency declaration in Cargo.toml. We use features in a majority of our runtime crates and in all of our SDK crates. For example, aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Some background on features","id":"216","title":"Some background on features"},"217":{"body":"The Cargo book has this to say: When a dependency is used by multiple packages, Cargo will use the union of all features enabled on that dependency when building it. This helps ensure that only a single copy of the dependency is used. A consequence of this is that features should be additive . That is, enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change .","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Features should be additive","id":"217","title":"Features should be additive"},"218":{"body":"Despite the constraints outlined above, we should use features in the SDKs because of the benefits they bring: Features enable users to avoid compiling code that they won't be using. Additionally, features allow both general and specific control of compiled code, serving the needs of both novice and expert users. A single feature in a crate can activate or deactivate multiple features exposed by that crate's dependencies, freeing the user from having to specifically activate or deactivate them. Features can help users understand what a crate is capable of in the same way that looking at a graph of a crate's modules can. When using features, we should adhere to the guidelines outlined below.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » What does this mean for the SDK?","id":"218","title":"What does this mean for the SDK?"},"219":{"body":"As noted earlier in an excerpt from the Cargo book: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change . #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn tls_adapter(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn tls_adapter( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} When the example code above is compiled with both features enabled, compilation will fail with a \"duplicate definitions with name tls_adapter\" error. Also, note that the return type of the function differs between the two versions. This is a SemVer-incompatible change. Here's an updated version of the example that fixes these issues: #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn rustls(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn native_tls( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} Both features can now be enabled at once without creating a conflict. Since both methods have different names, it's now Ok for them to have different return types. This is real code, see it in context","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Avoid writing code that relies on only activating one feature from a set of mutually exclusive features.","id":"219","title":"Avoid writing code that relies on only activating one feature from a set of mutually exclusive features."},"22":{"body":"The Rust SDK endeavors to behave as predictably as possible. This means that if at all possible we will not dispatch extra HTTP requests during the dispatch of normal operation. Making this work is covered in more detail in the design of credentials providers & endpoint resolution. The upshot is that we will always prefer a design where the user has explicit control of when credentials are loaded and endpoints are resolved. This doesn't mean that users can't use easy-to-use options (We will provide an automatically refreshing credentials provider), however, the credential provider won't load requests during the dispatch of an individual request.","breadcrumbs":"Transport » HTTP Operations » Operation Dispatch and Middleware","id":"22","title":"Operation Dispatch and Middleware"},"220":{"body":"At the risk of seeming repetitive, the Cargo book says: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features Conditionally compiling code when a feature is not activated can make it hard for users and maintainers to reason about what will happen when they activate a feature. This is also a sign that a feature may not be \"additive\". NOTE : It's ok to use #[cfg(not())] to conditionally compile code based on a user's OS. It's also useful when controlling what code gets rendered when testing or when generating docs. One case where using not is acceptable is when providing a fallback when no features are set: #[cfg(feature = \"rt-tokio\")]\npub fn default_async_sleep() -> Option> { Some(sleep_tokio())\n} #[cfg(not(feature = \"rt-tokio\"))]\npub fn default_async_sleep() -> Option> { None\n}","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » We should avoid using #[cfg(not(feature = \"some-feature\"))]","id":"220","title":"We should avoid using #[cfg(not(feature = \"some-feature\"))]"},"221":{"body":"Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users. When a default feature providing some functionality is disabled, active features must not automatically replace that functionality As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example . This RFC proposes that we should have a single default for any configurable functionality and that that functionality depends on a corresponding default feature being active. If default-features are disabled, then so is the corresponding default functionality. In its place would be functionality that fails fast with a message describing why it failed (a default was deactivated but the user didn't set a replacement) , and what the user should do to fix it (with links to documentation and examples where necessary) . We should use compile-time errors to communicate failures with users, or panics for cases that can't be evaluated at compile-time. For an example: Say you have a crate with features a, b, c that all provide some version of functionality foo. Feature a is part of default-features. When no-default-features = true but features b and c are active, don't automatically fall back to b or c. Instead, emit an error with a message like this: \"When default features are disabled, you must manually set foo. Features b and c active; You can use one of those. See an example of setting a custom foo here: link-to-docs.amazon.com/setting-foo \"","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Don't default to defining \"default features\"","id":"221","title":"Don't default to defining \"default features\""},"222":{"body":"How to tell what \"features\" are available per crate? How do I 'pass down' feature flags to subdependencies in Cargo? A small selection of feature-related GitHub issues submitted for popular crates The feature preserve_order is not \"purely additive,\" which makes it impossible to use serde_yaml 0.5.0 and clap in the same program cargo features (verbose-errors may be other?) should be additive Mutually exclusive features are present in profiling-procmacros Clang-sys features not additive","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Further reading","id":"222","title":"Further reading"},"223":{"body":"Status: Implemented We can't currently update the S3 SDK because we don't support the new \"Flexible Checksums\" feature. This RFC describes this new feature and details how we should implement it in smithy-rs.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » RFC: Supporting Flexible Checksums","id":"223","title":"RFC: Supporting Flexible Checksums"},"224":{"body":"S3 has previously supported MD5 checksum validation of data. Now, it supports more checksum algorithms like CRC32, CRC32C, SHA-1, and SHA-256. This validation is available when putting objects to S3 and when getting them from S3. For more information, see this AWS News Blog post .","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » What is the \"Flexible Checksums\" feature?","id":"224","title":"What is the \"Flexible Checksums\" feature?"},"225":{"body":"Checksum callbacks were introduced as a result of the acceptance of RFC0013 and this RFC proposes a refactor to those callbacks, as well as several new wrappers for SdkBody that will provide new functionality.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementing Checksums","id":"225","title":"Implementing Checksums"},"226":{"body":"TLDR; This refactor of aws-smithy-checksums: Removes the \"callback\" terminology: As a word, \"callback\" doesn't carry any useful information, and doesn't aid in understanding. Removes support for the BodyCallback API: Instead of adding checksum callbacks to a body, we're going to use a \"body wrapping\" instead. \"Body wrapping\" is demonstrated in the ChecksumBody , AwsChunkedBody , and ChecksumValidatedBody sections. NOTE: This doesn't remove the BodyCallback trait. That will still exist, we just won't use it. Updates terminology to focus on \"headers\" instead of \"trailers\": Because the types we deal with in this module are named for HTTP headers, I chose to use that terminology instead. My hope is that this will be less strange to people reading this code. Adds fn checksum_algorithm_to_checksum_header_name: a function that's used in generated code to set a checksum request header. Adds fn checksum_header_name_to_checksum_algorithm: a function that's used in generated code when creating a checksum-validating response body. Add new checksum-related \"body wrapping\" HTTP body types : These are defined in the body module and will be shown later in this RFC. // In aws-smithy-checksums/src/lib.rs\n//! Checksum calculation and verification callbacks use aws_smithy_types::base64; use bytes::Bytes;\nuse http::header::{HeaderMap, HeaderName, HeaderValue};\nuse sha1::Digest;\nuse std::io::Write; pub mod body; // Valid checksum algorithm names\npub const CRC_32_NAME: &str = \"crc32\";\npub const CRC_32_C_NAME: &str = \"crc32c\";\npub const SHA_1_NAME: &str = \"sha1\";\npub const SHA_256_NAME: &str = \"sha256\"; pub const CRC_32_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32\");\npub const CRC_32_C_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32c\");\npub const SHA_1_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha1\");\npub const SHA_256_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha256\"); // Preserved for compatibility purposes. This should never be used by users, only within smithy-rs\nconst MD5_NAME: &str = \"md5\";\nconst MD5_HEADER_NAME: HeaderName = HeaderName::from_static(\"content-md5\"); /// Given a `&str` representing a checksum algorithm, return the corresponding `HeaderName`\n/// for that checksum algorithm.\npub fn checksum_algorithm_to_checksum_header_name(checksum_algorithm: &str) -> HeaderName { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { CRC_32_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { CRC_32_C_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { SHA_1_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { SHA_256_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { MD5_HEADER_NAME } else { // TODO what's the best way to handle this case? HeaderName::from_static(\"x-amz-checksum-unknown\") }\n} /// Given a `HeaderName` representing a checksum algorithm, return the name of that algorithm\n/// as a `&'static str`.\npub fn checksum_header_name_to_checksum_algorithm( checksum_header_name: &HeaderName,\n) -> &'static str { if checksum_header_name == CRC_32_HEADER_NAME { CRC_32_NAME } else if checksum_header_name == CRC_32_C_HEADER_NAME { CRC_32_C_NAME } else if checksum_header_name == SHA_1_HEADER_NAME { SHA_1_NAME } else if checksum_header_name == SHA_256_HEADER_NAME { SHA_256_NAME } else if checksum_header_name == MD5_HEADER_NAME { MD5_NAME } else { // TODO what's the best way to handle this case? \"unknown-checksum-algorithm\" }\n} /// When a response has to be checksum-verified, we have to check possible headers until we find the\n/// header with the precalculated checksum. Because a service may send back multiple headers, we have\n/// to check them in order based on how fast each checksum is to calculate.\npub const CHECKSUM_HEADERS_IN_PRIORITY_ORDER: [HeaderName; 4] = [ CRC_32_C_HEADER_NAME, CRC_32_HEADER_NAME, SHA_1_HEADER_NAME, SHA_256_HEADER_NAME,\n]; type BoxError = Box; /// Checksum algorithms are use to validate the integrity of data. Structs that implement this trait\n/// can be used as checksum calculators. This trait requires Send + Sync because these checksums are\n/// often used in a threaded context.\npub trait Checksum: Send + Sync { /// Given a slice of bytes, update this checksum's internal state. fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError>; /// Either return this checksum as a `HeaderMap` containing one HTTP header, or return an error /// describing why checksum calculation failed. fn headers(&self) -> Result>, BoxError>; /// Return the `HeaderName` used to represent this checksum algorithm fn header_name(&self) -> HeaderName; /// \"Finalize\" this checksum, returning the calculated value as `Bytes` or an error that /// occurred during checksum calculation. To print this value in a human-readable hexadecimal /// format, you can print it using Rust's builtin [formatter]. /// /// _**NOTE:** typically, \"finalizing\" a checksum in Rust will take ownership of the checksum /// struct. In this method, we clone the checksum's state before finalizing because checksums /// may be used in a situation where taking ownership is not possible._ /// /// [formatter]: https://doc.rust-lang.org/std/fmt/trait.UpperHex.html fn finalize(&self) -> Result; /// Return the size of this checksum algorithms resulting checksum, in bytes. For example, the /// CRC32 checksum algorithm calculates a 32 bit checksum, so a CRC32 checksum struct /// implementing this trait method would return 4. fn size(&self) -> u64;\n} /// Create a new `Box` from an algorithm name. Valid algorithm names are defined as\n/// `const`s in this module.\npub fn new_checksum(checksum_algorithm: &str) -> Box { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { Box::new(Crc32::default()) } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { Box::new(Crc32c::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { Box::new(Sha1::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { Box::new(Sha256::default()) } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { // It's possible to create an MD5 and we do this in some situations for compatibility. // We deliberately hide this from users so that they don't go using it. Box::new(Md5::default()) } else { panic!(\"unsupported checksum algorithm '{}'\", checksum_algorithm) }\n} #[derive(Debug, Default)]\nstruct Crc32 { hasher: crc32fast::Hasher,\n} impl Crc32 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.update(bytes); Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.hasher.clone().finalize().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32 checksum\") }\n} impl Checksum for Crc32 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Crc32c { state: Option,\n} impl Crc32c { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => Some(crc32c::crc32c_append(crc, bytes)), None => Some(crc32c::crc32c(bytes)), }; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.state.unwrap_or_default().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_C_HEADER_NAME } fn header_value(&self) -> HeaderValue { // If no data was provided to this callback and no CRC was ever calculated, return zero as the checksum. let hash = self.state.unwrap_or_default(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32C checksum\") }\n} impl Checksum for Crc32c { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha1 { hasher: sha1::Sha1,\n} impl Sha1 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 20 } fn header_name() -> HeaderName { SHA_1_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-1 checksum\") }\n} impl Checksum for Sha1 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha256 { hasher: sha2::Sha256,\n} impl Sha256 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 32 } fn header_name() -> HeaderName { SHA_256_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-256 checksum\") }\n} impl Checksum for Sha256 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Md5 { hasher: md5::Md5,\n} impl Md5 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 16 } fn header_name() -> HeaderName { MD5_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from an MD5 checksum\") }\n} impl Checksum for Md5 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} // We have existing tests for the checksums, those don't require an update","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Refactoring aws-smithy-checksums","id":"226","title":"Refactoring aws-smithy-checksums"},"227":{"body":"When creating a checksum-validated request with an in-memory request body, we can read the body, calculate a checksum, and insert the checksum header, all before sending the request. When creating a checksum-validated request with a streaming request body, we don't have that luxury. Instead, we must calculate a checksum while sending the body, and append that checksum as a trailer . We will accomplish this by wrapping the SdkBody that requires validation within a ChecksumBody. Afterwards, we'll need to wrap the ChecksumBody in yet another layer which we'll discuss in the AwsChunkedBody and AwsChunkedBodyOptions section. // In aws-smithy-checksums/src/body.rs\nuse crate::{new_checksum, Checksum}; use aws_smithy_http::body::SdkBody;\nuse aws_smithy_http::header::append_merge_header_maps;\nuse aws_smithy_types::base64; use bytes::{Buf, Bytes};\nuse http::header::HeaderName;\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::fmt::Display;\nuse std::pin::Pin;\nuse std::task::{Context, Poll}; /// A `ChecksumBody` will read and calculate a request body as it's being sent. Once the body has\n/// been completely read, it'll append a trailer with the calculated checksum.\n#[pin_project]\npub struct ChecksumBody { #[pin] inner: InnerBody, #[pin] checksum: Box,\n} impl ChecksumBody { /// Given an `SdkBody` and the name of a checksum algorithm as a `&str`, create a new /// `ChecksumBody`. Valid checksum algorithm names are defined in this crate's /// [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, } } /// Return the name of the trailer that will be emitted by this `ChecksumBody` pub fn trailer_name(&self) -> HeaderName { self.checksum.header_name() } /// Calculate and return the sum of the: /// - checksum when base64 encoded /// - trailer name /// - trailer separator /// /// This is necessary for calculating the true size of the request body for certain /// content-encodings. pub fn trailer_length(&self) -> u64 { let trailer_name_size_in_bytes = self.checksum.header_name().as_str().len() as u64; let base64_encoded_checksum_size_in_bytes = base64::encoded_length(self.checksum.size()); (trailer_name_size_in_bytes // HTTP trailer names and values may be separated by either a single colon or a single // colon and a whitespace. In the AWS Rust SDK, we use a single colon. + \":\".len() as u64 + base64_encoded_checksum_size_in_bytes) } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => Poll::Ready(None), Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} impl http_body::Body for ChecksumBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let this = self.project(); match ( this.checksum.headers(), http_body::Body::poll_trailers(this.inner, cx), ) { // If everything is ready, return trailers, merging them if we have more than one map (Ok(outer_trailers), Poll::Ready(Ok(inner_trailers))) => { let trailers = match (outer_trailers, inner_trailers) { // Values from the inner trailer map take precedent over values from the outer map (Some(outer), Some(inner)) => Some(append_merge_header_maps(inner, outer)), // If only one or neither produced trailers, just combine the `Option`s with `or` (outer, inner) => outer.or(inner), }; Poll::Ready(Ok(trailers)) } // If the inner poll is Ok but the outer body's checksum callback encountered an error, // return the error (Err(e), Poll::Ready(Ok(_))) => Poll::Ready(Err(e)), // Otherwise return the result of the inner poll. // It may be pending or it may be ready with an error. (_, inner_poll) => inner_poll, } } fn is_end_stream(&self) -> bool { self.inner.is_end_stream() } fn size_hint(&self) -> SizeHint { let body_size_hint = self.inner.size_hint(); match body_size_hint.exact() { Some(size) => { let checksum_size_hint = self.checksum.size(); SizeHint::with_exact(size + checksum_size_hint) } // TODO is this the right behavior? None => { let checksum_size_hint = self.checksum.size(); let mut summed_size_hint = SizeHint::new(); summed_size_hint.set_lower(body_size_hint.lower() + checksum_size_hint); if let Some(body_size_hint_upper) = body_size_hint.upper() { summed_size_hint.set_upper(body_size_hint_upper + checksum_size_hint); } summed_size_hint } } }\n} // The tests I have written are omitted from this RFC for brevity. The request body checksum calculation and trailer size calculations are all tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumBody","id":"227","title":"ChecksumBody"},"228":{"body":"Users may request checksum validation for response bodies. That capability is provided by ChecksumValidatedBody, which will calculate a checksum as the response body is being read. Once all data has been read, the calculated checksum is compared to a precalculated checksum set during body creation. If the checksums don't match, then the body will emit an error. // In aws-smithy-checksums/src/body.rs\n/// A response body that will calculate a checksum as it is read. If all data is read and the\n/// calculated checksum doesn't match a precalculated checksum, this body will emit an\n/// [asw_smithy_http::body::Error].\n#[pin_project]\npub struct ChecksumValidatedBody { #[pin] inner: InnerBody, #[pin] checksum: Box, precalculated_checksum: Bytes,\n} impl ChecksumValidatedBody { /// Given an `SdkBody`, the name of a checksum algorithm as a `&str`, and a precalculated /// checksum represented as `Bytes`, create a new `ChecksumValidatedBody`. /// Valid checksum algorithm names are defined in this crate's [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str, precalculated_checksum: Bytes) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, precalculated_checksum, } } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } // Once the inner body has stopped returning data, check the checksum // and return an error if it doesn't match. Poll::Ready(None) => { let actual_checksum = { match checksum.finalize() { Ok(checksum) => checksum, Err(err) => { return Poll::Ready(Some(Err(err))); } } }; if *this.precalculated_checksum == actual_checksum { Poll::Ready(None) } else { // So many parens it's starting to look like LISP Poll::Ready(Some(Err(Box::new(Error::checksum_mismatch( this.precalculated_checksum.clone(), actual_checksum, ))))) } } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} /// Errors related to checksum calculation and validation\n#[derive(Debug, Eq, PartialEq)]\n#[non_exhaustive]\npub enum Error { /// The actual checksum didn't match the expected checksum. The checksummed data has been /// altered since the expected checksum was calculated. ChecksumMismatch { expected: Bytes, actual: Bytes },\n} impl Error { /// Given an expected checksum and an actual checksum in `Bytes` form, create a new /// `Error::ChecksumMismatch`. pub fn checksum_mismatch(expected: Bytes, actual: Bytes) -> Self { Self::ChecksumMismatch { expected, actual } }\n} impl Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { match self { Error::ChecksumMismatch { expected, actual } => write!( f, \"body checksum mismatch. expected body checksum to be {:x} but it was {:x}\", expected, actual ), } }\n} impl std::error::Error for Error {} impl http_body::Body for ChecksumValidatedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { self.project().inner.poll_trailers(cx) } // Once the inner body returns true for is_end_stream, we still need to // verify the checksum; Therefore, we always return false here. fn is_end_stream(&self) -> bool { false } fn size_hint(&self) -> SizeHint { self.inner.size_hint() }\n} // The tests I have written are omitted from this RFC for brevity. The response body checksum verification is tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumValidatedBody","id":"228","title":"ChecksumValidatedBody"},"229":{"body":"In order to send a request with checksum trailers, we must use an AWS-specific content encoding called aws-chunked. This encoding requires that we: Divide the original body content into one or more chunks. For our purposes we only ever use one chunk. Append a hexadecimal chunk size header to each chunk. Suffix each chunk with a CRLF (carriage return line feed) . Send a 0 and CRLF to close the original body content section. Send trailers as part of the request body, suffixing each with a CRLF. Send a final CRLF to close the request body. As an example, Sending a regular request body with a SHA-256 checksum would look similar to this: PUT SOMEURL HTTP/1.1\nx-amz-checksum-sha256: ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\nContent-Length: 11\n... Hello world and the aws-chunked version would look like this: PUT SOMEURL HTTP/1.1\nx-amz-trailer: x-amz-checksum-sha256\nx-amz-decoded-content-length: 11\nContent-Encoding: aws-chunked\nContent-Length: 87\n... B\\r\\n\nHello world\\r\\n\n0\\r\\n\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\n\\r\\n NOTES: In the second example, B is the hexadecimal representation of 11. Authorization and other headers are omitted from the examples above for brevity. When using aws-chunked content encoding, S3 requires that we send the x-amz-decoded-content-length with the length of the original body content. This encoding scheme is performed by AwsChunkedBody and configured with AwsChunkedBodyOptions. // In aws-http/src/content_encoding.rs\nuse aws_smithy_checksums::body::ChecksumBody;\nuse aws_smithy_http::body::SdkBody; use bytes::{Buf, Bytes, BytesMut};\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::pin::Pin;\nuse std::task::{Context, Poll}; const CRLF: &str = \"\\r\\n\";\nconst CHUNK_TERMINATOR: &str = \"0\\r\\n\"; /// Content encoding header value constants\npub mod header_value { /// Header value denoting \"aws-chunked\" encoding pub const AWS_CHUNKED: &str = \"aws-chunked\";\n} /// Options used when constructing an [`AwsChunkedBody`][AwsChunkedBody].\n#[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsChunkedBodyOptions { /// The total size of the stream. For unsigned encoding this implies that /// there will only be a single chunk containing the underlying payload, /// unless ChunkLength is also specified. pub stream_length: Option, /// The maximum size of each chunk to be sent. /// /// If ChunkLength and stream_length are both specified, the stream will be /// broken up into chunk_length chunks. The encoded length of the aws-chunked /// encoding can still be determined as long as all trailers, if any, have a /// fixed length. pub chunk_length: Option, /// The length of each trailer sent within an `AwsChunkedBody`. Necessary in /// order to correctly calculate the total size of the body accurately. pub trailer_lens: Vec,\n} impl AwsChunkedBodyOptions { /// Create a new [`AwsChunkedBodyOptions`][AwsChunkedBodyOptions] pub fn new() -> Self { Self::default() } /// Set stream length pub fn with_stream_length(mut self, stream_length: u64) -> Self { self.stream_length = Some(stream_length); self } /// Set chunk length pub fn with_chunk_length(mut self, chunk_length: u64) -> Self { self.chunk_length = Some(chunk_length); self } /// Set a trailer len pub fn with_trailer_len(mut self, trailer_len: u64) -> Self { self.trailer_lens.push(trailer_len); self }\n} #[derive(Debug, PartialEq, Eq)]\nenum AwsChunkedBodyState { WritingChunkSize, WritingChunk, WritingTrailers, Closed,\n} /// A request body compatible with `Content-Encoding: aws-chunked`\n///\n/// Chunked-Body grammar is defined in [ABNF] as:\n///\n/// ```txt\n/// Chunked-Body = *chunk\n/// last-chunk\n/// chunked-trailer\n/// CRLF\n///\n/// chunk = chunk-size CRLF chunk-data CRLF\n/// chunk-size = 1*HEXDIG\n/// last-chunk = 1*(\"0\") CRLF\n/// chunked-trailer = *( entity-header CRLF )\n/// entity-header = field-name \":\" OWS field-value OWS\n/// ```\n/// For more info on what the abbreviations mean, see https://datatracker.ietf.org/doc/html/rfc7230#section-1.2\n///\n/// [ABNF]:https://en.wikipedia.org/wiki/Augmented_Backus%E2%80%93Naur_form\n#[derive(Debug)]\n#[pin_project]\npub struct AwsChunkedBody { #[pin] inner: InnerBody, #[pin] state: AwsChunkedBodyState, options: AwsChunkedBodyOptions,\n} // Currently, we only use this in terms of a streaming request body with checksum trailers\ntype Inner = ChecksumBody; impl AwsChunkedBody { /// Wrap the given body in an outer body compatible with `Content-Encoding: aws-chunked` pub fn new(body: Inner, options: AwsChunkedBodyOptions) -> Self { Self { inner: body, state: AwsChunkedBodyState::WritingChunkSize, options, } } fn encoded_length(&self) -> Option { if self.options.chunk_length.is_none() && self.options.stream_length.is_none() { return None; } let mut length = 0; let stream_length = self.options.stream_length.unwrap_or_default(); if stream_length != 0 { if let Some(chunk_length) = self.options.chunk_length { let num_chunks = stream_length / chunk_length; length += num_chunks * get_unsigned_chunk_bytes_length(chunk_length); let remainder = stream_length % chunk_length; if remainder != 0 { length += get_unsigned_chunk_bytes_length(remainder); } } else { length += get_unsigned_chunk_bytes_length(stream_length); } } // End chunk length += CHUNK_TERMINATOR.len() as u64; // Trailers for len in self.options.trailer_lens.iter() { length += len + CRLF.len() as u64; } // Encoding terminator length += CRLF.len() as u64; Some(length) }\n} fn prefix_with_chunk_size(data: Bytes, chunk_size: u64) -> Bytes { // Len is the size of the entire chunk as defined in `AwsChunkedBodyOptions` let mut prefixed_data = BytesMut::from(format!(\"{:X?}\\r\\n\", chunk_size).as_bytes()); prefixed_data.extend_from_slice(&data); prefixed_data.into()\n} fn get_unsigned_chunk_bytes_length(payload_length: u64) -> u64 { let hex_repr_len = int_log16(payload_length); hex_repr_len + CRLF.len() as u64 + payload_length + CRLF.len() as u64\n} fn trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes: u64, trailer_map: Option,\n) -> Bytes { use std::fmt::Write; // On 32-bit operating systems, we might not be able to convert the u64 to a usize, so we just // use `String::new` in that case. let mut trailers = match usize::try_from(total_length_of_trailers_in_bytes) { Ok(total_length_of_trailers_in_bytes) => { String::with_capacity(total_length_of_trailers_in_bytes) } Err(_) => String::new(), }; let mut already_wrote_first_trailer = false; if let Some(trailer_map) = trailer_map { for (header_name, header_value) in trailer_map.into_iter() { match header_name { // New name, new value Some(header_name) => { if already_wrote_first_trailer { // First trailer shouldn't have a preceding CRLF, but every trailer after it should trailers.write_str(CRLF).unwrap(); } else { already_wrote_first_trailer = true; } trailers.write_str(header_name.as_str()).unwrap(); trailers.write_char(':').unwrap(); } // Same name, new value None => { trailers.write_char(',').unwrap(); } } trailers.write_str(header_value.to_str().unwrap()).unwrap(); } } // Write CRLF to end the body trailers.write_str(CRLF).unwrap(); // If we wrote at least one trailer, we need to write an extra CRLF if total_length_of_trailers_in_bytes != 0 { trailers.write_str(CRLF).unwrap(); } trailers.into()\n} impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { tracing::info!(\"polling AwsChunkedBody\"); let mut this = self.project(); match *this.state { AwsChunkedBodyState::WritingChunkSize => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(data))) => { // A chunk must be prefixed by chunk size in hexadecimal tracing::info!(\"writing chunk size and start of chunk\"); *this.state = AwsChunkedBodyState::WritingChunk; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); Poll::Ready(Some(Ok(prefix_with_chunk_size(data, total_chunk_size)))) } Poll::Ready(None) => { tracing::info!(\"chunk was empty, writing last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingChunk => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { tracing::info!(\"writing rest of chunk data\"); Poll::Ready(Some(Ok(data.copy_to_bytes(data.len())))) } Poll::Ready(None) => { tracing::info!(\"no more chunk data, writing CRLF and last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingTrailers => { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.state = AwsChunkedBodyState::Closed; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().fold(0, |acc, n| acc + n); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(Err(e)) => Poll::Ready(Some(Err(e))), }; } AwsChunkedBodyState::Closed => { return Poll::Ready(None); } } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // Trailers were already appended to the body because of the content encoding scheme Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.state == AwsChunkedBodyState::Closed } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n} // Used for finding how many hexadecimal digits it takes to represent a base 10 integer\nfn int_log16(mut i: T) -> u64\nwhere T: std::ops::DivAssign + PartialOrd + From + Copy,\n{ let mut len = 0; let zero = T::from(0); let sixteen = T::from(16); while i > zero { i /= sixteen; len += 1; } len\n} #[cfg(test)]\nmod tests { use super::AwsChunkedBody; use crate::content_encoding::AwsChunkedBodyOptions; use aws_smithy_checksums::body::ChecksumBody; use aws_smithy_http::body::SdkBody; use bytes::Buf; use bytes_utils::SegmentedBuf; use http_body::Body; use std::io::Read; #[tokio::test] async fn test_aws_chunked_encoded_body() { let input_text = \"Hello world\"; let sdk_body = SdkBody::from(input_text); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(input_text.len() as u64), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"B\\r\\nHello world\\r\\n0\\r\\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); } #[tokio::test] async fn test_empty_aws_chunked_encoded_body() { let sdk_body = SdkBody::from(\"\"); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(0), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"0\\r\\nx-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); }\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » AwsChunkedBody and AwsChunkedBodyOptions","id":"229","title":"AwsChunkedBody and AwsChunkedBodyOptions"},"23":{"body":"The fundamental trait for HTTP-based protocols is ParseHttpResponse","breadcrumbs":"Transport » HTTP Operations » Operation Parsing and Response Loading","id":"23","title":"Operation Parsing and Response Loading"},"230":{"body":"When sending checksum-verified requests with a streaming body, we must update the usual signing process. Instead of signing the request based on the request body's checksum, we must sign it with a special header instead: Authorization: \nx-amz-content-sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER Setting STREAMING-UNSIGNED-PAYLOAD-TRAILER tells the signer that we're sending an unsigned streaming body that will be followed by trailers. We can achieve this by: Adding a new variant to SignableBody: /// A signable HTTP request body\n#[derive(Debug, Clone, Eq, PartialEq)]\n#[non_exhaustive]\npub enum SignableBody<'a> { // existing variants have been omitted for brevity... /// An unsigned payload with trailers /// /// StreamingUnsignedPayloadTrailer is used for streaming requests where the contents of the /// body cannot be known prior to signing **AND** which include HTTP trailers. StreamingUnsignedPayloadTrailer,\n} Updating the CanonicalRequest::payload_hash method to include the new SignableBody variant: fn payload_hash<'b>(body: &'b SignableBody<'b>) -> Cow<'b, str> { // Payload hash computation // // Based on the input body, set the payload_hash of the canonical request: // Either: // - compute a hash // - use the precomputed hash // - use `UnsignedPayload` // - use `StreamingUnsignedPayloadTrailer` match body { SignableBody::Bytes(data) => Cow::Owned(sha256_hex_string(data)), SignableBody::Precomputed(digest) => Cow::Borrowed(digest.as_str()), SignableBody::UnsignedPayload => Cow::Borrowed(UNSIGNED_PAYLOAD), SignableBody::StreamingUnsignedPayloadTrailer => { Cow::Borrowed(STREAMING_UNSIGNED_PAYLOAD_TRAILER) } }\n} (in generated code) Inserting the SignableBody into the request property bag when making a checksum-verified streaming request: if self.checksum_algorithm.is_some() { request .properties_mut() .insert(aws_sig_auth::signer::SignableBody::StreamingUnsignedPayloadTrailer);\n} It's possible to send aws-chunked requests where each chunk is signed individually. Because this feature isn't strictly necessary for flexible checksums, I've avoided implementing it.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Sigv4 Update","id":"230","title":"Sigv4 Update"},"231":{"body":"In order to avoid writing lots of Rust in Kotlin, I have implemented request and response building functions as inlineables: Building checksum-validated requests with in-memory request bodies: // In aws/rust-runtime/aws-inlineable/src/streaming_body_with_checksum.rs\n/// Given a `&mut http::request::Request`, and checksum algorithm name, calculate a checksum and\n/// then modify the request to include the checksum as a header.\npub fn build_checksum_validated_request( request: &mut http::request::Request, checksum_algorithm: &str,\n) -> Result<(), aws_smithy_http::operation::BuildError> { let data = request.body().bytes().unwrap_or_default(); let mut checksum = aws_smithy_checksums::new_checksum(checksum_algorithm); checksum .update(data) .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; let checksum = checksum .finalize() .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; request.headers_mut().insert( aws_smithy_checksums::checksum_algorithm_to_checksum_header_name(checksum_algorithm), aws_smithy_types::base64::encode(&checksum[..]) .parse() .expect(\"base64-encoded checksums are always valid header values\"), ); Ok(())\n} Building checksum-validated requests with streaming request bodies: /// Given an `http::request::Builder`, `SdkBody`, and a checksum algorithm name, return a\n/// `Request` with checksum trailers where the content is `aws-chunked` encoded.\npub fn build_checksum_validated_request_with_streaming_body( request_builder: http::request::Builder, body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str,\n) -> Result, aws_smithy_http::operation::BuildError> { use http_body::Body; let original_body_size = body .size_hint() .exact() .expect(\"body must be sized if checksum is requested\"); let body = aws_smithy_checksums::body::ChecksumBody::new(body, checksum_algorithm); let checksum_trailer_name = body.trailer_name(); let aws_chunked_body_options = aws_http::content_encoding::AwsChunkedBodyOptions::new() .with_stream_length(original_body_size as usize) .with_trailer_len(body.trailer_length() as usize); let body = aws_http::content_encoding::AwsChunkedBody::new(body, aws_chunked_body_options); let encoded_content_length = body .size_hint() .exact() .expect(\"encoded_length must return known size\"); let request_builder = request_builder .header( http::header::CONTENT_LENGTH, http::HeaderValue::from(encoded_content_length), ) .header( http::header::HeaderName::from_static(\"x-amz-decoded-content-length\"), http::HeaderValue::from(original_body_size), ) .header( http::header::HeaderName::from_static(\"x-amz-trailer\"), checksum_trailer_name, ) .header( http::header::CONTENT_ENCODING, aws_http::content_encoding::header_value::AWS_CHUNKED.as_bytes(), ); let body = aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body)); request_builder .body(body) .map_err(|err| aws_smithy_http::operation::BuildError::Other(Box::new(err)))\n} Building checksum-validated responses: /// Given a `Response`, checksum algorithm name, and pre-calculated checksum, return a\n/// `Response` where the body will processed with the checksum algorithm and checked\n/// against the pre-calculated checksum.\npub fn build_checksum_validated_sdk_body( body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str, precalculated_checksum: bytes::Bytes,\n) -> aws_smithy_http::body::SdkBody { let body = aws_smithy_checksums::body::ChecksumValidatedBody::new( body, checksum_algorithm, precalculated_checksum.clone(), ); aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body))\n} /// Given the name of a checksum algorithm and a `HeaderMap`, extract the checksum value from the\n/// corresponding header as `Some(Bytes)`. If the header is unset, return `None`.\npub fn check_headers_for_precalculated_checksum( headers: &http::HeaderMap,\n) -> Option<(&'static str, bytes::Bytes)> { for header_name in aws_smithy_checksums::CHECKSUM_HEADERS_IN_PRIORITY_ORDER { if let Some(precalculated_checksum) = headers.get(&header_name) { let checksum_algorithm = aws_smithy_checksums::checksum_header_name_to_checksum_algorithm(&header_name); let precalculated_checksum = bytes::Bytes::copy_from_slice(precalculated_checksum.as_bytes()); return Some((checksum_algorithm, precalculated_checksum)); } } None\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Inlineables","id":"231","title":"Inlineables"},"232":{"body":"Codegen will be updated to insert the appropriate inlineable functions for operations that are tagged with the @httpchecksum trait. Some operations will require an MD5 checksum fallback if the user hasn't set a checksum themselves. Users also have the option of supplying a precalculated checksum of their own. This is already handled by our current header insertion logic and won't require updating the existing implementation. Because this checksum validation behavior is AWS-specific, it will be defined in SDK codegen.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Codegen","id":"232","title":"Codegen"},"233":{"body":"Implement codegen for building checksum-validated requests: In-memory request bodies Support MD5 fallback behavior for services that enable it. Streaming request bodies Implement codegen for building checksum-validated responses:","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementation Checklist","id":"233","title":"Implementation Checklist"},"234":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. SDK customers occasionally need to add additional HTTP headers to requests, and currently, the SDK has no easy way to accomplish this. At time of writing, the lower level Smithy client has to be used to create an operation, and then the HTTP request augmented on that operation type. For example: let input = SomeOperationInput::builder().some_value(5).build()?; let operation = { let op = input.make_operation(&service_config).await?; let (request, response) = op.into_request_response(); let request = request.augment(|req, _props| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); Result::<_, Infallible>::Ok(req) })?; Operation::from_parts(request, response)\n}; let response = smithy_client.call(operation).await?; This approach is both difficult to discover and implement since it requires acquiring a Smithy client rather than the generated fluent client, and it's anything but ergonomic. This RFC proposes an easier way to augment requests that is compatible with the fluent client.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » RFC: Customizable Client Operations","id":"234","title":"RFC: Customizable Client Operations"},"235":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Terminology","id":"235","title":"Terminology"},"236":{"body":"The code generated fluent builders returned by the fluent client should have a method added to them, similar to send, but that returns a customizable request. The customer experience should look as follows: let response = client.some_operation() .some_value(5) .customize() .await? .mutate_request(|mut req| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); }) .send() .await?; This new async customize method would return the following: pub struct CustomizableOperation { handle: Arc, operation: Operation,\n} impl CustomizableOperation { // Allows for customizing the operation's request fn map_request( mut self, f: impl FnOnce(Request) -> Result, E>, ) -> Result { let (request, response) = self.operation.into_request_response(); let request = request.augment(|req, _props| f(req))?; self.operation = Operation::from_parts(request, response); Ok(self) } // Convenience for `map_request` where infallible direct mutation of request is acceptable fn mutate_request( mut self, f: impl FnOnce(&mut Request) -> (), ) -> Self { self.map_request(|mut req| { f(&mut req); Result::<_, Infallible>::Ok(req) }).expect(\"infallible\"); Ok(self) } // Allows for customizing the entire operation fn map_operation( mut self, f: impl FnOnce(Operation) -> Result, E>, ) -> Result { self.operation = f(self.operation)?; Ok(self) } // Direct access to read the request fn request(&self) -> &Request { self.operation.request() } // Direct access to mutate the request fn request_mut(&mut self) -> &mut Request { self.operation.request_mut() } // Sends the operation's request async fn send(self) -> Result> where O: ParseHttpResponse> + Send + Sync + Clone + 'static, E: std::error::Error, R: ClassifyResponse, SdkError> + Send + Sync, { self.handle.client.call(self.operation).await }\n} Additionally, for those who want to avoid closures, the Operation type will have request and request_mut methods added to it to get direct access to its underlying HTTP request. The CustomizableOperation type will then mirror these functions so that the experience can look as follows: let mut operation = client.some_operation() .some_value(5) .customize() .await?;\noperation.request_mut() .headers_mut() .insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") );\nlet response = operation.send().await?;","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Proposal","id":"236","title":"Proposal"},"237":{"body":"In the proposal above, customers must await the result of customize in order to get the CustomizableOperation. This is a result of the underlying map_operation function that customize needs to call being async, which was made async during the implementation of customizations for Glacier (see #797, #801, and #1474). It is possible to move these Glacier customizations into middleware to make map_operation sync, but keeping it async is much more future-proof since if a future customization or feature requires it to be async, it won't be a breaking change in the future.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why not remove async from customize to make this more ergonomic?","id":"237","title":"Why not remove async from customize to make this more ergonomic?"},"238":{"body":"Alternatively, the name build could be used, but this increases the odds that customers won't realize that they can call send directly, and then call a longer build/send chain when customization isn't needed: client.some_operation() .some_value() .build() // Oops, didn't need to do this .send() .await?; vs. client.some_operation() .some_value() .send() .await?; Additionally, no AWS services at time of writing have a member named customize that would conflict with the new function, so adding it would not be a breaking change.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why the name customize?","id":"238","title":"Why the name customize?"},"239":{"body":"Create CustomizableOperation as an inlinable, and code generate it into client so that it has access to Handle Code generate the customize method on fluent builders Update the RustReservedWords class to include customize Add ability to mutate the HTTP request on Operation Add examples for both approaches Comment on older discussions asking about how to do this with this improved approach","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Changes Checklist","id":"239","title":"Changes Checklist"},"24":{"body":"Signing, endpoint specification, and logging are all handled as middleware. The Rust SDK takes a minimalist approach to middleware: Middleware is defined as minimally as possible, then adapted into the middleware system used by the IO layer. Tower is the de facto standard for HTTP middleware in Rust—we will probably use it. But we also want to make our middleware usable for users who aren't using Tower (or if we decide to not use Tower in the long run). Because of this, rather than implementing all our middleware as \"Tower Middleware\", we implement it narrowly (e.g. as a function that operates on operation::Request), then define optional adapters to make our middleware tower compatible.","breadcrumbs":"Transport » HTTP Middleware » HTTP middleware","id":"24","title":"HTTP middleware"},"240":{"body":"Status: Accepted Smithy provides a sensitive trait which exists as a @sensitive field annotation syntactically and has the following semantics: Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). This RFC is concerned with solving the problem of honouring this specification in the context of logging. Progress has been made towards this goal in the form of the Sensitive Trait PR , which uses code generation to remove sensitive fields from Debug implementations. The problem remains open due to the existence of HTTP binding traits and a lack of clearly defined user guidelines which customers may follow to honour the specification. This RFC proposes: A new logging middleware is generated and applied to each OperationHandler Service. A developer guideline is provided on how to avoid violating the specification.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » RFC: Logging in the Presence of Sensitive Data","id":"240","title":"RFC: Logging in the Presence of Sensitive Data"},"241":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Runtime crate : A crate existing within the rust-runtime folder, used to implement shared functionalities that do not have to be code-generated. Service : The tower::Service trait. The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Potentially sensitive : Data that could be bound to a sensitive field of a structure, for example via the HTTP Binding Traits .","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Terminology","id":"241","title":"Terminology"},"242":{"body":"","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Background","id":"242","title":"Background"},"243":{"body":"Smithy provides various HTTP binding traits. These allow protocols to configure a HTTP request by way of binding fields to parts of the request. For this reason sensitive data might be unintentionally leaked through logging of a bound request. Trait Configurable httpHeader Headers httpPrefixHeaders Headers httpLabel URI httpPayload Payload httpQuery Query Parameters httpResponseCode Status Code Each of these configurable parts must therefore be logged cautiously.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Binding Traits","id":"243","title":"HTTP Binding Traits"},"244":{"body":"It would be unfeasible to forbid the logging of sensitive data all together using the type system. With the current API, the customer will always have an opportunity to log a request containing sensitive data before it enters the Service> that we provide to them. // The API provides us with a `Service>`\nlet app: Router = OperationRegistryBuilder::default().build().expect(\"unable to build operation registry\").into(); // We can `ServiceExt::map_request` log a request with potentially sensitive data\nlet app = app.map_request(|request| { info!(?request); request }); A more subtle violation of the specification may occur when the customer enables verbose logging - a third-party dependency might simply log data marked as sensitive, for example tokio or hyper. These two cases illustrate that smithy-rs can only prevent violation of the specification in a restricted scope - logs emitted from generated code and the runtime crates. A smithy-rs specific guideline should be available to the customer which outlines how to avoid violating the specification in areas outside of our control.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Scope and Guidelines","id":"244","title":"Scope and Guidelines"},"245":{"body":"The sensitivity and HTTP bindings are declared within specific structures/operations. For this reason, in the general case, it's unknowable whether or not any given part of a request is sensitive until we determine which operation is tasked with handling the request and hence which fields are bound. Implementation wise, this means that any middleware applied before routing has taken place cannot log anything potentially sensitive without performing routing logic itself. Note that: We are not required to deserialize the entire request before we can make judgments on what data is sensitive or not - only which operation it has been routed to. We are permitted to emit logs prior to routing when: they contain no potentially sensitive data, or the request failed to route, in which case it's not subject to the constraints of an operation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Routing","id":"245","title":"Routing"},"246":{"body":"The crates existing in rust-runtime are not code generated - their source code is agnostic to the specific model in use. For this reason, if such a crate wanted to log potentially sensitive data then there must be a way to conditionally toggle that log without manipulation of the source code. Any proposed solution must acknowledge this concern.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Runtime Crates","id":"246","title":"Runtime Crates"},"247":{"body":"This proposal serves to honor the sensitivity specification via code generation of a logging middleware which is aware of the sensitivity, together with a developer contract disallowing logging potentially sensitive data in the runtime crates. A developer guideline should be provided in addition to the middleware. All data known to be sensitive should be replaced with \"{redacted}\" when logged. Implementation wise this means that tracing::Event s and tracing::Span s of the form debug!(field = \"sensitive data\") and span!(..., field = \"sensitive data\") must become debug!(field = \"{redacted}\") and span!(..., field = \"{redacted}\").","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Proposal","id":"247","title":"Proposal"},"248":{"body":"Developers might want to observe sensitive data for debugging purposes. It should be possible to opt-out of the redactions by enabling a feature flag unredacted-logging (which is disabled by default). To prevent excessive branches such as if cfg!(feature = \"unredacted-logging\") { debug!(%data, \"logging here\");\n} else { debug!(data = \"{redacted}\", \"logging here\");\n} the following wrapper should be provided from a runtime crate: pub struct Sensitive(T); impl Debug for Sensitive\nwhere T: Debug\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} impl Display for Sensitive\nwhere T: Display\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} In which case the branch above becomes debug!(sensitive_data = %Sensitive(data));","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Debug Logging","id":"248","title":"Debug Logging"},"249":{"body":"Using the smithy model, for each operation, a logging middleware should be generated. Through the model, the code generation knows which fields are sensitive and which HTTP bindings exist, therefore the logging middleware can be carefully crafted to avoid leaking sensitive data. As a request enters this middleware it should record the method, HTTP headers, status code, and URI in a tracing::span. As a response leaves this middleware it should record the HTTP headers and status code in a tracing::debug. The following model @readonly\n@http(uri: \"/inventory/{name}\", method: \"GET\")\noperation Inventory { input: Product, output: Stocked\n} @input\nstructure Product { @required @sensitive @httpLabel name: String\n} @output\nstructure Stocked { @sensitive @httpResponseCode code: String,\n} should generate the following // NOTE: This code is intended to show behavior - it does not compile pub struct InventoryLogging { inner: S, operation_name: &'static str\n} impl InventoryLogging { pub fn new(inner: S) -> Self { Self { inner } }\n} impl Service> for InventoryLogging\nwhere S: Service>\n{ type Response = Response; type Error = S::Error; type Future = /* Implementation detail */; fn call(&mut self, request: Request) -> Self::Future { // Remove sensitive data from parts of the HTTP let uri = /* redact {name} from URI */; let headers = /* no redactions */; let fut = async { let response = self.inner.call(request).await; let status_code = /* redact status code */; let headers = /* no redactions */; debug!(%status_code, ?headers, \"response\"); response }; // Instrument the future with a span let span = debug_span!(\"request\", operation = %self.operation_name, method = %request.method(), %uri, ?headers); fut.instrument(span) }\n}","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Code Generated Logging Middleware","id":"249","title":"Code Generated Logging Middleware"},"25":{"body":"The Smithy client provides a default TLS connector, but a custom one can be plugged in. rustls is enabled with the feature flag rustls. The client had previously (prior to version 0.56.0) supported native-tls. You can continue to use a client whose TLS implementation is backed by native-tls by passing in a custom connector. Check out the custom_connectors.rs tests in the pokemon-service-tls example crate.","breadcrumbs":"Transport » TLS Connector","id":"25","title":"Transport"},"250":{"body":"The Service::call path, seen in Code Generated Logging Middleware , is latency-sensitive. Careful implementation is required to avoid excess allocations during redaction of sensitive data. Wrapping Uri and HeaderMap then providing a new Display / Debug implementation which skips over the sensitive data is preferable over allocating a new String/HeaderMap and then mutating it. These wrappers should be provided alongside the Sensitive struct described in Debug Logging . If they are implemented on top of Sensitive, they will inherit the same behavior - allowing redactions to be toggled using unredacted-logging feature flag.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Debug/Display Wrappers","id":"250","title":"HTTP Debug/Display Wrappers"},"251":{"body":"This logging middleware should be applied outside of the OperationHandler after its construction in the (generated) operation_registry.rs file. The middleware should preserve the associated types of the OperationHandler (Response = Response, Error = Infallible) to cause minimal disruption. An easy position to apply the logging middleware is illustrated below in the form of Logging{Operation}::new: let empty_operation = LoggingEmptyOperation::new(operation(registry.empty_operation));\nlet get_pokemon_species = LoggingPokemonSpecies::new(operation(registry.get_pokemon_species));\nlet get_server_statistics = LoggingServerStatistics::new(operation(registry.get_server_statistics));\nlet routes = vec![ (BoxCloneService::new(empty_operation), empty_operation_request_spec), (BoxCloneService::new(get_pokemon_species), get_pokemon_species_request_spec), (BoxCloneService::new(get_server_statistics), get_server_statistics_request_spec),\n];\nlet router = aws_smithy_http_server::routing::Router::new_rest_json_router(routes); Although an acceptable first step, putting logging middleware here is suboptimal - the Router allows a tower::Layer to be applied to the operation by using the Router::layer method. This middleware will be applied outside of the logging middleware and, as a result, will not be subject to the span of any middleware. Therefore, the Router must be changed to allow for middleware to be applied within the logging middleware rather than outside of it. This is a general problem, not specific to this proposal. For example, Use Request Extensions must also solve this problem. Fortunately, this problem is separable from the actual implementation of the logging middleware and we can get immediate benefit by application of it in the suboptimal position described above.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Middleware Position","id":"251","title":"Middleware Position"},"252":{"body":"There is need for logging within the Router implementation - this is a crucial area of business logic. As mentioned in the Routing section, we are permitted to log potentially sensitive data in cases where requests fail to get routed to an operation. In the case of AWS JSON 1.0 and 1.1 protocols, the request URI is always /, putting it outside of the reach of the @sensitive trait. We therefore have the option to log it before routing occurs. We make a choice not to do this in order to remove the special case - relying on the logging layer to log URIs when appropriate.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Logging within the Router","id":"252","title":"Logging within the Router"},"253":{"body":"A guideline should be made available, which includes: The HTTP bindings traits and why they are of concern in the presence of @sensitive. The Debug implementation on structures. How to use the Sensitive struct, HTTP wrappers, and the unredacted-logging feature flag described in Debug Logging and HTTP Debug/Display Wrappers . A warning against the two potential leaks described in Scope and Guidelines : Sensitive data leaking from third-party dependencies. Sensitive data leaking from middleware applied to the Router.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Developer Guideline","id":"253","title":"Developer Guideline"},"254":{"body":"All of the following proposals are compatible with, and benefit from, Debug Logging , HTTP Debug/Display Wrappers , and Developer Guideline portions of the main proposal. The main proposal disallows the logging of potentially sensitive data in the runtime crates, instead opting for a dedicated code generated logging middleware. In contrast, the following proposals all seek ways to accommodate logging of potentially sensitive data in the runtime crates.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Alternative Proposals","id":"254","title":"Alternative Proposals"},"255":{"body":"Request extensions can be used to adjoin data to a Request as it passes through the middleware. Concretely, they exist as the type map http::Extensions accessed via http::extensions and http::extensions_mut . These can be used to provide data to middleware interested in logging potentially sensitive data. struct Sensitivity { /* Data concerning which parts of the request are sensitive */\n} struct Middleware { inner: S\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if let Some(sensitivity) = request.extensions().get::() { if sensitivity.is_method_sensitive() { debug!(method = %request.method()); } } /* ... */ self.inner.call(request) }\n} A middleware layer must be code generated (much in the same way as the logging middleware) which is dedicated to inserting the Sensitivity struct into the extensions of each incoming request. impl Service> for SensitivityInserter\nwhere S: Service>\n{ /* ... */ fn call(&mut self, request: Request) -> Self::Future { let sensitivity = Sensitivity { /* .. */ }; request.extensions_mut().insert(sensitivity); self.inner.call(request) }\n} Advantages Applicable to all middleware which takes http::Request. Does not pollute the API of the middleware - code internal to middleware simply inspects the request's extensions and performs logic based on its value. Disadvantages The sensitivity and HTTP bindings are known at compile time whereas the insertion/retrieval of the extension data is done at runtime. http::Extensions is approximately a HashMap> so lookup/insertion involves indirection/cache misses/heap allocation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Use Request Extensions","id":"255","title":"Use Request Extensions"},"256":{"body":"It is possible that sensitivity is a parameter passed to middleware during construction. This is similar in nature to Use Request Extensions except that the Sensitivity is passed to middleware during construction. struct Middleware { inner: S, sensitivity: Sensitivity\n} impl Middleware { pub fn new(inner: S) -> Self { /* ... */ } pub fn new_with_sensitivity(inner: S, sensitivity: Sensitivity) -> Self { /* ... */ }\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if self.sensitivity.is_method_sensitive() { debug!(method = %Sensitive(request.method())); } /* ... */ self.inner.call(request) }\n} It would then be required that the code generation responsible constructing a Sensitivity for each operation. Additionally, if any middleware is being applied to a operation then the code generation would be responsible for passing that middleware the appropriate Sensitivity before applying it. Advantages Applicable to all middleware. As the Sensitivity struct will be known statically, the compiler will remove branches, making it cheap. Disadvantages Pollutes the API of middleware.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Accommodate the Sensitivity in Middleware API","id":"256","title":"Accommodate the Sensitivity in Middleware API"},"257":{"body":"Distinct from tower::Layer, a tracing::Layer is a \"composable handler for tracing events\". It would be possible to write an implementation which would filter out events which contain sensitive data. Examples of filtering tracing::Layers already exist in the form of the EnvFilter and Targets . It is unlikely that we'll be able to leverage them for our use, but the underlying principle remains the same - the tracing::Layer inspects tracing::Events/tracing::Spans, filtering them based on some criteria. Code generation would be need to be used in order to produce the filtering criteria from the models. Internal developers would need to adhere to a common set of field names in order for them to be subject to the filtering. Spans would need to be opened after routing occurs in order for the tracing::Layer to know which operation Events are being produced within and hence which filtering rules to apply. Advantages Applicable to all middleware. Good separation of concerns: Does not pollute the API of the middleware No specific logic required within middleware. Disadvantages Complex implementation. Not necessarily fast. tracing::Layers seem to only support filtering entire Events, rather than more fine grained removal of fields.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Redact values using a tracing Layer","id":"257","title":"Redact values using a tracing Layer"},"258":{"body":"Implement and integrate code generated logging middleware. https://github.com/awslabs/smithy-rs/pull/1550 Add logging to Router implementation. https://github.com/awslabs/smithy-rs/issues/1666 Write developer guideline. https://github.com/awslabs/smithy-rs/pull/1772 Refactor Router to allow for better positioning described in Middleware Position . https://github.com/awslabs/smithy-rs/pull/1620 https://github.com/awslabs/smithy-rs/pull/1679 https://github.com/awslabs/smithy-rs/pull/1693","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Changes Checklist","id":"258","title":"Changes Checklist"},"259":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how client and server will use errors defined in @streaming unions (event streams).","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » RFC: Errors for event streams","id":"259","title":"RFC: Errors for event streams"},"26":{"body":"The Rust SDK uses Smithy models and code generation tooling to generate an SDK. Smithy is an open source IDL (interface design language) developed by Amazon. Although the Rust SDK uses Smithy models for AWS services, smithy-rs and Smithy models in general are not AWS specific. Design documentation here covers both our implementation of Smithy Primitives (e.g. simple shape) as well as more complex Smithy traits like Endpoint .","breadcrumbs":"Smithy » Smithy","id":"26","title":"Smithy"},"260":{"body":"In the current version of smithy-rs, customers who want to use errors in event streams need to use them as so: stream! { yield Ok(EventStreamUnion::ErrorVariant ...)\n} Furthermore, there is no support for @errors in event streams being terminal; that is, when an error is sent, it does not signal termination and thus does not complete the stream. This RFC proposes to make changes to: terminate the stream upon receiving a modeled error change the API so that customers will write their business logic in a more Rust-like experience: stream! { yield Err(EventStreamUnionError::ErrorKind ...)\n} Thus any Err(_) from the stream is terminal, rather than any Ok(x) with x being matched against the set of modeled variant errors in the union.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » The user experience if this RFC is implemented","id":"260","title":"The user experience if this RFC is implemented"},"261":{"body":"In order to implement this feature: Errors modeled in streaming unions are going to be treated like operation errors They are in the error:: namespace They have the same methods operation errors have (name on the server, metadata on the client and so on) They are not variants in the corresponding error structure Errors need to be marshalled and unmarshalled Receiver must treat any error coming from the other end as terminal The code examples below have been generated using the following model : @http(uri: \"/capture-pokemon-event/{region}\", method: \"POST\")\noperation CapturePokemonOperation { input: CapturePokemonOperationEventsInput, output: CapturePokemonOperationEventsOutput, errors: [UnsupportedRegionError, ThrottlingError]\n} @input\nstructure CapturePokemonOperationEventsInput { @httpPayload events: AttemptCapturingPokemonEvent, @httpLabel @required region: String,\n} @output\nstructure CapturePokemonOperationEventsOutput { @httpPayload events: CapturePokemonEvents,\n} @streaming\nunion AttemptCapturingPokemonEvent { event: CapturingEvent, masterball_unsuccessful: MasterBallUnsuccessful,\n} structure CapturingEvent { @eventPayload payload: CapturingPayload,\n} structure CapturingPayload { name: String, pokeball: String,\n} @streaming\nunion CapturePokemonEvents { event: CaptureEvent, invalid_pokeball: InvalidPokeballError, throttlingError: ThrottlingError,\n} structure CaptureEvent { @eventHeader name: String, @eventHeader captured: Boolean, @eventHeader shiny: Boolean, @eventPayload pokedex_update: Blob,\n} @error(\"server\")\nstructure UnsupportedRegionError { @required region: String,\n}\n@error(\"client\")\nstructure InvalidPokeballError { @required pokeball: String,\n}\n@error(\"server\")\nstructure MasterBallUnsuccessful { @required message: String,\n}\n@error(\"client\")\nstructure ThrottlingError {} Wherever irrelevant, documentation and other lines are stripped out from the code examples below. Errors in streaming unions The error in AttemptCapturingPokemonEvent is modeled as follows. On the client, pub struct AttemptCapturingPokemonEventError { pub kind: AttemptCapturingPokemonEventErrorKind, pub(crate) meta: aws_smithy_types::Error,\n}\npub enum AttemptCapturingPokemonEventErrorKind { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful), Unhandled(Box),\n} On the server, pub enum AttemptCapturingPokemonEventError { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful),\n} Both are modeled as normal errors, where the name comes from Error with a prefix of the union's name. In fact, both the client and server generate operation errors and event stream errors the same way. Event stream errors have their own marshaller . To make it work for users to stream errors, EventStreamSender<>, in addition to the union type T, takes an error type E; that is, the AttemptCapturingPokemonEventError in the example. This means that an error from the stream is marshalled and sent as a data structure similarly to the union's non-error members. On the other side, the Receiver<> needs to terminate the stream upon receiving any error . A terminated stream has no more data and will always be a bug to use it. An example of how errors can be used on clients, extracted from this test : yield Err(AttemptCapturingPokemonEventError::new( AttemptCapturingPokemonEventErrorKind::MasterBallUnsuccessful(MasterBallUnsuccessful::builder().build()), Default::default()\n)); Because unions can be used in input or output of more than one operation, errors must be generated once as they are in the error:: namespace.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » How to actually implement this RFC","id":"261","title":"How to actually implement this RFC"},"262":{"body":"Errors are in the error:: namespace and created as operation errors Errors can be sent to the stream Errors terminate the stream Customers' experience using errors mirrors the Rust way: Err(error::StreamingError ...)","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » Changes checklist","id":"262","title":"Changes checklist"},"263":{"body":"Status: Accepted One might characterize smithy-rs as a tool for transforming a Smithy service into a tower::Service builder. A Smithy model defines behavior of the generated service partially - handlers must be passed to the builder before the tower::Service is fully specified. This builder structure is the primary API surface we provide to the customer, as a result, it is important that it meets their needs. This RFC proposes a new builder, deprecating the existing one, which addresses API deficiencies and takes steps to improve performance.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » RFC: Service Builder Improvements","id":"263","title":"RFC: Service Builder Improvements"},"264":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Smithy Service : The entry point of an API that aggregates resources and operations together within a Smithy model. Described in detail here . Service : The tower::Service trait is an interface for writing network applications in a modular and reusable way. Services act on requests to produce responses. Service Builder : A tower::Service builder, generated from a Smithy service, by smithy-rs. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Handler : A closure defining the behavior of a particular request after routing. These are provided to the service builder to complete the description of the service.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Terminology","id":"264","title":"Terminology"},"265":{"body":"To provide context for the proposal we perform a survey of the current state of affairs. The following is a reference model we will use throughout the RFC: operation Operation0 { input: Input0, output: Output0\n} operation Operation1 { input: Input1, output: Output1\n} @restJson1\nservice Service0 { operations: [ Operation0, Operation1, ]\n} We have purposely omitted details from the model that are unimportant to describing the proposal. We also omit distracting details from the Rust snippets. Code generation is linear in the sense that, code snippets can be assumed to extend to multiple operations in a predictable way. In the case where we do want to speak generally about an operation and its associated types, we use {Operation}, for example {Operation}Input is the input type of an unspecified operation. Here is a quick example of what a customer might write when using the service builder: async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler1(input: Operation1Input) -> Operation1Output { todo!()\n} let app: Router = OperationRegistryBuilder::default() // Use the setters .operation0(handler0) .operation1(handler1) // Convert to `OperationRegistry` .build() .unwrap() // Convert to `Router` .into(); During the survey we touch on the major mechanisms used to achieve this API.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Background","id":"265","title":"Background"},"266":{"body":"A core concept in the service builder is the Handler trait: pub trait Handler { async fn call(self, req: http::Request) -> http::Response;\n} Its purpose is to provide an even interface over closures of the form FnOnce({Operation}Input) -> impl Future and FnOnce({Operation}Input, State) -> impl Future. It's this abstraction which allows the customers to supply both async fn handler(input: {Operation}Input) -> {Operation}Output and async fn handler(input: {Operation}Input, state: Extension) -> {Operation}Output to the service builder. We generate Handler implementations for said closures in ServerOperationHandlerGenerator.kt : impl Handler<(), Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input let output = self(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} impl Handler, Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input, Extension) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input and fetched extension data let extension = Extension(request.extensions().get::().clone()); let output = self(input, extension).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Creating {Operation}Input from a http::Request and http::Response from a {Operation}Output involves protocol aware serialization/deserialization, for example, it can involve the HTTP binding traits . The RuntimeError enumerates error cases such as serialization/deserialization failures, extensions().get::() failures, etc. We omit error handling in the snippet above, but, in full, it also involves protocol aware conversions from the RuntimeError to http::Response. The reader should make note of the influence of the model on the different sections of this procedure. The request.extensions().get::() present in the Fun: FnOnce(Operation0Input, Extension) -> Fut implementation is the current approach to injecting state into handlers. The customer is required to apply a AddExtensionLayer to the output of the service builder so that, when the request reaches the handler, the extensions().get::() will succeed. To convert the closures described above into a Service an OperationHandler is used: pub struct OperationHandler { handler: H,\n} impl Service> for OperationHandler\nwhere H: Handler,\n{ type Response = http::Response; type Error = Infallible; #[inline] fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, req: Request) -> Result { self.handler.call(req).await.map(Ok) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Handlers","id":"266","title":"Handlers"},"267":{"body":"The service builder we provide to the customer is the OperationRegistryBuilder, generated from ServerOperationRegistryGenerator.kt . Currently, the reference model would generate the following OperationRegistryBuilder and OperationRegistry: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option,\n} pub struct OperationRegistry { operation1: Op0, operation2: Op1,\n} The OperationRegistryBuilder includes a setter per operation, and a fallible build method: impl OperationRegistryBuilder { pub fn operation0(mut self, value: Op0) -> Self { self.operation0 = Some(value); self } pub fn operation1(mut self, value: Op1) -> Self { self.operation1 = Some(value); self } pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) }\n} The OperationRegistry does not include any methods of its own, however it does enjoy a From for Router implementation: impl From> for Router\nwhere Op0: Handler, Op1: Handler,\n{ fn from(registry: OperationRegistry) -> Self { let operation0_request_spec = /* Construct Operation0 routing information */; let operation1_request_spec = /* Construct Operation1 routing information */; // Convert handlers into boxed services let operation0_svc = Box::new(OperationHandler::new(registry.operation0)); let operation1_svc = Box::new(OperationHandler::new(registry.operation1)); // Initialize the protocol specific router // We demonstrate it here with `new_rest_json_router`, but note that there is a different router constructor // for each protocol. aws_smithy_http_server::routing::Router::new_rest_json_router(vec![ ( operation0_request_spec, operation0_svc ), ( operation1_request_spec, operation1_svc ) ]) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Builder","id":"267","title":"Builder"},"268":{"body":"The aws_smithy_http::routing::Router provides the protocol aware routing of requests to their target , it exists as pub struct Route { service: Box>,\n} enum Routes { RestXml(Vec<(Route, RequestSpec)>), RestJson1(Vec<(Route, RequestSpec)>), AwsJson1_0(TinyMap), AwsJson11(TinyMap),\n} pub struct Router { routes: Routes,\n} and enjoys the following Service implementation: impl Service for Router\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, request: http::Request) -> Result { match &self.routes { Routes::/* protocol */(routes) => { let route: Result = /* perform route matching logic */; match route { Ok(ok) => ok.oneshot().await, Err(err) => /* Convert routing error into http::Response */ } } } }\n} Along side the protocol specific constructors, Router includes a layer method. This provides a way for the customer to apply a tower::Layer to all routes. For every protocol, Router::layer has the approximately the same behavior: let new_routes = old_routes .into_iter() // Apply the layer .map(|route| layer.layer(route)) // Re-box the service, to restore `Route` type .map(|svc| Box::new(svc)) // Collect the iterator back into a collection (`Vec` or `TinyMap`) .collect();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Router","id":"268","title":"Router"},"269":{"body":"Historically, smithy-rs has borrowed from axum . Despite various divergences the code bases still have much in common: Reliance on Handler trait to abstract over different closure signatures: axum::handler::Handler Handlers A mechanism for turning H: Handler into a tower::Service: axum::handler::IntoService OperationHandler A Router to route requests to various handlers: axum::Router aws_smithy_http_server::routing::Router To identify where the implementations should differ we should classify in what ways the use cases differ. There are two primary areas which we describe below. Extractors and Responses In axum there is a notion of Extractor , which allows the customer to easily define a decomposition of an incoming http::Request by specifying the arguments to the handlers. For example, async fn request(Json(payload): Json, Query(params): Query>, headers: HeaderMap) { todo!()\n} is a valid handler - each argument satisfies the axum::extract::FromRequest trait, therefore satisfies one of axums blanket Handler implementations: macro_rules! impl_handler { ( $($ty:ident),* $(,)? ) => { impl Handler<($($ty,)*)> for F where F: FnOnce($($ty,)*) -> Fut + Clone + Send + 'static, Fut: Future + Send, Res: IntoResponse, $( $ty: FromRequest + Send,)* { fn call(self, req: http::Request) -> Self::Future { async { let mut req = RequestParts::new(req); $( let $ty = match $ty::from_request(&mut req).await { Ok(value) => value, Err(rejection) => return rejection.into_response(), }; )* let res = self($($ty,)*).await; res.into_response() } } } };\n} The implementations of Handler in axum and smithy-rs follow a similar pattern - convert http::Request into the closure's input, run the closure, convert the output of the closure to http::Response. In smithy-rs we do not need a general notion of \"extractor\" - the http::Request decomposition is specified by the Smithy model, whereas in axum it's defined by the handlers signature. Despite the Smithy specification the customer may still want an \"escape hatch\" to allow them access to data outside of the Smithy service inputs, for this reason we should continue to support a restricted notion of extractor. This will help support use cases such as passing lambda_http::Context through to the handler despite it not being modeled in the Smithy model. Dual to FromRequest is the axum::response::IntoResponse trait. This plays the role of converting the output of the handler to http::Response. Again, the difference between axum and smithy-rs is that smithy-rs has the conversion from {Operation}Output to http::Response specified by the Smithy model, whereas in axum the customer is free to specify a return type which implements axum::response::IntoResponse. Routing The Smithy model not only specifies the http::Request decomposition and http::Response composition for a given service, it also determines the routing. The From implementation, described in Builder , yields a fully formed router based on the protocol and http traits specified. This is in contrast to axum, where the user specifies the routing by use of various combinators included on the axum::Router, applied to other tower::Services. In an axum application one might encounter the following code: let user_routes = Router::new().route(\"/:id\", /* service */); let team_routes = Router::new().route(\"/\", /* service */); let api_routes = Router::new() .nest(\"/users\", user_routes) .nest(\"/teams\", team_routes); let app = Router::new().nest(\"/api\", api_routes); Note that, in axum handlers are eagerly converted to a tower::Service (via IntoService) before they are passed into the Router. In contrast, in smithy-rs, handlers are passed into a builder and then the conversion to tower::Service is performed (via OperationHandler). Introducing state to handlers in axum is done in the same way as smithy-rs, described briefly in Handlers - a layer is used to insert state into incoming http::Requests and the Handler implementation pops it out of the type map layer. In axum, if a customer wanted to scope state to all routes within /users/ they are able to do the following: async fn handler(Extension(state): Extension) -> /* Return Type */ {} let api_routes = Router::new() .nest(\"/users\", user_routes.layer(Extension(/* state */))) .nest(\"/teams\", team_routes); In smithy-rs a customer is only able to apply a layer around the aws_smithy_http::routing::Router or around every route via the layer method described above.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Comparison to Axum","id":"269","title":"Comparison to Axum"},"27":{"body":"Smithy introduces a few concepts that are defined here: Shape: The core Smithy primitive. A smithy model is composed of nested shapes defining an API. Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt . Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately. Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a \"Rust block\" of code. writer.rustBlock(\"struct Model\") { model.fields.forEach { write(\"${field.name}: #T\", field.symbol) }\n} This would produce something like: struct Model { field1: u32, field2: String\n} Generators: A Generator, e.g. StructureGenerator, UnionGenerator generates more complex Rust code from a Smithy model. Protocol generators pull these individual tools together to generate code for an entire service / protocol. A developer's view of code generation can be found in this document .","breadcrumbs":"Smithy » Internals","id":"27","title":"Internals"},"270":{"body":"The proposal is presented as a series of compatible transforms to the existing service builder, each paired with a motivation. Most of these can be independently implemented, and it is stated in the cases where an interdependency exists. Although presented as a mutation to the existing service builder, the actual implementation should exist as an entirely separate builder, living in a separate namespace, reusing code generation from the old builder, while exposing a new Rust API. Preserving the old API surface will prevent breakage and make it easier to perform comparative benchmarks and testing.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Proposal","id":"270","title":"Proposal"},"271":{"body":"As described in Builder , the customer is required to perform two conversions. One from OperationRegistryBuilder via OperationRegistryBuilder::build, the second from OperationRegistryBuilder to Router via the From for Router implementation. The intermediary stop at OperationRegistry is not required and can be removed.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Remove two-step build procedure","id":"271","title":"Remove two-step build procedure"},"272":{"body":"As described in Builder , the OperationRegistryBuilder::build method is fallible - it yields a runtime error when one of the handlers has not been set. pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) } We can do away with fallibility if we allow for on Op0, Op1 to switch types during build and remove the Option from around the fields. The OperationRegistryBuilder then becomes struct OperationRegistryBuilder { operation_0: Op0, operation_1: Op1\n} impl OperationRegistryBuilder { pub fn operation0(mut self, value: NewOp0) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: value, operation1: self.operation1 } } pub fn operation1(mut self, value: NewOp1) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: self.operation0, operation1: value } }\n} impl OperationRegistryBuilder\nwhere Op0: Handler, Op1: Handler,\n{ pub fn build(self) -> OperationRegistry { OperationRegistry { operation0: self.operation0, operation1: self.operation1, } }\n} The customer will now get a compile time error rather than a runtime error when they fail to specify a handler.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Statically check for missing Handlers","id":"272","title":"Statically check for missing Handlers"},"273":{"body":"To construct a Router, the customer must either give a type ascription let app: Router = /* Service builder */.into(); or be explicit about the Router namespace let app = Router::from(/* Service builder */); If we switch from a From for Router to a build method on OperationRegistry the customer may simply let app = /* Service builder */.build(); There already exists a build method taking OperationRegistryBuilder to OperationRegistry, this is removed in Remove two-step build procedure . These two transforms pair well together for this reason.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Switch From for Router to an OperationRegistry::build method","id":"273","title":"Switch From for Router to an OperationRegistry::build method"},"274":{"body":"As mentioned in Comparison to Axum: Routing and Handlers , the smithy-rs service builder accepts handlers and only converts them into a tower::Service during the final conversion into a Router. There are downsides to this: The customer has no opportunity to apply middleware to a specific operation before they are all collected into Router. The Router does have a layer method, described in Router , but this applies the middleware uniformly across all operations. The builder has no way to apply middleware around customer applied middleware. A concrete example of where this would be useful is described in the Middleware Position section of RFC: Logging in the Presence of Sensitive Data . The customer has no way of expressing readiness of the underlying operation - all handlers are converted to services with Service::poll_ready returning Poll::Ready(Ok(())). The three use cases described above are supported by axum by virtue of the Router::route method accepting a tower::Service. The reader should consider a similar approach where the service builder setters accept a tower::Service rather than the Handler. Throughout this section we purposely ignore the existence of handlers accepting state alongside the {Operation}Input, this class of handlers serve as a distraction and can be accommodated with small perturbations from each approach. Approach A: Customer uses OperationHandler::new It's possible to make progress with a small changeset, by requiring the customer eagerly uses OperationHandler::new rather than it being applied internally within From for Router (see Handlers ). The setter would then become: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option\n} impl OperationRegistryBuilder { pub fn operation0(self, value: Op0) -> Self { self.operation1 = Some(value); self }\n} The API usage would then become async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} // Create a `Service` eagerly\nlet svc = OperationHandler::new(handler0); // Middleware can be applied at this point\nlet operation0 = /* A HTTP `tower::Layer` */.layer(op1_svc); OperationRegistryBuilder::default() .operation0(operation0) /* ... */ Note that this requires that the OperationRegistryBuilder stores services, rather than Handlers. An unintended and superficial benefit of this is that we are able to drop In{n} from the OperationRegistryBuilder - only Op{n} remains and it parametrizes each operation's tower::Service. It is still possible to retain the original API which accepts Handler by introducing the following setters: impl OperationRegistryBuilder { fn operation0_handler(self, handler: H) -> OperationRegistryBuilder, Op2> { OperationRegistryBuilder { operation0: OperationHandler::new(handler), operation1: self.operation1 } }\n} There are two points at which the customer might want to apply middleware: around tower::Service<{Operation}Input, Response = {Operation}Output> and tower::Service, that is, before and after the serialization/deserialization is performed. The change described only succeeds in the latter, and therefore is only a partial solution to (1). This solves (2), the service builder may apply additional middleware around the service. This does not solve (3), as the customer is not able to provide a tower::Service<{Operation}Input, Response = {Operation}Output>. Approach B: Operations as Middleware In order to achieve all three we model operations as middleware: pub struct Operation0 { inner: S,\n} impl Service for Operation0\nwhere S: Service\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, cx: &mut Context) -> Poll> { // We defer to the inner service for readiness self.inner.poll_ready(cx) } async fn call(&mut self, request: http::Request) -> Result { let input = /* Create `Operation0Input` from `request: http::Request` */; self.inner.call(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Notice the similarity between this and the OperationHandler, the only real difference being that we hold an inner service rather than a closure. In this way we have separated all model aware serialization/deserialization, we noted in Handlers , into this middleware. A consequence of this is that the user Operation0 must have two constructors: from_service, which takes a tower::Service. from_handler, which takes an async Operation0Input -> Operation0Output. A brief example of how this might look: use tower::util::{ServiceFn, service_fn}; impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, } }\n} impl Operation0> { pub fn from_handler(inner: F) -> Self { // Using `service_fn` here isn't strictly correct - there is slight misalignment of closure signatures. This // still serves to illustrate the proposal. Operation0::from_service(service_fn(inner)) }\n} The API usage then becomes: async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} // These are both `tower::Service` and hence can have middleware applied to them\nlet operation_0 = Operation0::from_handler(handler);\nlet operation_1 = Operation1::from_service(/* some service */); OperationRegistryBuilder::default() .operation0(operation_0) .operation1(operation_1) /* ... */ Approach C: Operations as Middleware Constructors While Attempt B solves all three problems, it fails to adequately model the Smithy semantics. An operation cannot uniquely define a tower::Service without reference to a parent Smithy service - information concerning the serialization/deserialization, error modes are all inherited from the Smithy service an operation is used within. In this way, Operation0 should not be a standalone middleware, but become middleware once accepted by the service builder. Any solution which provides an {Operation} structure and wishes it to be accepted by multiple service builders must deal with this problem. We currently build one library per service and hence have duplicate structures when service closures overlap. This means we wouldn't run into this problem today, but it would be a future obstruction if we wanted to reduce the amount of generated code. use tower::layer::util::{Stack, Identity};\nuse tower::util::{ServiceFn, service_fn}; // This takes the same form as `Operation0` defined in the previous attempt. The difference being that this is now\n// private.\nstruct Service0Operation0 { inner: S\n} impl Service for ServiceOperation0\nwhere S: Service\n{ /* Same as above */\n} pub struct Operation0 { inner: S, layer: L\n} impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, layer: Identity } }\n} impl Operation0, Identity> { pub fn from_handler(inner: F) -> Self { Operation0::from_service(service_fn(inner)) }\n} impl Operation0 { pub fn layer(self, layer: L) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, layer) } } pub fn logging(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, LoggingLayer::new(/* args */)) } } pub fn auth(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, /* Construct auth middleware */) } }\n} impl OperationRegistryBuilder { pub fn operation0(self, operation: Operation0) -> OperationRegistryBuilder<>::Service, Op2> where L: Layer> { // Convert `Operation0` to a `tower::Service`. let http_svc = Service0Operation0 { inner: operation.inner }; // Apply the layers operation.layer(http_svc) }\n} Notice that we get some additional type safety here when compared to Approach A and Approach B - operation0 accepts a Operation0 rather than a general tower::Service. We also get a namespace to include utility methods - notice the logging and auth methods. The RFC favours this approach out of all those presented. Approach D: Add more methods to the Service Builder An alternative to Approach C is to simply add more methods to the service builder while internally storing a tower::Service: operation0_from_service, accepts a tower::Service. operation0_from_handler, accepts an async Fn(Operation0Input) -> Operation0Output. operation0_layer, accepts a tower::Layer. This is functionally similar to Attempt C except that all composition is done internal to the service builder and the namespace exists in the method name, rather than the {Operation} struct.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Operations as Middleware Constructors","id":"274","title":"Operations as Middleware Constructors"},"275":{"body":"Currently the Router stores Box. As a result the Router::layer method, seen in Router , must re-box a service after every tower::Layer applied. The heap allocation Box::new itself is not cause for concern because Routers are typically constructed once at startup, however one might expect the indirection to regress performance when the server is running. Having the service type parameterized as Router, allows us to write: impl Router { fn layer(self, layer: &L) -> Router where L: Layer { /* Same internal implementation without boxing */ }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Service parameterized Routers","id":"275","title":"Service parameterized Routers"},"276":{"body":"Currently there is a single Router structure, described in Router , situated in the rust-runtime/aws-smithy-http-server crate, which is output by the service builder. This, roughly, takes the form of an enum listing the different protocols. #[derive(Debug)]\nenum Routes { RestXml(/* Container */), RestJson1(/* Container */), AwsJson1_0(/* Container */), AwsJson1_1(/* Container */),\n} Recall the form of the Service::call method, given in Router , which involved matching on the protocol and then performing protocol specific logic. Two downsides of modelling Router in this way are: Router is larger and has more branches than a protocol specific implementation. If a third-party wanted to extend smithy-rs to additional protocols Routes would have to be extended. A synopsis of this obstruction is presented in Should we generate the Router type issue. After taking the Switch From for Router to an OperationRegistry::build method transform, code generation is free to switch between return types based on the model. This allows for a scenario where a @restJson1 causes the service builder to output a specific RestJson1Router.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Routers","id":"276","title":"Protocol specific Routers"},"277":{"body":"Currently, protocol specific routing errors are either: Converted to RuntimeErrors and then http::Response (see unknown_operation ). Converted directly to a http::Response (see method_not_allowed ). This is an outlier to the common pattern. The from_request functions yield protocol specific errors which are converted to RequestRejections then RuntimeErrors (see ServerHttpBoundProtocolGenerator.kt ). In these scenarios protocol specific errors are converted into RuntimeError before being converted to a http::Response via into_response method. Two downsides of this are: RuntimeError enumerates all possible errors across all existing protocols, so is larger than modelling the errors for a specific protocol. If a third-party wanted to extend smithy-rs to additional protocols with differing failure modes RuntimeError would have to be extended. As in Protocol specific Errors , a synopsis of this obstruction is presented in Should we generate the Router type issue. Switching from using RuntimeError to protocol specific errors which satisfy a common interface, IntoResponse, would resolve these problem.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Errors","id":"277","title":"Protocol specific Errors"},"278":{"body":"Currently the service builder is named OperationRegistryBuilder. Despite the name being model agnostic, the OperationRegistryBuilder mutates when the associated service mutates. Renaming OperationRegistryBuilder to {Service}Builder would reflect the relationship between the builder and the Smithy service and prevent naming conflicts if multiple service builders are to exist in the same namespace. Similarly, the output of the service builder is Router. This ties the output of the service builder to a structure in rust-runtime. Introducing a type erasure here around Router using a newtype named {Service} would: Ensure we are free to change the implementation of {Service} without changing the Router implementation. Hide the router type, which is determined by the protocol specified in the model. Allow us to put a builder method on {Service} which returns {Service}Builder. This is compatible with Protocol specific Routers , we simply newtype the protocol specific router rather than Router. With both of these changes the API would take the form: let service_0: Service0 = Service0::builder() /* use the setters */ .build() .unwrap() .into(); With Remove two-step build procedure , Switch From for Router to a OperationRegistry::build method , and Statically check for missing Handlers we obtain the following API: let service_0: Service0 = Service0::builder() /* use the setters */ .build();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Type erasure with the name of the Smithy service","id":"278","title":"Type erasure with the name of the Smithy service"},"279":{"body":"A combination of all the proposed transformations results in the following API: struct Context { /* fields */\n} async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler_with_ext(input: Operation0Input, extension: Extension) -> Operation0Output { todo!()\n} struct Operation1Service { /* fields */\n} impl Service for Operation1Service { type Response = Operation1Output; /* implementation */\n} struct Operation1ServiceWithExt { /* fields */\n} impl Service<(Operation1Input, Extension)> for Operation1Service { type Response = Operation1Output; /* implementation */\n} // Create an operation from a handler\nlet operation_0 = Operation0::from_handler(handler); // Create an operation from a handler with extension\nlet operation_0 = Operation::from_handler(handler_with_ext); // Create an operation from a `tower::Service`\nlet operation_1_svc = Operation1Service { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Create an operation from a `tower::Service` with extension\nlet operation_1_svc = Operation1ServiceWithExtension { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Apply a layer\nlet operation_0 = operation_0.layer(/* layer */); // Use the service builder\nlet service_0 = Service0::builder() .operation_0(operation_0) .operation_1(operation_1) .build(); A toy implementation of the combined proposal is presented in this PR .","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Combined Proposal","id":"279","title":"Combined Proposal"},"28":{"body":"Smithy Type (links to design discussions) Rust Type (links to Rust documentation) blob Vec boolean bool string String byte i8 short i16 integer i32 long i64 float f32 double f64 bigInteger BigInteger (Not implemented yet) bigDecimal BigDecimal (Not implemented yet) timestamp DateTime document Document","breadcrumbs":"Smithy » Simple Shapes » Simple Shapes","id":"28","title":"Simple Shapes"},"280":{"body":"Add protocol specific routers to rust-runtime/aws-smithy-http-server. https://github.com/awslabs/smithy-rs/pull/1666 Add middleware primitives and error types to rust-runtime/aws-smithy-http-server. https://github.com/awslabs/smithy-rs/pull/1679 Add code generation which outputs new service builder. https://github.com/awslabs/smithy-rs/pull/1693 Deprecate OperationRegistryBuilder, OperationRegistry and Router. https://github.com/awslabs/smithy-rs/pull/1886 https://github.com/awslabs/smithy-rs/pull/2161","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Changes Checklist","id":"280","title":"Changes Checklist"},"281":{"body":"Status: Accepted Applies to: Client and Server This RFC outlines how Rust dependency versions are selected for the smithy-rs project, and strives to meet the following semi-conflicting goals: Dependencies are secure Vended libraries have dependency ranges that overlap other Rust libraries as much as possible When in conflict, the security goal takes priority over the compatibility goal.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » RFC: Dependency Versions","id":"281","title":"RFC: Dependency Versions"},"282":{"body":"The Rust crates within smithy-rs can be divided up into two categories: Library Crates: Crates that are published to crates.io with the intention that other projects will depend on them via their Cargo.toml files. This category does NOT include binaries that are published to crates.io with the intention of being installed with cargo install. Application Crates: All examples, binaries, tools, standalone tests, or other crates that are not published to crates.io with the intent of being depended on by other projects. All generated crates must be considered library crates even if they're not published since they are intended to be pulled into other Rust projects with other dependencies.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Categorization of Crates","id":"282","title":"Categorization of Crates"},"283":{"body":"The aws-smithy-http-server-python crate doesn't fit the categorization rules well since it is a runtime crate for a generated Rust application with bindings to Python. This RFC establishes this crate as an application crate since it needs to pull in application-specific dependencies such as tracing-subscriber in order to implement its full feature set.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Support crates for Applications","id":"283","title":"Support crates for Applications"},"284":{"body":"Application crates should use the latest versions of dependencies, but must use a version greater than or equal to the minimum secure version as determined by the RUSTSEC advisories database . Library crates must use the minimum secure version. This is illustrated at a high level below: graph TD S[Add Dependency] --> T{Crate Type?} T -->|Application Crate?| A[Use latest version] T -->|Library Crate?| L[Use minimum secure version]","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Dependency Version Rules","id":"284","title":"Dependency Version Rules"},"285":{"body":"If a dependency has multiple supported major versions, then the latest major version must be selected unless there is a compelling reason to do otherwise (such as the previous major version having been previously exposed in our public API). Choosing newer major versions will reduce the amount of upgrade work that needs to be done at a later date when support for the older version is inevitably dropped.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » What is a minimum secure version when there are multiple major versions?","id":"285","title":"What is a minimum secure version when there are multiple major versions?"},"286":{"body":"Some work needs to be done to establish these guidelines: Establish automation for enforcing minimum secure versions for the direct dependencies of library crates","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Changes Checklist","id":"286","title":"Changes Checklist"},"287":{"body":"Status: Implemented Applies to: Generated clients and shared rust-runtime crates This RFC proposes a pattern for writing Rust errors to provide consistent error context AND forwards/backwards compatibility. The goal is to strike a balance between these four goals: Errors are forwards compatible, and changes to errors are backwards compatible Errors are idiomatic and ergonomic. It is easy to match on them and extract additional information for cases where that's useful. The type system prevents errors from being used incorrectly (for example, incorrectly retrieving context for a different error variant) Error messages are easy to debug Errors implement best practices with Rust's Error trait (for example, implementing the optional source() function where possible) Note: This RFC is not about error backwards compatibility when it comes to error serialization/deserialization for transfer over the wire. The Smithy protocols cover that aspect.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » RFC: Error Context and Compatibility","id":"287","title":"RFC: Error Context and Compatibility"},"288":{"body":"This section examines some examples found in aws-config that illustrate different problems that this RFC will attempt to solve, and calls out what was done well, and what could be improved upon.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Past approaches in smithy-rs","id":"288","title":"Past approaches in smithy-rs"},"289":{"body":"To start, let's examine InvalidFullUriError (doc comments omitted): #[derive(Debug)]\n#[non_exhaustive]\npub enum InvalidFullUriError { #[non_exhaustive] InvalidUri(InvalidUri), #[non_exhaustive] NoDnsService, #[non_exhaustive] MissingHost, #[non_exhaustive] NotLoopback, DnsLookupFailed(io::Error),\n} impl Display for InvalidFullUriError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { InvalidFullUriError::InvalidUri(err) => write!(f, \"URI was invalid: {}\", err), InvalidFullUriError::MissingHost => write!(f, \"URI did not specify a host\"), // ... omitted ... } }\n} impl Error for InvalidFullUriError { fn source(&self) -> Option<&(dyn Error + 'static)> { match self { InvalidFullUriError::InvalidUri(err) => Some(err), InvalidFullUriError::DnsLookupFailed(err) => Some(err), _ => None, } }\n} This error does a few things well: Using #[non_exhaustive] on the enum allows new errors to be added in the future. Breaking out different error types allows for more useful error messages, potentially with error-specific context. Customers can match on these different error variants to change their program flow, although it's not immediately obvious if such use cases exist for this error. The error cause is available through the Error::source() impl for variants that have a cause. However, there are also a number of things that could be improved: All tuple/struct enum members are public, and InvalidUri is an error from the http crate. Exposing a type from another crate can potentially lock the GA SDK into a specific crate version if breaking changes are ever made to the exposed types. In this specific case, it prevents using alternate HTTP implementations that don't use the http crate. DnsLookupFailed is missing #[non_exhaustive], so new members can never be added to it. Use of enum tuples, even with #[non_exhaustive], adds friction to evolving the API since the tuple members cannot be named. Printing the source error in the Display impl leads to error repetition by reporters that examine the full source chain. The source() impl has a _ match arm, which means future implementers could forget to propagate a source when adding new error variants. The error source can be downcasted to InvalidUri type from http in customer code. This is a leaky abstraction where customers can start to rely on the underlying library the SDK uses in its implementation, and if that library is replaced/changed, it can silently break the customer's application. Note: later in the RFC, I'll demonstrate why fixing this issue is not practical.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: InvalidFullUriError","id":"289","title":"Case study: InvalidFullUriError"},"29":{"body":"Rust currently has no standard library or universally accepted large-number crate. Until one is stabilized, a string representation is a reasonable compromise: pub struct BigInteger(String);\npub struct BigDecimal(String); This will enable us to add helpers over time as requested. Users will also be able to define their own conversions into their preferred large-number libraries. As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here .","breadcrumbs":"Smithy » Simple Shapes » Big Numbers","id":"29","title":"Big Numbers"},"290":{"body":"Next, let's look at a much simpler error. The ProfileParseError is focused purely on the parsing logic for the SDK config file: #[derive(Debug, Clone)]\npub struct ProfileParseError { location: Location, message: String,\n} impl Display for ProfileParseError { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!( f, \"error parsing {} on line {}:\\n {}\", self.location.path, self.location.line_number, self.message ) }\n} impl Error for ProfileParseError {} What this error does well: The members are private, so #[non_exhaustive] isn't even necessary The error is completely opaque (maximizing compatibility) while still being debuggable thanks to the flexible messaging What could be improved: It needlessly implements Clone, which may prevent it from holding an error source in the future since errors are often not Clone. In the future, if more error variants are needed, a private inner error kind enum could be added to change messaging, but there's not a nice way to expose new variant-specific information to the customer. Programmatic access to the error Location may be desired, but this can be trivially added in the future without a breaking change by adding an accessor method.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: ProfileParseError","id":"290","title":"Case study: ProfileParseError"},"291":{"body":"The SDK currently generates errors such as the following (from S3): #[non_exhaustive]\npub enum Error { BucketAlreadyExists(BucketAlreadyExists), BucketAlreadyOwnedByYou(BucketAlreadyOwnedByYou), InvalidObjectState(InvalidObjectState), NoSuchBucket(NoSuchBucket), NoSuchKey(NoSuchKey), NoSuchUpload(NoSuchUpload), NotFound(NotFound), ObjectAlreadyInActiveTierError(ObjectAlreadyInActiveTierError), ObjectNotInActiveTierError(ObjectNotInActiveTierError), Unhandled(Box),\n} Each error variant gets its own struct, which can hold error-specific contextual information. Except for the Unhandled variant, both the error enum and the details on each variant are extensible. The Unhandled variant should move the error source into a struct so that its type can be hidden. Otherwise, the code generated errors are already aligned with the goals of this RFC.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: code generated client errors","id":"291","title":"Case study: code generated client errors"},"292":{"body":"","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Approaches from other projects","id":"292","title":"Approaches from other projects"},"293":{"body":"The standard library uses an Error struct with an accompanying ErrorKind enum for its IO error. Roughly: #[derive(Debug)]\n#[non_exhaustive]\npub enum ErrorKind { NotFound, // ... omitted ... Other,\n} #[derive(Debug)]\npub struct Error { kind: ErrorKind, source: Box,\n} What this error does well: It is extensible since the ErrorKind is non-exhaustive It has an Other error type that can be instantiated by users in unit tests, making it easier to unit test error handling What could be improved: There isn't an ergonomic way to add programmatically accessible error-specific context to this error in the future The source error can be downcasted, which could be a trap for backwards compatibility.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » std::io::Error","id":"293","title":"std::io::Error"},"294":{"body":"Hyper has outlined some problems they want to address with errors for the coming 1.0 release. To summarize: It's difficult to match on specific errors (Hyper 0.x's Error relies on is_x methods for error matching rather than enum matching). Error reporters duplicate information since the hyper 0.x errors include the display of their error sources Error::source() can leak internal dependencies","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Hyper 1.0","id":"294","title":"Hyper 1.0"},"295":{"body":"There is discussion in the errors working group about how to avoid leaking internal dependency error types through error source downcasting. One option is to create an opaque error wrapping new-type that removes the ability to downcast to the other library's error. This, however, can be circumvented via unsafe code, and also breaks the ability for error reporters to properly display the error (for example, if the error has backtrace information, that would be inaccessible to the reporter). This situation might improve if the nightly request_value/request_ref/provide functions on std::error::Error are stabilized, since then contextual information needed for including things such as a backtrace could still be retrieved through the opaque error new-type. This RFC proposes that error types from other libraries not be directly exposed in the API, but rather, be exposed indirectly through Error::source as &dyn Error + 'static. Errors should not require downcasting to be useful. Downcasting the error's source should be a last resort, and with the understanding that the type could change at a later date with no compile-time guarantees.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Opaque Error Sources","id":"295","title":"Opaque Error Sources"},"296":{"body":"Taking a customer's perspective, there are two broad categories of errors: Actionable: Errors that can/should influence program flow; where it's useful to do different work based on additional error context or error variant information Informative: Errors that inform that something went wrong, but where it's not useful to match on the error to change program flow This RFC proposes that a consistent pattern be introduced to cover these two use cases for all errors in the public API for the Rust runtime crates and generated client crates.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Proposal","id":"296","title":"Error Proposal"},"297":{"body":"Actionable errors are represented as enums. If an error variant has an error source or additional contextual information, it must use a separate context struct that is referenced via tuple in the enum. For example: // Good: new error types can be added in the future\n#[non_exhaustive]\npub enum Error { // Good: This is exhaustive and uses a tuple, but its sole member is an extensible struct with private fields VariantA(VariantA), // Bad: The fields are directly exposed and can't have accessor methods. The error // source type also can't be changed at a later date since. #[non_exhaustive] VariantB { some_additional_info: u32, source: AnotherError // AnotherError is from this crate }, // Bad: There's no way to add additional contextual information to this error in the future, even // though it is non-exhaustive. Changing it to a tuple or struct later leads to compile errors in existing // match statements. #[non_exhaustive] VariantC, // Bad: Not extensible if additional context is added later (unless that context can be added to `AnotherError`) #[non_exhaustive] VariantD(AnotherError), // Bad: Not extensible. If new context is added later (for example, a second endpoint), there's no way to name it. #[non_exhaustive] VariantE(Endpoint, AnotherError), // Bad: Exposes another library's error type in the public API, // which makes upgrading or replacing that library a breaking change #[non_exhaustive] VariantF { source: http::uri::InvalidUri }, // Bad: The error source type is public, and even though its a boxed error, it won't // be possible to change it to an opaque error type later (for example, if/when // opaque errors become practical due to standard library stabilizations). #[non_exhaustive] VariantG { source: Box, }\n} pub struct VariantA { some_field: u32, // This is private, so it's fine to reference the external library's error type source: http::uri::InvalidUri\n} impl VariantA { fn some_field(&self) -> u32 { self.some_field }\n} Error variants that contain a source must return it from the Error::source method. The source implementation should not use the catch all (_) match arm, as this makes it easy to miss adding a new error variant's source at a later date. The error Display implementation must not include the source in its output: // Good\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), Self::VariantB { some_additional_info, .. } => write!(f, \"variant b ({some_additional_info})\"), // ... and so on } }\n} // Bad\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), // Bad: includes the source in the `Display` output, which leads to duplicate error information Self::VariantB { some_additional_info, source } => write!(f, \"variant b ({some_additional_info}): {source}\"), // ... and so on } }\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Actionable error pattern","id":"297","title":"Actionable error pattern"},"298":{"body":"Informative errors must be represented as structs. If error messaging changes based on an underlying cause, then a private error kind enum can be used internally for this purpose. For example: #[derive(Debug)]\npub struct InformativeError { some_additional_info: u32, source: AnotherError,\n} impl fmt::Display for InformativeError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, \"some informative message with {}\", self.some_additional_info) }\n} impl Error for InformativeError { fn source(&self) -> Option<&(dyn Error + 'static)> { Some(&self.source) }\n} In general, informative errors should be referenced by variants in actionable errors since they cannot be converted to actionable errors at a later date without a breaking change. This is not a hard rule, however. Use your best judgement for the situation.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Informative error pattern","id":"298","title":"Informative error pattern"},"299":{"body":"In code where errors are logged rather than returned to the customer, the full error source chain must be displayed. This will be made easy by placing a DisplayErrorContext struct in aws-smithy-types that is used as a wrapper to get the better error formatting: tracing::warn!(err = %DisplayErrorContext(err), \"some message\"); This might be implemented as follows: #[derive(Debug)]\npub struct DisplayErrorContext(pub E); impl fmt::Display for DisplayErrorContext { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write_err(f, &self.0)?; // Also add a debug version of the error at the end write!(f, \" ({:?})\", self) }\n} fn write_err(f: &mut fmt::Formatter<'_>, err: &dyn Error) -> fmt::Result { write!(f, \"{}\", err)?; if let Some(source) = err.source() { write!(f, \": \")?; write_err(f, source)?; } Ok(())\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Displaying full error context","id":"299","title":"Displaying full error context"},"3":{"body":"The Rust SDK is built on Tower Middleware, Tokio & Hyper. We're continuing to iterate on the internals to enable running the AWS SDK in other executors & HTTP stacks. As an example, you can see a demo of adding reqwest as a custom HTTP stack to gain access to its HTTP Proxy support! For more details about the SDK internals see Operation Design","breadcrumbs":"Design Overview » Internals","id":"3","title":"Internals"},"30":{"body":"chrono is the current de facto library for datetime in Rust, but it is pre-1.0. DateTimes are represented by an SDK defined structure modeled on std::time::Duration from the Rust standard library. /// DateTime in time.\n///\n/// DateTime in time represented as seconds and sub-second nanos since\n/// the Unix epoch (January 1, 1970 at midnight UTC/GMT).\n///\n/// This type can be converted to/from the standard library's [`SystemTime`](std::time::SystemTime):\n/// ```rust\n/// # fn doc_fn() -> Result<(), aws_smithy_types::date_time::ConversionError> {\n/// # use aws_smithy_types::date_time::DateTime;\n/// # use std::time::SystemTime;\n/// use std::convert::TryFrom;\n///\n/// let the_millennium_as_system_time = SystemTime::try_from(DateTime::from_secs(946_713_600))?;\n/// let now_as_date_time = DateTime::from(SystemTime::now());\n/// # Ok(())\n/// # }\n/// ```\n///\n/// The [`aws-smithy-types-convert`](https://crates.io/crates/aws-smithy-types-convert) crate\n/// can be used for conversions to/from other libraries, such as\n/// [`time`](https://crates.io/crates/time) or [`chrono`](https://crates.io/crates/chrono).\n#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]\npub struct DateTime { pub(crate) seconds: i64, /// Subsecond nanos always advances the wallclock time, even for times where seconds is negative /// /// Bigger subsecond nanos => later time pub(crate) subsecond_nanos: u32,\n} Functions in the aws-smithy-types-convert crate provide conversions to other crates, such as time or chrono.","breadcrumbs":"Smithy » Simple Shapes » Timestamps","id":"30","title":"Timestamps"},"300":{"body":"Update every struct/enum that implements Error in all the non-server Rust runtime crates Hide error source type in Unhandled variant in code generated errors Remove Clone from ProfileParseError and any others that have it","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Changes Checklist","id":"300","title":"Changes Checklist"},"301":{"body":"This is a checklist meant to aid code review of new errors: The error fits either the actionable or informative pattern If the error is informative, it's clear that it will never be expanded with additional variants in the future The Display impl does not write the error source to the formatter The catch all _ match arm is not used in the Display or Error::source implementations Error types from external libraries are not exposed in the public API Error enums are #[non_exhaustive] Error enum variants that don't have a separate error context struct are #[non_exhaustive] Error context is exposed via accessors rather than by public fields Actionable errors and their context structs are in an error submodule for any given module. They are not mixed with other non-error code","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Code Review Checklist","id":"301","title":"Error Code Review Checklist"},"302":{"body":"Status: Accepted Applies to: Server RFC 20 introduced a new service builder API. It supports fine-grained configuration at multiple levels (per-handler middlewares, router middlewares, plugins) while trying to prevent some misconfiguration issues at compile-time (i.e. missing operation handlers). There is consensus that the new API is an improvement over the pre-existing OperationRegistryBuilder/OperationRegistry, which is now on its way to deprecation in one of the next releases. This RFC builds on top of RFC 20 to explore an alternative API design prior to its stabilisation. The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » RFC: Evolving the new service builder API","id":"302","title":"RFC: Evolving the new service builder API"},"303":{"body":"Type-heavy builders can lead to a poor developer experience when it comes to writing function signatures, conditional branches and clarity of error messages. This RFC provides examples for the issues we are trying to mitigate and showcases an alternative design for the service builder, cutting generic parameters from 2*(N+1) to 2, where N is the number of operations on the service. We rely on eagerly upgrading the registered handlers and operations to Route to achieve this reduction. Goals: Maximise API ergonomics, with a particular focus on the developer experience for Rust beginners. Strategy: Reduce type complexity, exposing a less generic API; Provide clearer errors when the service builder is misconfigured. Trade-offs: Reduce compile-time safety. Missing handlers will be detected at runtime instead of compile-time. Constraints: There should be no significant degradation in runtime performance (i.e. startup time for applications).","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Overview","id":"303","title":"Overview"},"304":{"body":"Let's start by reviewing the API proposed in RFC 20 . We will use the Pokemon service as our driving example throughout the RFC. This is what the startup code looks like: #[tokio::main]\npub async fn main() { // [...] let app = PokemonService::builder() .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .check_health(check_health) .build(); // Setup shared state and middlewares. let shared_state = Arc::new(State::default()); let app = app.layer(&AddExtensionLayer::new(shared_state)); // Start the [`hyper::Server`]. let bind: SocketAddr = /* */; let server = hyper::Server::bind(&bind).serve(app.into_make_service()); // [...]\n} The builder is infallible: we are able to verify at compile-time that all handlers have been provided using the typestate builder pattern .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Handling missing operations","id":"304","title":"Handling missing operations"},"305":{"body":"What happens if we stray away from the happy path? We might forget, for example, to add the check_health handler. The compiler greets us with this error: error[E0277]: the trait bound `MissingOperation: Upgradable` is not satisfied --> pokemon-service/src/bin/pokemon-service.rs:38:10 |\n38 | .build(); | ^^^^^ the trait `Upgradable` is not implemented for `MissingOperation` | = help: the following other types implement trait `Upgradable`: FailOnMissingOperation Operation The compiler complains that MissingOperation does not implement the Upgradable trait. Neither MissingOperation nor Upgradable appear in the startup code we looked at. This is likely to be the first time the developer sees those traits, assuming they haven't spent time getting familiar with aws-smithy-http-server's internals. The help section is unhelpful, if not actively misdirecting. How can the developer figure out that the issue lies with check_health? They need to inspect the generic parameters attached to Upgradable in the code label or the top-level error message - we see, among other things, a CheckHealth parameter. That is the hint they need to follow to move forward. We unfortunately do not have agency on the compiler error we just examined. Rust does not expose hooks for crate authors to tweak the errors returned when a type does not implement a trait we defined. All implementations of the typestate builder pattern accept this shortcoming in exchange for compile-time safety. Is it a good tradeoff in our case?","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Compiler errors cannot be tuned","id":"305","title":"Compiler errors cannot be tuned"},"306":{"body":"If build returns an error, the HTTP server is never launched. The application fails to start. Let's examine the cost of this runtime error along two dimensions: Impact on developer productivity; Impact on end users. We'd love for this issue to be caught on the developer machine - it provides the shortest feedback loop. The issue won't be surfaced by a cargo check or cargo build invocation, as it happens with the typestate builder approach. It should be surfaced by executing the application test suite, assuming that the developer has written at least a single integration test - e.g. a test that passes a request to the call method exposed by PokemonService or launches a full-blown instance of the application which is then probed via an HTTP client. If there are no integration tests, the issue won't be detected on the developer machine nor in CI. Nonetheless, it is unlikely to cause any end-user impact even if it manages to escape detection and reach production. The deployment will never complete if they are using a progressive rollout strategy: instances of the new version will crash as soon as they are launched, never getting a chance to mark themselves as healthy; all traffic will keep being handled by the old version, with no visible impact on end users of the application. Given the above, we think that the impact of a runtime error is low enough to be worth exploring designs that do not guarantee compile-safety for the builder API [1] .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » The cost of a runtime error","id":"306","title":"The cost of a runtime error"},"307":{"body":"Moving from a compile-time error to a runtime error does not require extensive refactoring. The definition of PokemonServiceBuilder goes from: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Op1, do_nothing: Op2, get_pokemon_species: Op3, get_server_statistics: Op4, capture_pokemon: Op5, get_storage: Op6, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} to: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} All operation fields are now Option-wrapped. We introduce a new MissingOperationsError error to hold the names of the missing operations and their respective setter methods: #[derive(Debug)]\npub struct MissingOperationsError { service_name: &'static str, operation_names2setter_methods: HashMap<&'static str, &'static str>,\n} impl Display for MissingOperationsError { /* */ }\nimpl std::error::Error for MissingOperationsError {} which is then used in build as error type (not shown here for brevity) . We can now try again to stray away from the happy path by forgetting to register a handler for the CheckHealth operation. The code compiles just fine this time, but the application fails when launched via cargo run: ERROR pokemon_service: You must specify a handler for all operations attached to the `Pokemon` service.\nWe are missing handlers for the following operations:\n- com.aws.example#CheckHealth Use the dedicated methods on `PokemonServiceBuilder` to register the missing handlers:\n- PokemonServiceBuilder::check_health The error speaks the language of the domain, Smithy's interface definition language: it mentions operations, services, handlers. Understanding the error requires no familiarity with smithy-rs' internal type machinery or advanced trait patterns in Rust. We can also provide actionable suggestions: Rust beginners should be able to easily process the information, rectify the mistake and move on quickly.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Providing clear feedback","id":"307","title":"Providing clear feedback"},"308":{"body":"Let's take a second look at the (updated) definition of PokemonServiceBuilder: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} We have 13 generic parameters: 1 for plugins (Pl); 2 for each operation (OpX and ExtsX); All those generic parameters were necessary when we were using the typestate builder pattern . They kept track of which operation handlers were missing: if any OpX was set to MissingOperation when calling build -> compilation error! Do we still need all those generic parameters if we move forward with this RFC? You might be asking yourselves: why do those generics bother us? Is there any harm in keeping them around? We'll look at the impact of those generic parameters on two scenarios: Branching in startup logic; Breaking down a monolithic startup function into multiple smaller functions.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Simplifying PokemonServiceBuilder's signature","id":"308","title":"Simplifying PokemonServiceBuilder's signature"},"309":{"body":"Conditional statements appear quite often in the startup logic for an application (or in the setup code for its integration tests). Let's consider a toy example: if a check_database flag is set to true, we want to register a different check_health handler - one that takes care of pinging the database to make sure it's up. The \"obvious\" solution would look somewhat like this: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\napp.build(); The compiler is not pleased: error[E0308]: `if` and `else` have incompatible types --> pokemon-service/src/bin/pokemon-service.rs:39:9 |\n36 | let app = if check_database { | _______________-\n37 | | app.check_health(check_health) | | ------------------------------ expected because of this\n38 | | } else {\n39 | | app.check_health(check_health_with_database) | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected fn item, found a different fn item\n40 | | }; | |_____- `if` and `else` have incompatible types | = note: expected struct `PokemonServiceBuilder impl Future {check_health}>>, _, _, _, _, _, _, _, _, _, _, _>` found struct `PokemonServiceBuilder impl Future {check_health_with_database}>>, _, _, _, _, _, _, _, _, _, _, _>` The developer must be aware of the following facts to unpack the error message: The two branches of an if/else statement need to return the same type. Each function closure has a new unique type (represented as fn(CheckHealthInput) -> impl Future {check_health} for check_health); The handler function type becomes part of the overall PokemonServiceBuilder type, a cog in the larger Op1 generic parameter used to hold the handler for the CheckHealth operation (i.e. Operation impl Future {check_health}>>); The second fact requires an intermediate understanding of Rust's closures and opaque types (impl Trait). It's quite likely to confuse Rust beginners. The developer has three options to move forward: Convert check_health and check_health_with_database into a common type that can be passed as a handler to PokemonServiceBuilder::check_health; Invoke the build method inside the two branches in order to return a \"plain\" PokemonService> from both branches. Embed the configuration parameter (check_database) in the application state, retrieve it inside check_health and perform the branching there. I can't easily see a way to accomplish 1) using the current API. Pursuing 2) is straight-forward with a single conditional: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health).build()\n} else { app.check_health(check_health_with_database).build()\n}; It becomes more cumbersome when we have more than a single conditional: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nmatch (check_database, include_cpu_statics) { (true, true) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics_with_cpu) .build(), (true, false) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics) .build(), (false, true) => app .check_health(check_health) .get_server_statistics(get_server_statistics_with_cpu()) .build(), (false, false) => app .check_health(check_health) .get_server_statistics(get_server_statistics) .build(),\n} A lot of repetition compared to the code for the \"obvious\" approach: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\nlet app = if include_cpu_statistics { app.get_server_statistics(get_server_statistics_with_cpu)\n} else { app.get_server_statistics(get_server_statistics)\n};\napp.build(); The obvious approach becomes viable if we stop embedding the handler function type in PokemonServiceBuilder's overall type.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Branching -> \"Incompatible types\"","id":"309","title":"Branching -> \"Incompatible types\""},"31":{"body":"Rust has two different String representations: String, an owned, heap allocated string. &str, a reference to a string, owned elsewhere. In ideal world, input shapes, where there is no reason for the strings to be owned would use &'a str. Outputs would likely use String. However, Smithy does not provide a distinction between input and output shapes. A third compromise could be storing Arc, an atomic reference counted pointer to a String. This may be ideal for certain advanced users, but is likely to confuse most users and produces worse ergonomics. This is an open design area where we will seek user feedback. Rusoto uses String and there has been one feature request to date to change that. Current models represent strings as String.","breadcrumbs":"Smithy » Simple Shapes » Strings","id":"31","title":"Strings"},"310":{"body":"Services with a high number of routes can lead to fairly long startup routines. Developers might be tempted to break down the startup routine into smaller functions, grouping together operations with common requirements (similar domain, same middlewares, etc.). What does the signature of those smaller functions look like? The service builder must be one of the arguments if we want to register handlers. We must also return it to allow the orchestrating function to finish the application setup (our setters take ownership of self). A first sketch: fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { /* */\n} The compiler demands to see those generic parameters in the signature: error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:27 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:53 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` We could try to nudge the compiler into inferring them: fn partial_setup( builder: PokemonServiceBuilder<_, _, _, _, _, _>,\n) -> PokemonServiceBuilder<_, _, _, _, _, _> { /* */\n} but that won't fly either: error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types --> pokemon-service/src/bin/pokemon-service.rs:30:28 |\n30 | ) -> PokemonServiceBuilder<_, _, _, _, _, _> { | ^ ^ ^ ^ ^ ^ not allowed in type signatures | | | | | | | | | | | not allowed in type signatures | | | | not allowed in type signatures | | | not allowed in type signatures | | not allowed in type signatures | not allowed in type signatures We must type it all out: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} That compiles, at last. Let's try to register an operation handler now: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder.get_server_statistics(get_server_statistics)\n} That looks innocent, but it doesn't fly: error[E0308]: mismatched types --> pokemon-service/src/bin/pokemon-service.rs:31:5 |\n28 | fn partial_setup( | --- this type parameter\n29 | builder: PokemonServiceBuilder,\n30 | ) -> PokemonServiceBuilder { | --------------------------------------------------- expected `PokemonServiceBuilder` because of return type\n31 | builder.get_server_statistics(get_server_statistics) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `Op4`, found struct `Operation` | = note: expected struct `PokemonServiceBuilder<_, _, _, Op4, _, _, _>` found struct `PokemonServiceBuilder<_, _, _, Operation>) -> impl Future {get_server_statistics}>>, _, _, _> By registering a handler we have changed the corresponding OpX generic parameter. Fixing this error requires some non-trivial type gymnastic - I gave up after trying for ~15 minutes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Refactoring into smaller functions -> Prepare for some type juggling!","id":"310","title":"Refactoring into smaller functions -> Prepare for some type juggling!"},"311":{"body":"The previous two examples should have convinced you that the 2N+1 generic parameters on PokemonServiceBuilder harm the ergonomics of our API. Can we get rid of them? Yes! Let's look at one possible approach: pub struct PokemonServiceBuilder { check_health: Option>, do_nothing: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, capture_pokemon: Option>, get_storage: Option>, plugin: Plugin,\n} We no longer store the raw handlers inside PokemonServiceBuilder. We eagerly upgrade the operation handlers to a Route instance when they are registered with the builder. impl PokemonServiceBuilder { pub fn get_pokemon_species(mut self, handler: Handler) -> Self /* Complex trait bounds */ { let route = Route::new(Operation::from_handler(handler).upgrade(&self.plugin)); self.get_pokemon_species = Some(route); self } /* other setters and methods */\n} The existing API performs the upgrade when build is called, forcing PokemonServiceBuilder to store the raw handlers and keep two generic parameters around (OpX and ExtsX) for each operation. The proposed API requires plugins to be specified upfront, when creating an instance of the builder. They cannot be modified after a PokemonServiceBuilder instance has been built: impl PokemonService<()> { /// Constructs a builder for [`PokemonService`]. pub fn builder(plugin: Plugin) -> PokemonServiceBuilder { PokemonServiceBuilder { check_health: None, do_nothing: None, get_pokemon_species: None, get_server_statistics: None, capture_pokemon: None, get_storage: None, plugin, } }\n} This constraint guarantees that all operation handlers are upgraded to a Route using the same set of plugins. Having to specify all plugins upfront is unlikely to have a negative impact on developers currently using smithy-rs. We have seen how cumbersome it is to break the startup logic into different functions using the current service builder API. Developers are most likely specifying all plugins and routes in the same function even if the current API allows them to intersperse route registrations and plugin registrations: they would simply have to re-order their registration statements to adopt the API proposed in this RFC.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Cut them down: going from 2N+1 to 2 generic parameters","id":"311","title":"Cut them down: going from 2N+1 to 2 generic parameters"},"312":{"body":"The new design prohibits the following invocation style: let plugin = ColorPlugin::new();\nPokemonService::builder(plugin) // [...] .get_pokemon_species(get_pokemon_species) // Add PrintPlugin .print() .get_storage(get_storage) .build() We could choose to remove this limitation and allow handlers to be upgraded using a different set of plugins depending on where they were registered. In the snippet above, for example, we would have: get_pokemon_species is upgraded using just the ColorPlugin; get_storage is upgraded using both the ColorPlugin and the PrintPlugin. There are no technical obstacles preventing us from implementing this API, but I believe it could easily lead to confusion and runtime surprises due to a mismatch between what the developer might expect PrintPlugin to apply to (all handlers) and what it actually applies to (handlers registered after .print()). We can provide developers with other mechanisms to register plugins for a single operation or a subset of operations without introducing ambiguity. For attaching additional plugins to a single operation, we could introduce a blanket Pluggable implementation for all operations in aws-smithy-http-server: impl Pluggable for Operation where Pl: Plugin { type Output = Operation; fn apply(self, new_plugin: Pl) -> Self::Output { new_plugin.map(self) }\n} which would allow developers to invoke op.apply(MyPlugin) or call extensions methods such as op.print() where op is an Operation. For attaching additional plugins to a subgroup of operations, instead, we could introduce nested builders: let initial_plugins = ColorPlugin;\nlet mut builder = PokemonService::builder(initial_plugins) .get_pokemon_species(get_pokemon_species);\nlet additional_plugins = PrintPlugin;\n// PrintPlugin will be applied to all handlers registered on the scoped builder returned by `scope`.\nlet nested_builder = builder.scoped(additional_plugins) .get_storage(get_storage) .capture_pokemon(capture_pokemon) // Register all the routes on the scoped builder with the parent builder. // API names are definitely provisional and bikesheddable. .attach(builder);\nlet app = builder.build(); Both proposals are outside the scope of this RFC, but they are shown here for illustrative purposes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: allow new plugins to be registered after builder creation","id":"312","title":"Alternatives: allow new plugins to be registered after builder creation"},"313":{"body":"A lot of our issues stem from type mismatch errors: we are encoding the type of our handlers into the overall type of the service builder and, as a consequence, we end up modifying that type every time we set a handler or modify its state. Type erasure is a common approach for mitigating these issues - reduce those generic parameters to a common type to avoid the mismatch errors. This whole RFC can be seen as a type erasure proposal - done eagerly, as soon as the handler is registered, using Option> as our \"common type\" after erasure. We could try to strike a different balance - i.e. avoid performing type erasure eagerly, but allow developers to erase types on demand. Based on my analysis, this could happen in two ways: We cast handlers into a Box> to which we can later apply plugins (lazy type erasure); We upgrade registered handlers to Route and apply plugins in the process (eager type erasure on-demand). Let's ignore these implementation issues for the time being to focus on what the ergonomics would look like assuming we can actually perform type erasure. In practice, we are going to assume that: In approach 1), we can call .boxed() on a registered operation and get a Box back; In approach 2), we can call .erase() on the entire service builder and convert all registered operations to Route while keeping the MissingOperation entries as they are. After erase has been called, you can no longer register plugins (or, alternatively, the plugins you register will only apply new handlers). We are going to explore both approaches under the assumption that we want to preserve compile-time verification for missing handlers. If we are willing to abandon compile-time verification, we get better ergonomics since all OpX and ExtsX generic parameters can be erased (i.e. we no longer need to worry about MissingOperation). On Box> This is the current definition of the Upgradable trait: /// Provides an interface to convert a representation of an operation to a HTTP [`Service`](tower::Service) with\n/// canonical associated types.\npub trait Upgradable { type Service: Service, Response = http::Response>; /// Performs an upgrade from a representation of an operation to a HTTP [`Service`](tower::Service). fn upgrade(self, plugin: &Plugin) -> Self::Service;\n} In order to perform type erasure, we need to determine: what type parameters we are going to pass as generic arguments to Upgradable; what type we are going to use for the associated type Service. We have: there is a single known protocol for a service, therefore we can set Protocol to its concrete type (e.g. AwsRestJson1); each handler refers to a different operation, therefore we cannot erase the Operation and the Exts parameters; both Body and Plugin appear as generic parameters on the service builder itself, therefore we can set them to the same type; we can use Route to normalize the Service associated type. The above leaves us with two unconstrained type parameters, Operation and Exts, for each operation. Those unconstrained type parameters leak into the type signature of the service builder itself. We therefore find ourselves having, again, 2N+2 type parameters. Branching Going back to the branching example: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health(check_health)\n} else { builder.check_health(check_health_with_database)\n};\nlet app = builder.build(); In approach 1), we could leverage the .boxed() method to convert the actual OpX type into a Box, thus ensuring that both branches return the same type: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder.check_health_operation(Operation::from_handler(check_health_with_database).boxed())\n};\nlet app = builder.build(); The same cannot be done when conditionally registering a route, because on the else branch we cannot convert MissingOperation into a Box since MissingOperation doesn't implement Upgradable - the pillar on which we built all our compile-time safety story. // This won't compile!\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder\n}; In approach 2), we can erase the whole builder in both branches when they both register a route: let check_database: bool = /* */;\nlet boxed_builder = if check_database { builder.check_health(check_health).erase()\n} else { builder.check_health(check_health_with_database).erase()\n};\nlet app = boxed_builder.build(); but, like in approach 1), we will still get a type mismatch error if one of the two branches leaves the route unset. Refactoring into smaller functions Developers would still have to spell out all generic parameters when writing a function that takes in a builder as a parameter: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} Writing the signature after having modified the builder becomes easier though. In approach 1), they can explicitly change the touched operation parameters to the boxed variant: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder< Op1, Op2, Op3, Box>, Op5, Op6, Body, Plugin, Body, Plugin, Exts4=Exts > { builder.get_server_statistics(get_server_statistics)\n} It becomes trickier in approach 2), since to retain compile-time safety on the builder we expect erase to map MissingOperation into MissingOperation. Therefore, we can't write something like this: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder, Route, Route, Route, Route, Route> { builder.get_server_statistics(get_server_statistics).()\n} The compiler would reject it since it can't guarantee that all other operations can be erased to a Route. This is likely to require something along the lines of: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder<::Erased, ::Erased, ::Erased, ::Erased, ::Erased, ::Erased>\nwhere // Omitting a bunch of likely needed additional generic parameters and bounds here Op1: TypeErase, Op2: TypeErase, Op3: TypeErase, Op4: TypeErase, Op5: TypeErase, Op6: TypeErase,\n{ builder.get_server_statistics(get_server_statistics).()\n} Summary Both approaches force us to have a number of generic parameters that scales linearly with the number of operations on the service, affecting the ergonomics of the resulting API in both the branching and the refactoring scenarios. We believe that the ergonomics advantages of the proposal advanced by this RFC outweigh the limitation of having to specify your plugins upfront, when creating the builder instance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: lazy and eager-on-demand type erasure","id":"313","title":"Alternatives: lazy and eager-on-demand type erasure"},"314":{"body":"The Pluggable trait was an interesting development out of RFC 20 : it allows you to attach methods to a service builder using an extension trait. /// An extension to service builders to add the `print()` function.\npub trait PrintExt: aws_smithy_http_server::plugin::Pluggable { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> Self::Output where Self: Sized, { self.apply(PrintPlugin) }\n} This pattern needs to be revisited if we want to move forward with this RFC, since new plugins cannot be registered after the builder has been instantiated. My recommendation would be to implement Pluggable for PluginStack, providing the same pattern ahead of the creation of the builder: // Currently you'd have to go for `PluginStack::new(IdentityPlugin, IdentityPlugin)`,\n// but that can be smoothed out even if this RFC isn't approved.\nlet plugin_stack = PluginStack::default() // Use the extension method .print();\nlet app = PokemonService::builder(plugin_stack) .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .build()?;","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Builder extensions: what now?","id":"314","title":"Builder extensions: what now?"},"315":{"body":"The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Playing around with the design","id":"315","title":"Playing around with the design"},"316":{"body":"Update codegen-server to generate the proposed service builder API https://github.com/awslabs/smithy-rs/pull/1954 Implement Pluggable for PluginStack https://github.com/awslabs/smithy-rs/pull/1954 Evaluate the introduction of a PluginBuilder as the primary API to compose multiple plugins (instead of PluginStack::new(IdentityPlugin, IdentityPlugin).apply(...)) https://github.com/awslabs/smithy-rs/pull/1971 The impact of a runtime error on developer productivity can be further minimised by encouraging adoption of integration testing; this can be achieved, among other options, by authoring guides that highlight its benefits and provide implementation guidance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Changes checklist","id":"316","title":"Changes checklist"},"317":{"body":"Status: Implemented Applies to: server For a summarized list of proposed changes, see the Changes Checklist section.","breadcrumbs":"RFCs » RFC-0024: RequestID » RFC: RequestID in business logic handlers","id":"317","title":"RFC: RequestID in business logic handlers"},"318":{"body":"RequestID : a service-wide request's unique identifier UUID : a universally unique identifier RequestID is an element that uniquely identifies a client request. RequestID is used by services to map all logs, events and specific data to a single operation. This RFC discusses whether and how smithy-rs can make that value available to customers. Services use a RequestID to collect logs related to the same request and see its flow through the various operations, help clients debug requests by sharing this value and, in some cases, use this value to perform their business logic. RequestID is unique across a service at least within a certain timeframe. This value for the purposes above must be set by the service. Having the client send the value brings the following challenges: The client could repeatedly send the same RequestID The client could send no RequestID The client could send a malformed or malicious RequestID (like in 1 and 2 ). To minimise the attack surface and provide a uniform experience to customers, servers should generate the value. However, services should be free to read the ID sent by clients in HTTP headers: it is common for services to read the request ID a client sends, record it and send it back upon success. A client may want to send the same value to multiple services. Services should still decide to have their own unique request ID per actual call. RequestIDs are not to be used by multiple services, but only within a single service.","breadcrumbs":"RFCs » RFC-0024: RequestID » Terminology","id":"318","title":"Terminology"},"319":{"body":"The proposal is to implement a RequestId type and make it available to middleware and business logic handlers, through FromParts and as a Service. To aid customers already relying on clients' request IDs, there will be two types: ClientRequestId and ServerRequestId. Implementing FromParts for Extension gives customers the ability to write their handlers: pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... ServerRequestId and ClientRequestId will be injected into the extensions by a layer. This layer can also be used to open a span that will log the request ID: subsequent logs will be in the scope of that span. ServerRequestId format: Common formats for RequestIDs are: UUID: a random string, represented in hex, of 128 bits from IETF RFC 4122: 7c038a43-e499-4162-8e70-2d4d38595930 The hash of a sequence such as date+thread+server: 734678902ea938783a7200d7b2c0b487 A verbose description: current_ms+hostname+increasing_id For privacy reasons, any format that provides service details should be avoided. A random string is preferred. The proposed format is to use UUID, version 4. A Service that inserts a RequestId in the extensions will be implemented as follows: impl Service> for ServerRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { req.extensions_mut().insert(ServerRequestId::new()); self.inner.call(req) }\n} For client request IDs, the process will be, in order: If a header is found matching one of the possible ones, use it Otherwise, None Option is used to distinguish whether a client had provided an ID or not. impl Service> for ClientRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { for possible_header in self.possible_headers { if let Some(id) = req.headers.get(possible_header) { req.extensions_mut().insert(Some(ClientRequestId::new(id))); return self.inner.call(req) } } req.extensions_mut().insert(None); self.inner.call(req) }\n} The string representation of a generated ID will be valid for this regex: For ServerRequestId: /^[A-Za-z0-9_-]{,48}$/ For ClientRequestId: see the spec Although the generated ID is opaque, this will give guarantees to customers as to what they can expect, if the server ID is ever updated to a different format.","breadcrumbs":"RFCs » RFC-0024: RequestID » The user experience if this RFC is implemented","id":"319","title":"The user experience if this RFC is implemented"},"32":{"body":"Smithy defines the concept of \"Document Types\": [Documents represent] protocol-agnostic open content that is accessed like JSON data. Open content is useful for modeling unstructured data that has no schema, data that can't be modeled using rigid types, or data that has a schema that evolves outside of the purview of a model. The serialization format of a document is an implementation detail of a protocol and MUST NOT have any effect on the types exposed by tooling to represent a document value. Individual protocols define their own document serialization behavior, with some protocols such as AWS and EC2 Query not supporting document types.","breadcrumbs":"Smithy » Simple Shapes » Document Types","id":"32","title":"Document Types"},"320":{"body":"Implement ServerRequestId: a new() function that generates a UUID, with Display, Debug and ToStr implementations Implement ClientRequestId: new() that wraps a string (the header value) and the header in which the value could be found, with Display, Debug and ToStr implementations Implement FromParts for Extension Implement FromParts for Extension","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes checklist","id":"320","title":"Changes checklist"},"321":{"body":"This RFC has been changed to only implement ServerRequestId.","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes since the RFC has been approved","id":"321","title":"Changes since the RFC has been approved"},"322":{"body":"Status: Implemented. See the description of the PR that laid the foundation for the implementation of constraint traits for a complete reference. See the Better Constraint Violations RFC too for subsequent improvements to this design. See the uber tracking issue for pending work. Constraint traits are used to constrain the values that can be provided for a shape. For example, given the following Smithy model, @length(min: 18)\nInteger Age the integer Age must take values greater than or equal to 18. Constraint traits are most useful when enforced as part of input model validation to a service. When a server receives a request whose contents deserialize to input data that violates the modeled constraints, the operation execution's preconditions are not met, and as such rejecting the request without executing the operation is expected behavior. Constraint traits can also be applied to operation output member shapes, but the expectation is that service implementations not fail to render a response when an output value does not meet the specified constraints. From awslabs/smithy#1039 : This might seem counterintuitive, but our philosophy is that a change in server-side state should not be hidden from the caller unless absolutely necessary. Refusing to service an invalid request should always prevent server-side state changes, but refusing to send a response will not, as there's generally no reasonable route for a server implementation to unwind state changes due to a response serialization failure. In general , clients should not enforce constraint traits in generated code. Clients must also never enforce constraint traits when sending requests. This is because: addition and removal of constraint traits are backwards-compatible from a client's perspective (although this is not documented anywhere in the Smithy specification), the client may have been generated with an older version of the model; and the most recent model version might have lifted some constraints. On the other hand, server SDKs constitute the source of truth for the service's behavior, so they interpret the model in all its strictness. The Smithy spec defines 8 constraint traits: enum , idRef , length , pattern , private , range , required ; and uniqueItems . The idRef and private traits are enforced at SDK generation time by the awslabs/smithy libraries and bear no relation to generated Rust code. The only constraint trait enforcement that is generated by smithy-rs clients should be and is the enum trait, which renders Rust enums. The required trait is already and only enforced by smithy-rs servers since #1148 . That leaves 4 traits: length, pattern, range, and uniqueItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » RFC: Constraint traits","id":"322","title":"RFC: Constraint traits"},"323":{"body":"This section addresses how to implement and enforce the length, pattern, range, and uniqueItems traits. We will use the length trait applied to a string shape as a running example. The implementation of this trait mostly carries over to the other three.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Implementation","id":"323","title":"Implementation"},"324":{"body":"Consider the following Smithy model: @length(min: 1, max: 69)\nstring NiceString The central idea to the implementation of constraint traits is: parse, don't validate . Instead of code-generating a Rust String to represent NiceString values and perform the validation at request deserialization, we can leverage Rust's type system to guarantee domain invariants . We can generate a wrapper tuple struct that parses the string's value and is \"tight\" in the set of values it can accept: pub struct NiceString(String); impl TryFrom for NiceString { type Error = nice_string::ConstraintViolation; fn try_from(value: String) -> Result { let num_code_points = value.chars().count(); if 1 <= num_code_points && num_code_points <= 69 { Ok(Self(value)) } else { Err(nice_string::ConstraintViolation::Length(num_code_points)) } }\n} (Note that we're using the linear time check chars().count() instead of len() on the input value, since the Smithy specification says the length trait counts the number of Unicode code points when applied to string shapes .) The goal is to enforce, at the type-system level, that these constrained structs always hold valid data. It should be impossible for the service implementer, without resorting to unsafe Rust, to construct a NiceString that violates the model. The actual check is performed in the implementation of TryFrom for the generated struct, which makes it convenient to use the ? operator for error propagation . Each constrained struct will have a related std::error::Error enum type to signal the first parsing failure, with one enum variant per applied constraint trait: pub mod nice_string { pub enum ConstraintViolation { /// Validation error holding the number of Unicode code points found, when a value between `1` and /// `69` (inclusive) was expected. Length(usize), } impl std::error::Error for ConstraintViolation {}\n} std::error::Error requires Display and Debug . We will #[derive(Debug)], unless the shape also has the sensitive trait , in which case we will just print the name of the struct: impl std::fmt::Debug for ConstraintViolation { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"ConstraintViolation\"); formatter.finish() }\n} Display is used to produce human-friendlier representations. Its implementation might be called when formatting a 400 HTTP response message in certain protocols, for example.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Example implementation for the length trait","id":"324","title":"Example implementation for the length trait"},"325":{"body":"We will continue to deserialize the different parts of the HTTP message into the regular Rust standard library types. However, just before the deserialization function returns, we will convert the type into the wrapper tuple struct that will eventually be handed over to the operation handler. This is what we're already doing when deserializing strings into enums. For example, given the Smithy model: @enum([ { name: \"Spanish\", value: \"es\" }, { name: \"English\", value: \"en\" }, { name: \"Japanese\", value: \"jp\" },\n])\nstring Language the code the client generates when deserializing a string from a JSON document into the Language enum is (excerpt): ...\nmatch key.to_unescaped()?.as_ref() { \"language\" => { builder = builder.set_language( aws_smithy_json::deserialize::token::expect_string_or_null( tokens.next(), )? .map(|s| { s.to_unescaped() .map(|u| crate::model::Language::from(u.as_ref())) }) .transpose()?, ); } _ => aws_smithy_json::deserialize::token::skip_value(tokens)?,\n}\n... Note how the String gets converted to the enum via Language::from(). impl std::convert::From<&str> for Language { fn from(s: &str) -> Self { match s { \"es\" => Language::Spanish, \"en\" => Language::English, \"jp\" => Language::Japanese, other => Language::Unknown(other.to_owned()), } }\n} For constrained shapes we would do the same to parse the inner deserialized value into the wrapper tuple struct, except for these differences: For enums, the client generates an Unknown variant that \"contains new variants that have been added since this code was generated\". The server does not need such a variant ( #1187 ). Conversions into the tuple struct are fallible (try_from() instead of from()). These errors will result in a my_struct::ConstraintViolation.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Request deserialization","id":"325","title":"Request deserialization"},"326":{"body":"We will enforce the length constraint by calling len() on Rust's Vec (list and set shapes), HashMap (map shapes) and our aws_smithy_types::Blob (bytes shapes). We will enforce the length constraint trait on String (string shapes) by calling .chars().count().","breadcrumbs":"RFCs » RFC-0025: Constraint traits » length trait","id":"326","title":"length trait"},"327":{"body":"The pattern trait restricts string shape values to a specified regular expression. We will implement this by using the regex's crate is_match . We will use once_cell to compile the regex only the first time it is required.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » pattern trait","id":"327","title":"pattern trait"},"328":{"body":"The uniqueItems trait indicates that the items in a List MUST be unique. If the list shape is sparse, more than one null value violates this constraint. We will enforce this by copying references to the Vec's elements into a HashSet and checking that the sizes of both containers coincide.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » uniqueItems trait","id":"328","title":"uniqueItems trait"},"329":{"body":"From the spec : Some constraints can be applied to shapes as well as structure members. If a constraint of the same type is applied to a structure member and the shape that the member targets, the trait applied to the member takes precedence. structure ShoppingCart { @range(min: 7, max:12) numberOfItems: PositiveInteger\n} @range(min: 1)\ninteger PositiveInteger In the above example, the range trait applied to numberOfItems takes precedence over the one applied to PositiveInteger. The resolved minimum will be 7, and the maximum 12. When the constraint trait is applied to a member shape, the tuple struct's name will be the PascalCased name of the member shape, NumberOfItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Trait precedence and naming of the tuple struct","id":"329","title":"Trait precedence and naming of the tuple struct"},"33":{"body":"Note: Throughout this document, the word \"box\" always refers to a Rust Box , a heap allocated pointer to T, and not the Smithy concept of boxed vs. unboxed. Recursive shapes pose a problem for Rust, because the following Rust code will not compile: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Option\n} |\n3 | struct TopStructure { | ^^^^^^^^^^^^^^^^^^^ recursive type has infinite size\n4 | intermediate: IntermediateStructure | ----------------------------------- recursive without indirection | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `main::TopStructure` representable This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt To support this, as the message suggests, we must \"Box\" the offending type. There is a touch of trickiness—only one element in the cycle needs to be boxed, but we need to select it deterministically such that we always pick the same element between multiple codegen runs. To do this the Rust SDK will: Topologically sort the graph of shapes. Identify cycles that do not pass through an existing Box, List, Set, or Map For each cycle, select the earliest shape alphabetically & mark it as Box in the Smithy model by attaching the custom RustBoxTrait to the member. Go back to step 1. This would produce valid Rust: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Box>\n} Backwards Compatibility Note! Box is not generally compatible with T in Rust. There are several unlikely but valid model changes that will cause the SDK to produce code that may break customers. If these are problematic, all are avoidable with customizations. A recursive link is added to an existing structure. This causes a member that was not boxed before to become Box. Workaround : Mark the new member as Box in a customization. A field is removed from a structure that removes the recursive dependency. The SDK would generate T instead of Box. Workaround : Mark the member that used to be boxed as Box in a customization. The Box will be unnecessary, but we will keep it for backwards compatibility.","breadcrumbs":"Smithy » Recursive Shapes » Recursive Shapes","id":"33","title":"Recursive Shapes"},"330":{"body":"Should we code-generate unsigned integer types (u16, u32, u64) when the range trait is applied with min set to a value greater than or equal to 0? A user has even suggested to use the std::num::NonZeroUX types (e.g. NonZeroU64 ) when range is applied with min set to a value greater than 0. UPDATE: This requires further design work. There are interoperability concerns: for example, the positive range of a u32 is strictly greater than that of an i32, so clients wouldn't be able to receive values within the non-overlapping range. In request deserialization, should we fail with the first violation and immediately render a response, or attempt to parse the entire request and provide a complete and structured report? UPDATE: We will provide a response containing all violations. See the \"Collecting Constraint Violations\" section in the Better Constraint Violations RFC. Should we provide a mechanism for the service implementer to construct a Rust type violating the modeled constraints in their business logic e.g. a T::new_unchecked() constructor? This could be useful (1) when the user knows the provided inner value does not violate the constraints and doesn't want to incur the performance penalty of the check; (2) when the struct is in a transient invalid state. However: (2) is arguably a modelling mistake and a separate struct to represent the transient state would be a better approach, the user could use unsafe Rust to bypass the validation; and adding this constructor is a backwards-compatible change, so it can always be added later if this feature is requested. UPDATE: We decided to punt on this until users express interest.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Unresolved questions","id":"330","title":"Unresolved questions"},"331":{"body":"An alternative design with less public API surface would be to perform constraint validation at request deserialization, but hand over a regular \"loose\" type (e.g. String instead of NiceString) that allows for values violating the constraints. If we were to implement this approach, we can implement it by wrapping the incoming value in the aforementioned tuple struct to perform the validation, and immediately unwrap it. Comparative advantages: Validation remains an internal detail of the framework. If the semantics of a constraint trait change, the behavior of the service is still backwards-incompatibly affected, but user code is not. Less \"invasive\". Baking validation in the generated type might be deemed as the service framework overreaching responsibilities. Comparative disadvantages: It becomes possible to send responses with invalid operation outputs. All the service framework could do is log the validation errors. Baking validation at the type-system level gets rid of an entire class of logic errors. Less idiomatic (this is subjective). The pattern of wrapping a more primitive type to guarantee domain invariants is widespread in the Rust ecosystem. The standard library makes use of it extensively. Note that both designs are backwards incompatible in the sense that you can't migrate from one to the other without breaking user code. UPDATE: We ended up implementing both designs, adding a flag to opt into the alternative design. Refer to the mentions of the publicConstrainedTypes flag in the description of the Builders of builders PR .","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Alternative design","id":"331","title":"Alternative design"},"332":{"body":"Status: Implemented Applies to: clients (and may impact servers due to shared codegen) This RFC proposes changing the organization structure of the generated client crates to: Make discovery in the crate documentation easier. Facilitate re-exporting types from runtime crates in related modules without name collisions. Facilitate feature gating operations for faster compile times in the future.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » RFC: Client Crate Organization","id":"332","title":"RFC: Client Crate Organization"},"333":{"body":"Previously, crates were organized as such: .\n├── client\n| ├── fluent_builders\n| | └── \n| ├── Builder (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| └── Sleep (*)\n├── error\n| ├── \n| ├── \n| ├── \n| └── \n├── http_body_checksum (empty)\n├── input\n| ├── \n| └── \n├── lens (empty)\n├── middleware\n| └── DefaultMiddleware\n├── model\n| ├── \n| └── \n├── operation\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | ├── RetryKind (*)\n| └── \n├── output\n| ├── \n| └── \n├── paginator\n| ├── \n| └── \n├── presigning\n| ├── config\n| | ├── Builder\n| | ├── Error\n| | └── PresigningConfig\n| └── request\n| └── PresignedRequest\n├── types\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| ├── DateTime (*)\n| └── SdkError (*)\n├── AppName (*)\n├── Client\n├── Config\n├── Credentials (*)\n├── Endpoint (*)\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region (*) (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Previous Organization","id":"333","title":"Previous Organization"},"334":{"body":"This RFC proposes reorganizing types by operation first and foremost, and then rearranging other pieces to reduce codegen collision risk.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Proposed Changes","id":"334","title":"Proposed Changes"},"335":{"body":"Builders (distinct from fluent builders) are generated alongside all inputs, outputs, models, and errors. They all follow the same overall pattern (where shapeType is Input, Output, or empty for models/errors): .\n└── module ├── └── This results in large lists of modules that all have exactly one item in them, which makes browsing the documentation difficult, and introduces the possibility of name collisions when re-exporting modules from the runtime crates. Builders should adopt a prefix and go into a single builders module, similar to how the fluent builders currently work: .\n├── module\n| └── builders\n| └── \n└──---- ","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Establish a pattern for builder organization","id":"335","title":"Establish a pattern for builder organization"},"336":{"body":"All code generated for an operation that isn't shared between operations will go into operation-specific modules. This includes inputs, outputs, errors, parsers, and paginators. Types shared across operations will remain in another module (discussed below), and serialization/deserialization logic for those common types will also reside in that common location for now. If operation feature gating occurs in the future, further optimization can be done to track which of these are used by feature, or they can be reorganized (this would be discussed in a future RFC and is out of scope here). With code generated operations living in crate::operation, there is a high chance of name collision with the customize module. To resolve this, customize will be moved into crate::client. The new crate::operation module will look as follows: .\n└── operation └── ├── paginator | ├── `${operation}Paginator` | └── `${operation}PaginatorItems` ├── builders | ├── `${operation}FluentBuilder` | ├── `${operation}InputBuilder` | └── `${operation}OutputBuilder` ├── `${operation}Error` ├── `${operation}Input` ├── `${operation}Output` └── `${operation}Parser` (private/doc hidden)","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Organize code generated types by operation","id":"336","title":"Organize code generated types by operation"},"337":{"body":"The crate root should only host the most frequently used types, or phrased differently, the types that are critical to making a service call with default configuration, or that are required for the most frequent config changes (such as setting credentials, or changing the region/endpoint). Previously, the following were exported in root: .\n├── AppName\n├── Client\n├── Config\n├── Credentials\n├── Endpoint\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region The AppName is infrequently set, and will be moved into crate::config. Customers are encouraged to use aws-config crate to resolve credentials, region, and endpoint. Thus, these types no longer need to be at the top-level, and will be moved into crate::config. ErrorExt will be moved into crate::error, but Error will stay in the crate root so that customers that alias the SDK crate can easily reference it in their Results: use aws_sdk_s3 as s3; fn some_function(/* ... */) -> Result<(), s3::Error> { /* ... */\n} The PKG_VERSION should move into a new meta module, which can also include other values in the future such as the SHA-256 hash of the model used to produce the crate, or the version of smithy-rs that generated it.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Reorganize the crate root","id":"337","title":"Reorganize the crate root"},"338":{"body":"Previously, the Smithy Client builder was re-exported alongside the SDK fluent Client so that non-SDK clients could easily customize the underlying Smithy client by using the fluent client's Client::with_config function or From> trait implementation. This makes sense for non-SDK clients where customization of the connector and middleware types is supported generically, but less sense for SDKs since the SDK clients are hardcoded to use DynConnector and DynMiddleware. Thus, the Smithy client Builder should not be re-exported for SDKs.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Conditionally remove Builder from crate::client","id":"338","title":"Conditionally remove Builder from crate::client"},"339":{"body":"Previously, crate::types held re-exported types from aws-smithy-types that are used by code generated structs/enums. This module will be renamed to crate::primitives so that the name types can be repurposed in the next section.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Create a primitives module","id":"339","title":"Create a primitives module"},"34":{"body":"Smithy Type Rust Type List Vec Set Vec Map HashMap Structure struct Union enum Most generated types are controlled by SymbolVisitor .","breadcrumbs":"Smithy » Aggregate Shapes » Aggregate Shapes","id":"34","title":"Aggregate Shapes"},"340":{"body":"The name model is meaningless outside the context of code generation (although there is precedent since both the Java V2 and Kotlin SDKs use the term). Previously, this module held all the generated structs/enums that are referenced by inputs, outputs, and errors. This RFC proposes that this module be renamed to types, and that all code generated types for shapes that are reused between operations (basically anything that is not an input, output, or error) be moved here. This would look as follows: .\n└── types ├── error | ├── builders | | └── | └── ├── builders | └── └── Customers using the fluent builder should be able to just use ${crate}::types::*; to immediately get access to all the shared types needed by the operations they are calling. Additionally, moving the top-level code generated error types into crate::types will eliminate a name collision issue in the crate::error module.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the types module","id":"340","title":"Repurpose the types module"},"341":{"body":"The error module is significantly smaller after all the code generated error types are moved out of it. This top-level module is now available for re-exports and utilities. The following will be re-exported in crate::error: aws_smithy_http::result::SdkError aws_smithy_types::error::display::DisplayErrorContext For crates that have an ErrorExt, it will also be moved into crate::error.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the original crate::error module","id":"341","title":"Repurpose the original crate::error module"},"342":{"body":"The crate::presigning module only has four members, so it should be flattened from: .\n└── presigning ├── config | ├── Builder | ├── Error | └── PresigningConfig └── request └── PresignedRequest to: .\n└── presigning ├── PresigningConfigBuilder ├── PresigningConfigError ├── PresigningConfig └── PresignedRequest At the same time, Builder and Error will be renamed to PresigningConfigBuilder and PresigningConfigError respectively since these will rarely be referred to directly (preferring PresigningConfig::builder() instead; the error will almost always be unwrapped).","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Flatten the presigning module","id":"342","title":"Flatten the presigning module"},"343":{"body":"The lens and http_body_checksum modules have nothing inside them, and their documentation descriptions are not useful to customers: lens: Generated accessors for nested fields http_body_checksum: Functions for modifying requests and responses for the purposes of checksum validation These modules hold private functions that are used by other generated code, and should just be made private or #[doc(hidden)] if necessary.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Remove the empty modules","id":"343","title":"Remove the empty modules"},"344":{"body":"All combined, the following is the new publicly visible organization: .\n├── client\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | └── RetryKind (*)\n| ├── Builder (only in non-SDK crates) (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AppName (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| ├── Credentials (*)\n| ├── Endpoint (*)\n| ├── Region (*)\n| └── Sleep (*)\n├── error\n| ├── DisplayErrorContext (*)\n| ├── ErrorExt (for some services)\n| └── SdkError (*)\n├── meta\n| └── PKG_VERSION\n├── middleware\n| └── DefaultMiddleware\n├── operation\n| └── \n| ├── paginator\n| | ├── `${operation}Paginator`\n| | └── `${operation}PaginatorItems`\n| ├── builders\n| | ├── `${operation}FluentBuilder`\n| | ├── `${operation}InputBuilder`\n| | └── `${operation}OutputBuilder`\n| ├── `${operation}Error`\n| ├── `${operation}Input`\n| ├── `${operation}Output`\n| └── `${operation}Parser` (private/doc hidden)\n├── presigning\n| ├── PresigningConfigBuilder\n| ├── PresigningConfigError\n| ├── PresigningConfig\n| └── PresignedRequest\n├── primitives\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| └── DateTime (*)\n├── types\n| ├── error\n| | ├── builders\n| | | └── \n| | └── \n| ├── builders\n| | └── \n| └── \n├── Client\n├── Config\n└── Error (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » New Organization","id":"344","title":"New Organization"},"345":{"body":"Move crate::AppName into crate::config Move crate::PKG_VERSION into a new crate::meta module Move crate::Endpoint into crate::config Move crate::Credentials into crate::config Move crate::Region into crate::config Move crate::operation::customize into crate::client Finish refactor to decouple client/server modules Organize code generated types by operation Reorganize builders Rename crate::types to crate::primitives Rename crate::model to crate::types Move crate::error into crate::types Only re-export aws_smithy_client::client::Builder for non-SDK clients (remove from SDK clients) Move crate::ErrorExt into crate::error Re-export aws_smithy_types::error::display::DisplayErrorContext and aws_smithy_http::result::SdkError in crate::error Move crate::paginator into crate::operation Flatten crate::presigning Hide or remove crate::lens and crate::http_body_checksum Move fluent builders into crate::operation::x::builders Remove/hide operation ParseResponse implementations in crate::operation Update \"Crate Organization\" top-level section in generated crate docs Update all module docs Break up modules/files so that they're not 30k lines of code models/types; each struct/enum should probably get its own file with pub-use models/types::builders: now this needs to get split up client.rs Fix examples Write changelog","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Changes Checklist","id":"345","title":"Changes Checklist"},"346":{"body":"Status: RFC For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how the Rust SDK will integrate with the next generation of endpoint resolution logic (Endpoints 2.0). Endpoints 2.0 defines a rules language for resolving endpoints. The Rust SDK will code-generate Rust code from this intermediate language and use this to create service-specific endpoint resolvers. Endpoints 2.0 will be a core feature and be available for generic clients as well as the AWS SDK.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » RFC: Endpoints 2.0","id":"346","title":"RFC: Endpoints 2.0"},"347":{"body":"Generic client : In reference to features/code that is not AWS specific and is supported for all Smithy clients. Rules language : A JSON-based rules language used to resolve endpoints Smithy Endpoint : An endpoint, as returned from the rules-language. This contains a URI, headers, and configuration map of String -> Document (properties). This must undergo another level of transformation before it can be used as an AwsEndpoint. AWS Endpoint : An endpoint with explicit signing configuration applied. AWS Endpoints need to contain region & service metadata to control signing. Middleware : A transformation applied to a request, prior to request dispatch Endpoint Parameters : A code-generated structure for each service which contains service-specific (and general) endpoint parameters.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Terminology","id":"347","title":"Terminology"},"348":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The user experience if this RFC is implemented","id":"348","title":"The user experience if this RFC is implemented"},"349":{"body":"SDKs will generate a new, public, endpoint module. The module will contain a Params structure and a DefaultResolver . Supporting these modules, a private endpoints_impl module will be generated. Why generate two modules ? Generating two separate modules, endpoint and endpoint_impl ensures that we don't have namespace collisions between hand-written and generated code. SDK middleware will be updated to use the new smithy_types::Endpoint . During request construction in make_operation, a smithy endpoint will be inserted into the property bag. The endpoint middleware will be updated to extract the Smithy endpoint from the property bag and set the request endpoint & signing information accordingly (see: Converting to AWS Endpoint . The following flow chart traces the endpoints 2.0 influence on a request via the green boxes. flowchart TD globalConfig(\"SDK global configuration (e.g. region provider, UseFIPS, etc.)\") serviceConfig(\"Modeled, service specific configuration information (clientContextParams)\") operationConfig(\"Operation-specific configuration (S3 Bucket, accountId, etc.)\") getObject[\"S3::GetObject\"] params[\"Create endpoint parameters\"] evaluate[\"Evaluate ruleset\"] rules[\"Generated Endpoint Ruleset for S3\"] middleware[\"Apply endpoint & properties to request via endpoint middleware\"] style getObject fill:green,stroke:#333,stroke-width:4px style params fill:green,stroke:#333,stroke-width:4px style evaluate fill:green,stroke:#333,stroke-width:4px style middleware fill:green,stroke:#333,stroke-width:4px getObject ==> params globalConfig ---> params operationConfig --> params serviceConfig ---> params rules --> evaluate params --> evaluate evaluate --> middleware","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overview","id":"349","title":"Overview"},"35":{"body":"List objects in Smithy are transformed into vectors in Rust. Based on the output of the NullableIndex , the generated list may be Vec or Vec>.","breadcrumbs":"Smithy » Aggregate Shapes » List","id":"35","title":"List"},"350":{"body":"In the general case, users will not be impacted by Endpoints 2.0 with one exception: today, users can provide a global endpoint provider that can override different services. There is a single ResolveAwsEndpoint trait that is shared across all services. However, this isn't the case for Endpoints 2.0 where the trait actually has a generic parameter: pub trait ResolveEndpoint: Send + Sync { fn resolve_endpoint(&self, params: &T) -> Result;\n} The trait itself would then be parameterized by service-specific endpoint parameter, eg: aws_sdk_s3::endpoint::Params. The endpoint parameters we would use for S3 (e.g. including Bucket) are different from the endpoint parameters we might use for a service like DynamoDB which, today, doesn't have any custom endpoint behavior. Going forward we will to provide two different avenues for customers to customize endpoints: Configuration driven URL override. This mechanism hasn't been specified, but suppose that the Rust SDK supported an SDK_ENDPOINT environment variable. This variable would be an input to the existing endpoint resolver. machinery and would be backwards compatible with other SDKs (e.g. by prefixing the bucket as a host label for S3). Wholesale endpoint resolver override. In this case, customers would gain access to all endpoint parameters and be able to write their own resolver. This RFC proposes making the following changes: For the current global ability to override an endpoint, instead of accepting an AwsEndpoint, accept a URI. This will simplify the interface for most customers who don't actually need logic-driven endpoint construction. The Endpoint that can be set will be passed in as the SDK::Endpoint built-in. This will be renamed to endpoint_url for clarity. All AWS services MUST accept the SDK::Endpoint built-in. For complex, service-specific behavior, customers will be able to provide a service specific endpoint resolver at client construction time. This resolver will be parameterized with the service-specific parameters type, ( eg. aws_sdk_s3::endpoint::Params). Finally, customers will be able to access the default_resolver() for AWS services directly. This will enable them to utilize the default S3 endpoint resolver in their resolver implementation. Example: overriding the endpoint URI globally async fn main() { let sdk_conf = aws_config::from_env().endpoint_url(\"http://localhost:8123\").load().await; let dynamo = aws_sdk_dynamodb::Client::new(&sdk_conf); // snip ...\n} Example: overriding the endpoint resolver for a service /// Resolve to Localhost when an environment variable is set\nstruct CustomDdbResolver; impl ResolveEndpoint for CustomDdbResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // custom resolver to redirect to DDB local if a flag is set let base_endpoint = aws_sdk_dynamodb::endpoint::default_resolver().resolve_endpoint(params).expect(\"valid endpoint should be resolved\"); if env::var(\"LOCAL\") == Ok(\"true\") { // update the URI on the returned endpoint to localhost while preserving the other properties Ok(base_endpoint.builder().uri(\"http://localhost:8888\").build()) } else { Ok(base_endpoint) } }\n} async fn main() { let conf = aws_config::load_from_env().await; let ddb_conf = aws_sdk_dynamodb::config::Builder::from(&conf).endpoint_resolver(CustomDdbResolver); let dynamodb = aws_sdk_dynamodb::Client::from_conf(ddb_conf);\n} Note: for generic clients, they cannot use endpoint_url—this is because endpoint_url is dependent on rules and generic clients do not necessarily rules. However, they can use the impl ResolveEndpoint for &'static str { ... } implementation. What about alternative S3 implementations? How do we say \"don't put prefix bucket on this?\" For cases where users want to use the provided URL directly with no modification users will need to rely on service specific configuration, like forcing path style addressing for S3. Alternative Design : Context Aware Endpoint Trait Optional addition : We could add an additional EndpointResolver parameter to SdkConfig that exposed a global trait where Params is &dyn Any similar to Context Aware Endpoint Trait . If these were both set, a runtime panic would alert users to the misconfiguration.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overriding Endpoints","id":"350","title":"Overriding Endpoints"},"351":{"body":"The new endpoint resolution trait and Endpoint struct will be available for generic clients. AWS endpoint middleware will pull the Endpoint out of the property bag and read the properties to determine auth/signing + any other AWS metadata that may be required. An example of the Endpoint struct is below. This struct will be in aws-smithy-types, however, it should initially be gated with documentation warning about stability. The Endpoint Struct // module: `aws_smithy_types::endpoint`\n// potential optimization to reduce / remove allocations for keys which are almost always static\n// this can also just be `String`\ntype MaybeStatic = Cow<'static, T>; /// Endpoint\n#[derive(Debug, PartialEq)]\npub struct Endpoint { // Note that this allows `Endpoint` to contain an invalid URI. During conversion to an actual endpoint, the // the middleware can fail, returning a `ConstructionFailure` to the user url: MaybeStatic, headers: HashMap, Vec>>, properties: HashMap, aws_smithy_types::Document>,\n} // not shown:\n// - impl block with standard accessors\n// - builder, designed to be invoked / used by generated code What's an Endpoint property? Endpoint properties, on their own, have no intrinsic meaning. Endpoint properties have established conventions for AWS SDKs. Other Smithy implementors may choose a different pattern. For AWS SDKs, the authSchemes key is an ordered list of authentication/signing schemes supported by the Endpoint that the SDK should use. To perform produce an Endpoint struct we have a generic ResolveEndpoint trait which will be both generic in terms of parameters and being \"smithy-generic: // module: `smithy_types::endpoint` or `aws_smithy_client`??\npub trait ResolveEndpoint: Send + Sync { /// Resolves an `Endpoint` for `Params` fn resolve_endpoint(&self, params: &Params) -> Result;\n} All Smithy services that have the @endpointRuleSet trait applied to the service shape will code generate a default endpoint resolver implementation. The default endpoint resolver MUST be public, so that customers can delegate to it if they wish to override the endpoint resolver.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » New Endpoint Traits","id":"351","title":"New Endpoint Traits"},"352":{"body":"We've mentioned \"service specific endpoint parameters\" a few times. In Endpoints 2.0, we will code generate Endpoint Parameters for every service based on their rules. Note : the endpoint parameters themselves are generated solely from the ruleset. The Smithy model provides additional information about parameter binding, but that only influences how the parameters are set, not how they are generated. Example Params struct for S3: #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\n/// Configuration parameters for resolving the correct endpoint\npub struct Params { pub(crate) bucket: std::option::Option, pub(crate) region: std::option::Option, pub(crate) use_fips: bool, pub(crate) use_dual_stack: bool, pub(crate) endpoint: std::option::Option, pub(crate) force_path_style: std::option::Option, pub(crate) accelerate: bool, pub(crate) disable_access_points: std::option::Option, pub(crate) disable_mrap: std::option::Option,\n} impl Params { /// Create a builder for [`Params`] pub fn builder() -> crate::endpoint_resolver::Builder { crate::endpoint_resolver::Builder::default() } /// Gets the value for bucket pub fn bucket(&self) -> std::option::Option<&str> { self.bucket.as_deref() } /// Gets the value for region pub fn region(&self) -> std::option::Option<&str> { self.region.as_deref() } /// Gets the value for use_fips pub fn use_fips(&self) -> std::option::Option { Some(self.use_fips) } /// Gets the value for use_dual_stack pub fn use_dual_stack(&self) -> std::option::Option { Some(self.use_dual_stack) } // ... more accessors\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Endpoint Params","id":"352","title":"Endpoint Params"},"353":{"body":"When an endpoint ruleset is present, Smithy will code generate an endpoint resolver from that ruleset. The endpoint resolver MUST be a struct so that it can store/cache computations (such as a partition resolver that has compiled regexes). pub struct DefaultEndpointResolver { partition_resolver: PartitionResolver\n} impl ResolveEndpoint for DefaultEndpointResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // delegate to private impl crate::endpoints_impl::resolve_endpoint(params) }\n} DefaultEndpointResolver MUST be publicly accessible and offer both a default constructor and the ability to configure resolution behavior (e.g. by supporting adding additional partitions.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The default endpoint resolver","id":"353","title":"The default endpoint resolver"},"354":{"body":"To describe how this feature will work, let's take a step-by-step path through endpoint resolution. A user defines a service client, possibly with some client specific configuration like region. @clientContextParams are code generated onto the client Config . Code generating @clientContextParams A user invokes an operation like s3::GetObject. A params object is created . In the body of make_operation(), this is passed to config.endpoint_resolver to load a generic endpoint. The Result of the of the endpoint resolution is written into the property bag. The generic smithy middleware (SmithyEndpointStage) sets the request endpoint. The AWS auth middleware (AwsAuthStage) reads the endpoint out of the property bag and applies signing overrides. The request is signed & dispatched The other major piece of implementation required is actually implementing the rules engine. To learn more about rules-engine internals, skip to implementing the rules engine .","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » How to actually implement this RFC","id":"354","title":"How to actually implement this RFC"},"355":{"body":"When a smithy model uses the @clientContextParams trait, we need to generate client params onto the Rust SDK. This is a Smithy-native feature. This should be implemented as a \"standard\" config decorator that reads traits from the current model. Kotlin Snippet for Client context params class ClientContextDecorator(ctx: ClientCodegenContext) : NamedSectionGenerator() { private val contextParams = ctx.serviceShape.getTrait()?.parameters.orEmpty().toList() .map { (key, value) -> ContextParam.fromClientParam(key, value, ctx.symbolProvider) } data class ContextParam(val name: String, val type: Symbol, val docs: String?) { companion object { private fun toSymbol(shapeType: ShapeType, symbolProvider: RustSymbolProvider): Symbol = symbolProvider.toSymbol( when (shapeType) { ShapeType.STRING -> StringShape.builder().id(\"smithy.api#String\").build() ShapeType.BOOLEAN -> BooleanShape.builder().id(\"smithy.api#Boolean\").build() else -> TODO(\"unsupported type\") } ) fun fromClientParam( name: String, definition: ClientContextParamDefinition, symbolProvider: RustSymbolProvider ): ContextParam { return ContextParam( RustReservedWords.escapeIfNeeded(name.toSnakeCase()), toSymbol(definition.type, symbolProvider), definition.documentation.orNull() ) } } } override fun section(section: ServiceConfig): Writable { return when (section) { is ServiceConfig.ConfigStruct -> writable { contextParams.forEach { param -> rust(\"pub (crate) ${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.ConfigImpl -> emptySection ServiceConfig.BuilderStruct -> writable { contextParams.forEach { param -> rust(\"${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.BuilderImpl -> writable { contextParams.forEach { param -> param.docs?.also { docs(it) } rust( \"\"\" pub fn ${param.name}(mut self, ${param.name}: #T) -> Self { self.${param.name} = Some(${param.name}); self } \"\"\", param.type ) } } ServiceConfig.BuilderBuild -> writable { contextParams.forEach { param -> rust(\"${param.name}: self.${param.name},\") } } else -> emptySection } }\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Code generating client context params","id":"355","title":"Code generating client context params"},"356":{"body":"Params will be created and utilized in generic code generation. make_operation() needs to load the parameters from several configuration sources. These sources have a priority order. To handle this priority order, we will load from all sources in reverse priority order, with lower priority sources overriding higher priority ones. Implementation of operation decorator class EndpointParamsDecorator( private val ctx: ClientCodegenContext, private val operationShape: OperationShape,\n) : OperationCustomization() { val idx = ContextIndex.of(ctx.model) private val ruleset = EndpointRuleset.fromNode(ctx.serviceShape.expectTrait().ruleSet) override fun section(section: OperationSection): Writable { return when (section) { is OperationSection.MutateInput -> writable { rustTemplate( \"\"\" let params = #{Params}::builder() #{builder:W}.expect(\"invalid endpoint\"); \"\"\", \"Params\" to EndpointParamsGenerator(ruleset).paramsStruct(), \"builder\" to builderFields(section) ) } is OperationSection.MutateRequest -> writable { rust(\"// ${section.request}.properties_mut().insert(params);\") } else -> emptySection } } private fun builderFields(section: OperationSection.MutateInput) = writable { val memberParams = idx.getContextParams(operationShape) val builtInParams = ruleset.parameters.toList().filter { it.isBuiltIn } // first load builtins and their defaults builtInParams.forEach { param -> val defaultProviders = section.endpointCustomizations.mapNotNull { it.defaultFor(param, section.config) } if (defaultProviders.size > 1) { error(\"Multiple providers provided a value for the builtin $param\") } defaultProviders.firstOrNull()?.also { defaultValue -> rust(\".set_${param.name.rustName()}(#W)\", defaultValue) } } // these can be overridden with client context params idx.getClientContextParams(ctx.serviceShape).forEach { (name, _param) -> rust(\".set_${name.toSnakeCase()}(${section.config}.${name.toSnakeCase()}.as_ref())\") } // lastly, allow these to be overridden by members memberParams.forEach { (memberShape, param) -> rust(\".set_${param.name.toSnakeCase()}(${section.input}.${ctx.symbolProvider.toMemberName(memberShape)}.as_ref())\") } rust(\".build()\") }\n} Loading values for builtIns The fundamental point of builtIn values is enabling other code generators to define where these values come from. Because of that, we will need to expose the ability to customize AwsBuiltIns. One way to do this is with a new customization type, EndpointCustomization: fun endpointCustomizations( clientCodegenContext: C, operation: OperationShape, baseCustomizations: List\n): List = baseCustomizations abstract class EndpointCustomization { abstract fun defaultFor(parameter: Parameter, config: String): Writable?\n} Customizations have the ability to specify the default value for a parameter. (Of course, these customizations need to be wired in properly.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Creating Params","id":"356","title":"Creating Params"},"357":{"body":"A Smithy endpoint has an untyped, string->Document collection of properties. We need to interpret these properties to handle actually resolving an endpoint. As part of the AwsAuthStage, we load authentication schemes from the endpoint properties and use these to configure signing on the request. Note : Authentication schemes are NOT required as part of an endpoint. When the auth schemes are not set, the default authentication should be used. The Rust SDK will set SigningRegion and SigningName in the property bag by default as part of make_operation.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Converting a Smithy Endpoint to an AWS Endpoint","id":"357","title":"Converting a Smithy Endpoint to an AWS Endpoint"},"358":{"body":"The Rust SDK code converts the rules into Rust code that will be compiled.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Implementing the rules engine","id":"358","title":"Implementing the rules engine"},"359":{"body":"Rules Engine Endpoint rules code generator Endpoint params code generator Endpoint tests code generator Implement ruleset standard library functions as inlineables. Note: pending future refactoring work, the aws. functions will need to be integrated into the smithy core endpoint resolver. Implement partition function & ability to customize partitions SDK Integration Add a Smithy endpoint resolver to the service config, with a default that loads the default endpoint resolver. Update SdkConfig to accept a URI instead of an implementation of ResolveAwsEndpoint. This change can be done standalone. Remove/deprecate the ResolveAwsEndpoint trait and replace it with the vanilla Smithy trait. Potentially, provide a bridge. Update make_operation to write a smithy::Endpoint into the property bag Update AWS Endpoint middleware to work off of a smithy::Endpoint Wire the endpoint override to the SDK::Endpoint builtIn parameter Remove the old smithy endpoint","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Changes checklist","id":"359","title":"Changes checklist"},"36":{"body":"Because floats are not Hashable in Rust, for simplicity smithy-rs translates all sets to into Vec instead of HashSet. In the future, a breaking change may be made to introduce a library-provided wrapper type for Sets.","breadcrumbs":"Smithy » Aggregate Shapes » Set","id":"36","title":"Set"},"360":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Alternative Designs","id":"360","title":"Alternative Designs"},"361":{"body":"An alternative design that could provide more flexibility is a context-aware endpoint trait where the return type would give context about the endpoint being returned. This would, for example, allow a customer to say explicitly \"don't modify this endpoint\": enum ContextualEndpoint { /// Just the URI please. Pass it into the default endpoint resolver as a baseline Uri { uri: Uri, immutable: bool }, /// A fully resolved, ready to rumble endpoint. Don't bother hitting the default endpoint resolver, just use what /// I've got. AwsEndpoint(AwsEndpoint)\n} trait ResolveGlobalEndpoint { fn resolve_endpoint(params: &dyn Any) -> Result;\n} Service clients would then use ResolveGlobalEndpoint, optional specified from SdkConfig to perform routing decisions.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Context Aware Endpoint Traits","id":"361","title":"Context Aware Endpoint Traits"},"362":{"body":"Status: Implemented in smithy-rs#2122 Applies to: AWS SDK for Rust At time of writing (2022-10-11), the SDK's credentials provider can be customized by providing: A profile credentials file to modify the default provider chain An instance of one of the credentials providers implemented in aws-config, such as the AssumeRoleCredentialsProvider, ImdsCredentialsProvider, and so on. A custom struct that implements the ProvideCredentials The problem this RFC examines is that when options 2 and 3 above are exercised, the customer needs to be aware of credentials caching and put additional effort to ensure caching is set up correctly (and that double caching doesn't occur). This is especially difficult to get right since some built-in credentials providers (such as AssumeRoleCredentialsProvider) already have caching, while most others do not and need to be wrapped in LazyCachingCredentialsProvider. The goal of this RFC is to create an API where Rust's type system ensures caching is set up correctly, or explicitly opted out of.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » RFC: SDK Credential Cache Type Safety","id":"362","title":"RFC: SDK Credential Cache Type Safety"},"363":{"body":"A new config method named credentials_cache() will be added to ConfigLoader and the generated service Config builders that takes a CredentialsCache instance. This CredentialsCache will be a struct with several functions on it to create and configure the cache. Client creation will ultimately be responsible for taking this CredentialsCache instance and wrapping the given (or default) credentials provider. The CredentialsCache would look as follows: enum Inner { Lazy(LazyConfig), // Eager doesn't exist today, so this is purely for illustration Eager(EagerConfig), // Custom may not be implemented right away // Not naming or specifying the custom cache trait for now since its out of scope Custom(Box), NoCaching,\n}\npub struct CredentialsCache { inner: Inner,\n} impl CredentialsCache { // These methods use default cache settings pub fn lazy() -> Self { /* ... */ } pub fn eager() -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy_builder() -> LazyBuilder { /* ... */ } pub fn eager_builder() -> EagerBuilder { /* ... */ } // Later, when custom implementations are supported pub fn custom(cache_impl: Box) -> Self { /* ... */ } pub(crate) fn create_cache( self, provider: Box, sleep_impl: Arc ) -> SharedCredentialsProvider { // Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), Self::NoCaching => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation in addition to the impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Customers that don't care about credential caching can configure credential providers without needing to think about it: let sdk_config = aws_config::from_env() .credentials_provider(ImdsCredentialsProvider::builder().build()) .load() .await; However, if they want to customize the caching, they can do so without modifying the credentials provider at all (in case they want to use the default): let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::default_eager()) .load() .await; The credentials_cache will default to CredentialsCache::default_lazy() if not provided.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » CredentialsCache and ConfigLoader::credentials_cache","id":"363","title":"CredentialsCache and ConfigLoader::credentials_cache"},"364":{"body":"Remove cache from AssumeRoleProvider Implement CredentialsCache with its Lazy variant and builder Add credentials_cache method to ConfigLoader Refactor ConfigLoader to take CredentialsCache instead of impl ProvideCredentials + 'static Refactor SharedCredentialsProvider to take a cache implementation in addition to an impl ProvideCredentials + 'static Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader Write changelog upgrade instructions Fix examples (if there are any for configuring caching)","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Changes Checklist","id":"364","title":"Changes Checklist"},"365":{"body":"","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Appendix: Alternatives Considered","id":"365","title":"Appendix: Alternatives Considered"},"366":{"body":"In this alternative, aws-types has a ProvideCachedCredentials in addition to ProvideCredentials. All individual credential providers (such as ImdsCredentialsProvider) implement ProvideCredentials, while credential caches (such as LazyCachingCredentialsProvider) implement the ProvideCachedCredentials. The ConfigLoader would only take impl ProvideCachedCredentials. This allows customers to provide their own caching solution by implementing ProvideCachedCredentials, while requiring that caching be done correctly through the type system since ProvideCredentials is only useful inside the implementation of ProvideCachedCredentials. Caching can be opted out by creating a NoCacheCredentialsProvider that implements ProvideCachedCredentials without any caching logic, although this wouldn't be recommended and this provider wouldn't be vended in aws-config. Example configuration: // Compiles\nlet sdk_config = aws_config::from_env() .credentials( LazyCachingCredentialsProvider::builder() .load(ImdsCredentialsProvider::new()) .build() ) .load() .await; // Doesn't compile\nlet sdk_config = aws_config::from_env() // Wrong type: doesn't implement `ProvideCachedCredentials` .credentials(ImdsCredentialsProvider::new()) .load() .await; Another method could be added to ConfigLoader that makes it easier to use the default cache: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::new()) .load() .await; Pros/cons :+1: It's flexible, and somewhat enforces correct cache setup through types. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers may unintentionally implement ProvideCachedCredentials instead of ProvideCredentials for a custom provider, and then not realize they're not benefiting from caching. :-1: The documentation needs to make it very clear what the differences are between ProvideCredentials and ProvideCachedCredentials since they will look identical. :-1: It's possible to implement both ProvideCachedCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative A: ProvideCachedCredentials trait","id":"366","title":"Alternative A: ProvideCachedCredentials trait"},"367":{"body":"This alternative is similar to alternative A, except that the cache trait is distinct from ProvideCredentials so that it's more apparent when mistakenly implementing the wrong trait for a custom credentials provider. A CacheCredentials trait would be added that looks as follows: pub trait CacheCredentials: Send + Sync + Debug { async fn cached(&self, now: SystemTime) -> Result;\n} Instances implementing CacheCredentials need to own the ProvideCredentials implementation to make both lazy and eager credentials caching possible. The configuration examples look identical to Option A. Pros/cons :+1: It's flexible, and enforces correct cache setup through types slightly better than Option A. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers can still unintentionally implement the wrong trait and miss out on caching when creating custom credentials providers, but it will be more apparent than in Option A. :-1: It's possible to implement both CacheCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative B: CacheCredentials trait","id":"367","title":"Alternative B: CacheCredentials trait"},"368":{"body":"The struct approach posits that customers don't need or want to implement custom credential caching, but at the same time, doesn't make it impossible to add custom caching later. The idea is that there would be a struct called CredentialsCache that specifies the desired caching approach for a given credentials provider: pub struct LazyCache { credentials_provider: Arc, // ...\n} pub struct EagerCache { credentials_provider: Arc, // ...\n} pub struct CustomCache { credentials_provider: Arc, // Not naming or specifying the custom cache trait for now since its out of scope cache: Arc\n} enum CredentialsCacheInner { Lazy(LazyCache), // Eager doesn't exist today, so this is purely for illustration Eager(EagerCache), // Custom may not be implemented right away Custom(CustomCache),\n} pub struct CredentialsCache { inner: CredentialsCacheInner,\n} impl CredentialsCache { // Methods prefixed with `default_` just use the default cache settings pub fn default_lazy(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } pub fn default_eager(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy(provider: impl ProvideCredentials + 'static) -> LazyBuilder { /* ... */ } pub fn eager(provider: impl ProvideCredentials + 'static) -> EagerBuilder { /* ... */ } pub(crate) fn create_cache( self, sleep_impl: Arc ) -> SharedCredentialsProvider { // ^ Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(inner.credentials_provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation rather than impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Configuration would look as follows: let sdk_config = aws_config::from_env() .credentials(CredentialsCache::default_lazy(ImdsCredentialsProvider::builder().build())) .load() .await; The credentials_provider method on ConfigLoader would only take CredentialsCache as an argument so that the SDK could not be configured without credentials caching, or if opting out of caching becomes a use case, then a CredentialsCache::NoCache variant could be made. Like alternative A, a convenience method can be added to make using the default cache easier: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::builder().build()) .load() .await; In the future if custom caching is added, it would look as follows: let sdk_config = aws_config::from_env() .credentials( CredentialsCache::custom(ImdsCredentialsProvider::builder().build(), MyCache::new()) ) .load() .await; The ConfigLoader wouldn't be able to immediately set its credentials provider since other values from the config are needed to construct the cache (such as sleep_impl). Thus, the credentials setter would merely save off the CredentialsCache instance, and then when load is called, the complete SharedCredentialsProvider would be constructed: pub async fn load(self) -> SdkConfig { // ... let credentials_provider = self.credentials_cache.create_cache(sleep_impl); // ...\n} Pros/cons :+1: Removes the possibility of missing out on caching when implementing a custom provider. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Requires thinking about caching when only wanting to customize the credentials provider :-1: Requires a lot of boilerplate in aws-config for the builders, enum variant structs, etc.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative C: CredentialsCache struct with composition","id":"368","title":"Alternative C: CredentialsCache struct with composition"},"369":{"body":"Status: Implemented in smithy-rs#2108 Applies to: clients This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them. It is assumed that the primary motivation behind the introduction of type safe credentials caching remains the same as the preceding RFC.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » RFC: Finding New Home for Credential Types","id":"369","title":"RFC: Finding New Home for Credential Types"},"37":{"body":"Because key MUST be a string in Smithy maps, we avoid the hashibility issue encountered with Set. There are optimizations that could be considered (e.g. since these maps will probably never be modified), however, pending customer feedback, Smithy Maps become HashMap in Rust.","breadcrumbs":"Smithy » Aggregate Shapes » Map","id":"37","title":"Map"},"370":{"body":"This document assumes that the following items in the changes checklist in the preceding RFC have been implemented: Implement CredentialsCache with its Lazy variant and builder Add the credentials_cache method to ConfigLoader Rename SharedCredentialsProvider to SharedCredentialsCache Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Assumptions","id":"370","title":"Assumptions"},"371":{"body":"Here is how our attempt to implement the selected design in the preceding RFC can lead to an obstacle. Consider this code snippet we are planning to support: let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::lazy()) .load() .await; let client = aws_sdk_s3::Client::new(&sdk_config); A CredentialsCache created by CredentialsCache::lazy() above will internally go through three crates before the variable client has been created: aws-config: after it has been passed to aws_config::ConfigLoader::credentials_cache // in lib.rs impl ConfigLoader { // --snip-- pub fn credentials_cache(mut self, credentials_cache: CredentialsCache) -> Self { self.credentials_cache = Some(credentials_cache); self } // --snip--\n} aws-types: after aws_config::ConfigLoader::load has passed it to aws_types::sdk_config::Builder::credentials_cache // in sdk_config.rs impl Builder { // --snip-- pub fn credentials_cache(mut self, cache: CredentialsCache) -> Self { self.set_credentials_cache(Some(cache)); self } // --snip--\n} aws-sdk-s3: after aws_sdk_s3::Client::new has been called with the variable sdk_config // in client.rs impl Client { // --snip-- pub fn new(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Self::from_conf(sdk_config.into()) } // --snip--\n} calls // in config.rs impl From<&aws_types::sdk_config::SdkConfig> for Builder { fn from(input: &aws_types::sdk_config::SdkConfig) -> Self { let mut builder = Builder::default(); builder = builder.region(input.region().cloned()); builder.set_endpoint_resolver(input.endpoint_resolver().clone()); builder.set_retry_config(input.retry_config().cloned()); builder.set_timeout_config(input.timeout_config().cloned()); builder.set_sleep_impl(input.sleep_impl()); builder.set_credentials_cache(input.credentials_cache().cloned()); builder.set_credentials_provider(input.credentials_provider().cloned()); builder.set_app_name(input.app_name().cloned()); builder.set_http_connector(input.http_connector().cloned()); builder }\n} impl From<&aws_types::sdk_config::SdkConfig> for Config { fn from(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Builder::from(sdk_config).build() }\n} What this all means is that CredentialsCache needs to be accessible from aws-config, aws-types, and aws-sdk-s3 (SDK client crates, to be more generic). We originally assumed that CredentialsCache would be defined in aws-config along with LazyCredentialsCache, but the assumption no longer holds because aws-types and aws-sdk-s3 do not depend upon aws-config. Therefore, we need to find a new place in which to create credentials caches accessible from the aforementioned crates.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Problems","id":"371","title":"Problems"},"372":{"body":"We propose to move the following items to a new crate called aws-credential-types: All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies For the first bullet point, we move types and traits associated with credentials out of aws-types. Crucially, the ProvideCredentials trait now lives in aws-credential-types. For the second bullet point, we move the items related to credentials caching. CredentialsCache with its Lazy variant and builder lives in aws-credential-types and CredentialsCache::create_cache will be marked as pub. One area where we make an adjustment, though, is that LazyCredentialsCache depends on aws_types::os_shim_internal::TimeSource so we need to move TimeSource into aws-credentials-types as well. A result of the above arrangement will give us the following module dependencies (only showing what's relevant): :+1: aws_types::sdk_config::Builder and a service client config::Builder can create a SharedCredentialsCache with a concrete type of credentials cache. :+1: It avoids cyclic crate dependencies. :-1: There is one more AWS runtime crate to maintain and version.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Proposed Solution","id":"372","title":"Proposed Solution"},"373":{"body":"An alternative design is to move the following items to a separate crate (tentatively called aws-XXX): All items in aws_types::sdk_config, i.e. SdkConfig and its builder All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies The reason for the first bullet point is that the builder needs to be somewhere it has access to the credentials caching factory function, CredentialsCache::create_cache. The factory function is in aws-XXX and if the builder stayed in aws-types, it would cause a cyclic dependency between those two crates. A result of the above arrangement will give us the following module dependencies: We have dismissed this design mainly because we try moving out of the aws-types create as little as possible. Another downside is that SdkConfig sitting together with the items for credentials provider & caching does not give us a coherent mental model for the aws-XXX crate, making it difficult to choose the right name for XXX.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Rejected Alternative","id":"373","title":"Rejected Alternative"},"374":{"body":"The following list does not repeat what is listed in the preceding RFC but does include those new mentioned in the Assumptions section: Create aws-credential-types Move all items in aws_types::credentials and their dependencies to the aws-credential-types crate Move all items in aws_config::meta::credentials and their dependencies to the aws-credential-types crate Update use statements and fully qualified names in the affected places","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Changes Checklist","id":"374","title":"Changes Checklist"},"375":{"body":"Status: RFC Applies to: Output, Input, and Builder types as well as DateTime, Document, Blob, and Number implemented in aws_smithy_types crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » RFC: Serialization and Deserialization","id":"375","title":"RFC: Serialization and Deserialization"},"376":{"body":"Builder Refers to data types prefixed with Builder, which converts itself into a corresponding data type upon being built. e.g. aws_sdk_dynamodb::input::PutItemInput. serde Refers to serde crate. Serialize Refers to Serialize trait avaialble on serde crate. Deserialize Refers to Deserialize trait available on serde crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Terminology","id":"376","title":"Terminology"},"377":{"body":"We are going to implement Serialize and Deserialize traits from serde crate to some data types. Data types that are going to be affected are; builder data types operation Input types operation Output types data types that builder types may have on their field(s) aws_smithy_types::DateTime aws_smithy_types::Document aws_smithy_types::Blob aws_smithy_types::Number DateTime and Blob implements different serialization/deserialization format for human-readable and non-human readable format; We must emphasize that these 2 formats are not compatible with each other. The reason for this is explained in the Blob section and Date Time . Additionally, we add fn set_fields to fluent builders to allow users to set the data they deserialized to fluent builders. Lastly, we emphasize that this RFC does NOT aim to serialize the entire response or request or implement serde traits on data types for server-side code.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Overview","id":"377","title":"Overview"},"378":{"body":"Users have requested serde traits to be implemented on data types implemented in rust SDK. We have created this RFC with the following use cases in mind. [request]: Serialize/Deserialize of models for Lambda events #269 Tests as suggested in the design FAQ. Building tools","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case","id":"378","title":"Use Case"},"379":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate","id":"379","title":"Feature Gate"},"38":{"body":"See StructureGenerator.kt for more details Smithy structure becomes a struct in Rust. Backwards compatibility & usability concerns lead to a few design choices: As specified by NullableIndex, fields are Option when Smithy models them as nullable. All structs are marked #[non_exhaustive] All structs derive Debug & PartialEq. Structs do not derive Eq because a float member may be added in the future. Struct fields are public. Public struct fields allow for split borrows . When working with output objects this significantly improves ergonomics, especially with optional fields. let out = dynamo::ListTablesOutput::new();\nout.some_field.unwrap(); // <- partial move, impossible with an accessor Builders are generated for structs that provide ergonomic and backwards compatible constructors. A builder for a struct is always available via the convenience method SomeStruct::builder() Structures manually implement debug: In order to support the sensitive trait , a Debug implementation for structures is manually generated.","breadcrumbs":"Smithy » Aggregate Shapes » Structure","id":"38","title":"Structure"},"380":{"body":"To enable any of the features from this RFC, user must pass --cfg aws-sdk-unstable to rustc. You can do this by specifying it on env-variable or by config.toml. specifying it on .cargo/config.toml [build]\nrustflags = [\"--cfg\", \"aws-sdk-unstable\"] As an environment variable export RUSTFLAGS=\"--cfg aws-sdk-unstable\"\ncargo build We considered allowing users to enable this feature on a crate-level. e.g. [dependencies]\naws_sdk_dynamodb = { version = \"0.22.0\", features = [\"unstable\", \"serialize\"] } Compared to the cfg approach, it is lot easier for the users to enable this feature. However, we believe that cfg approach ensure users won't enable this feature by surprise, and communicate to users that features behind this feature gate can be taken-away or exprience breaking changes any time in future.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enabling Feature","id":"380","title":"Enabling Feature"},"381":{"body":"Serde traits are implemented behind feature gates. Serialize is implemented behind serde-serialize, while Deserialize is implemented behind serde-deserialize. Users must enable the unstable feature to expose those features. We considered giving each feature a dedicated feature gate such as unstable-serde-serialize. In this case, we will need to change the name of feature gates entirely once it leaves the unstable status which will cause users to make changes to their code base. We conclude that this brings no benefit to the users. Furthermore, we considered naming the fature-gate serialize/deserialize. However, this way it would be confusing for the users when we add support for different serialization/deserialization framework such as deser. Thus, to emphasize that the traits is from serde crate, we decided to name it serde-serialize/serde-deserialize","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate for Serialization and De-serialization","id":"381","title":"Feature Gate for Serialization and De-serialization"},"382":{"body":"We considered keeping both features behind the same feature gate. There is no significant difference in the complexity of implementation. We do not see any benefit in keeping them behind the same feature gate as this will only increase compile time when users do not need one of the features.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Keeping both features behind the same feature gate","id":"382","title":"Keeping both features behind the same feature gate"},"383":{"body":"We considered implementing different feature gates for output, input, and their corresponding data types. For example, output and input types can have output-serde-* and input-serde-*. We are unable to do this as relevant metadata is not available during the code-gen.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Different feature gates for different data types","id":"383","title":"Different feature gates for different data types"},"384":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Implementation","id":"384","title":"Implementation"},"385":{"body":"aws_smithy_types is a crate that implements smithy's data types. These data types must implement serde traits as well since SDK uses the data types.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Smithy Types","id":"385","title":"Smithy Types"},"386":{"body":"Serialize and Deserialize is not implemented with derive macro. In human-readable format, Blob is serialized as a base64 encoded string and any data to be deserialized as this data type must be encoded in base 64. Encoding must be carried out by base64::encode function available from aws_smithy_types crate. Non-human readable format serializes Blob with fn serialize_bytes. Reason behind the implementation of human-readable format aws_smithy_types crate comes with functions for encoding/decoding base 64, which makes the implementation simpler. Additionally, AWS CLI and AWS SDK for other languages require data to be encoded in base 64 when it requires Blob type as input. We also considered serializing them with serialize_bytes, without encoding them with serialize_bytes. In this case, the implementation will depend on the implementation of the library author. There are many different crates, so we decided to survey how some of the most popular crates implement this feature. library version implementation all-time downloads on crate.io as of writing (Dec 2022) serde_json 1.0 Array of number 109,491,713 toml 0.5.9 Array of number 63,601,994 serde_yaml 0.9.14 Unsupported 23,767,300 First of all, bytes could have hundreds of elements; reading an array of hundreds of numbers will never be a pleasing experience, and it is especially troubling when you are writing data for test cases. Additionally, it has come to our attention that some crates just doesn't support it, which would hinder users' ability to be productive and tie users' hand. For the reasons described above, we believe that it is crucial to encode them to string and base64 is favourable over other encoding schemes such as base 16, 32, or Ascii85. Reason behind the implementation of a non-human readable format We considered using the same logic for non-human readable format as well. However, readable-ness is not necessary for non-human readable format. Additionally, non-human readable format tends to emphasize resource efficiency over human-readable format; Base64 encoded string would take up more space, which is not what the users would want. Thus, we believe that implementing a tailored serialization logic would be beneficial to the users.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Blob","id":"386","title":"Blob"},"387":{"body":"Serialize and Deserialize is not implemented with derive macro. For human-readable format, DateTime is serialized in RFC-3339 format; It expects the value to be in RFC-3339 format when it is Deserialized. Non-human readable implements DateTime as a tuple of u32 and i64; the latter corresponds to seconds field and the first is the seubsecond_nanos. Reason behind the implementation of a human-readable format For serialization, DateTime format already implements a function to encode itself into RFC-3339 format. For deserialization, it is possible to accept other formats, we can add this later if we find it reasonable. Reason behind the implementation of a non-human readable format Serializing them as tuples of two integers results in a smaller data size and requires less computing power than any string-based format. Tuple will be smaller in size as it does not require tagging like in maps.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » DateTime","id":"387","title":"DateTime"},"388":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without tagging thanks to the difference in each variant's datatypes.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Document","id":"388","title":"Document"},"389":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without a tag as each variant's content is different.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Number","id":"389","title":"Number"},"39":{"body":"Smithy Input : @documentation(\"

    Contains I/O usage metrics...\")\nstructure IOUsage { @documentation(\"... elided\") ReadIOs: ReadIOs, @documentation(\"... elided\") WriteIOs: WriteIOs\n} long ReadIOs long WriteIOs Rust Output : ///

    Contains I/O usage metrics for a command that was invoked.

    \n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct IoUsage { ///

    The number of read I/O requests that the command made.

    pub read_i_os: i64, ///

    The number of write I/O requests that the command made.

    pub write_i_os: i64,\n}\nimpl std::fmt::Debug for IoUsage { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"IoUsage\"); formatter.field(\"read_i_os\", &self.read_i_os); formatter.field(\"write_i_os\", &self.write_i_os); formatter.finish() }\n}\n/// See [`IoUsage`](crate::model::IoUsage)\npub mod io_usage { /// A builder for [`IoUsage`](crate::model::IoUsage) #[non_exhaustive] #[derive(Debug, Clone, Default)] pub struct Builder { read_i_os: std::option::Option, write_i_os: std::option::Option, } impl Builder { ///

    The number of read I/O requests that the command made.

    pub fn read_i_os(mut self, inp: i64) -> Self { self.read_i_os = Some(inp); self } ///

    The number of read I/O requests that the command made.

    pub fn set_read_i_os(mut self, inp: Option) -> Self { self.read_i_os = inp; self } ///

    The number of write I/O requests that the command made.

    pub fn write_i_os(mut self, inp: i64) -> Self { self.write_i_os = Some(inp); self } ///

    The number of write I/O requests that the command made.

    pub fn set_write_i_os(mut self, inp: Option) -> Self { self.write_i_os = inp; self } /// Consumes the builder and constructs a [`IoUsage`](crate::model::IoUsage) pub fn build(self) -> crate::model::IoUsage { crate::model::IoUsage { read_i_os: self.read_i_os.unwrap_or_default(), write_i_os: self.write_i_os.unwrap_or_default(), } } }\n}\nimpl IoUsage { /// Creates a new builder-style object to manufacture [`IoUsage`](crate::model::IoUsage) pub fn builder() -> crate::model::io_usage::Builder { crate::model::io_usage::Builder::default() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Example Structure Output","id":"39","title":"Example Structure Output"},"390":{"body":"Builder types and non Builder types implement Serialize and Deserialize with derive macro. Example: #[cfg_attr( all(aws-sdk-unstable, feature = \"serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct UploadPartCopyOutput { ...\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Builder Types and Non-Builder Types","id":"390","title":"Builder Types and Non-Builder Types"},"391":{"body":"serde allows programmers to use one of four different tagging ( internal, external, adjacent, and untagged ) when serializing an enum.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enum Representation","id":"391","title":"Enum Representation"},"392":{"body":"You cannot deserialize serialized data in some cases. For example, aws_sdk_dynamodb::model::AttributeValue has Null(bool) and Bool(bool), which you cannot distinguish serialized values without a tag.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » untagged","id":"392","title":"untagged"},"393":{"body":"This results in compile time error. Using a #[serde(tag = \"...\")] attribute on an enum containing a tuple variant is an error at compile time .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » internal","id":"393","title":"internal"},"394":{"body":"We are left with external and adjacent tagging. External tagging is the default way. This RFC can be achieved either way. The resulting size of the serialized data is smaller when tagged externally, as adjacent tagging will require a tag even when a variant has no content. For the reasons mentioned above, we implement an enum that is externally tagged.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » external and adjacent","id":"394","title":"external and adjacent"},"395":{"body":"We are going to skip serialization and deserialization of fields that have the datatype that corresponds to @streaming blob from smithy. Any fields with these data types are tagged with #[serde(skip)]. By skipping, corresponding field's value will be assigned the value generated by Default trait. As of writing, aws_smithy_http::byte_stream::ByteStream is the only data type that is affected by this decision. Here is an example of data types affected by this decision: aws_sdk_s3::input::put_object_input::PutObjectInput We considered serializing them as bytes, however, it could take some time for a stream to reach the end, and the resulting serialized data may be too big for itself to fit into the ram. Here is an example snippet. #[allow(missing_docs)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::fmt::Debug)]\npub struct PutObjectInput { pub acl: std::option::Option, pub body: aws_smithy_http::byte_stream::ByteStream, // ... other fields\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data Types to Skip Serialization/Deserialization","id":"395","title":"Data Types to Skip Serialization/Deserialization"},"396":{"body":"For data types that include @streaming union in any of their fields, we do NOT implement serde traits. As of writing, following Rust data types corresponds to @streaming union. aws_smithy_http::event_stream::Receiver aws_smithy_http::event_stream::EventStreamSender Here is an example of data type affected by this decision; aws_sdk_transcribestreaming::client::fluent_builders::StartMedicalStreamTranscription We considered skipping relevant fields on serialization and creating a custom de-serialization function which creates event stream that will always result in error when a user tries to send/receive data. However, we believe that our decision is justified for following reason. All for operations that feature event streams since the stream is ephemeral (tied to the HTTP connection), and is effectively unusable after serialization and deserialization Most event stream operations don't have fields that go along with them, making the stream the sole component in them, which makes ser/de not so useful SDK that uses event stream, such as aws-sdk-transcribestreaming only has just over 5000 all-time downloads with recent downloads of just under 1000 as of writing (2023/01/21); It makes it difficult to justify since the implementation impacts smaller number of people.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data types to exclude from ser/de code generation","id":"396","title":"Data types to exclude from ser/de code generation"},"397":{"body":"Output data, such as aws_sdk_dynamodb::output::UpdateTableOutput has builder types. These builder types are available to users, however, no API requires users to build data types by themselves. We considered removing traits from these data types. Removing serde traits on these types will help reduce compile time, however, builder type can be useful, for example, for testing. We have prepared examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Serde traits implemented on Builder of Output Types","id":"397","title":"Serde traits implemented on Builder of Output Types"},"398":{"body":"Currently, to set the value to fluent builders, users must call setter methods for each field. SDK does not have a method that allows users to use deserialized Input. Thus, we add a new method fn set_fields to Client types. This method accepts inputs and replaces all parameters that Client has with the new one. pub fn set_fields(mut self, input_type: path::to::input_type) -> path::to::input_type { self.inner = input_type; self\n} Users can use fn set_fields to replace the parameters in fluent builders. You can find examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » fn set_fields to allow users to use externally created Input","id":"398","title":"fn set_fields to allow users to use externally created Input"},"399":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Other Concerns","id":"399","title":"Other Concerns"},"4":{"body":"The Rust SDK is code generated from Smithy models, using Smithy codegeneration utilities. The Code generation is written in Kotlin. More details can be found in the Smithy section.","breadcrumbs":"Design Overview » Code Generation","id":"4","title":"Code Generation"},"40":{"body":"Smithy Union is modeled as enum in Rust. Generated enums must be marked #[non_exhaustive]. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue . Union members (enum variants) are not nullable, because Smithy union members cannot contain null values. When union members contain references to other shapes, we generate a wrapping variant (see below). Union members do not require #[non_exhaustive], because changing the shape targeted by a union member is not backwards compatible. is_variant and as_variant helper functions are generated to improve ergonomics.","breadcrumbs":"Smithy » Aggregate Shapes » Union","id":"40","title":"Union"},"400":{"body":"SDK will introduce new fields and we may see new data types in the future. We believe that this will not be a problem.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Model evolution","id":"400","title":"Model evolution"},"401":{"body":"Most fields are Option type. When the user de-serializes data written for a format before the new fields were introduced, new fields will be assigned with None type. If a field isn't Option, serde uses Default trait unless a custom de-serialization/serialization is specified to generate data to fill the field. If the new field is not an Option type and has no Default implementation, we must implement a custom de-serialization logic. In the case of serialization, the introduction of new fields will not be an issue unless the data format requires a schema. (e.g. parquet, avro) However, this is outside the scope of this RFC.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Fields","id":"401","title":"Introduction of New Fields"},"402":{"body":"If a new field introduces a new data type, it will not require any additional work if the data type can derive serde traits. If the data cannot derive serde traits on its own, then we have two options. To clarify, this is the same approach we took on Data Type to skip section. skip We will simply skip serializing/de-serializing. However, we may need to implement custom serialization/de-serialization logic if a value is not wrapped with Option. custom serialization/de-serialization logic We can implement tailored serialization/de-serialization logic. Either way, we will mention this on the generated docs to avoid surprising users. e.g. #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV1 { string_field: Option\n} #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV2 { string_field: Option, // this will always be treated as None value by serde #[serde(skip)] skip_not_serializable: Option, // We can implement a custom serialization logic #[serde(serialize_with = \"custom_serilization_logic\", deserialize_with = \"custom_deserilization_logic\")] not_derive_able: SomeComplexDataType, // Serialization will be skipped, and de-serialization will be handled with the function provided on default tag #[serde(skip, default = \"default_value\")] skip_with_custom: DataTypeWithoutDefaultTrait,\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Data Type","id":"402","title":"Introduction of New Data Type"},"403":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Discussions","id":"403","title":"Discussions"},"404":{"body":"If serialized data contains sensitive information, it will not be masked. We mention that fields can compromise such information on every struct field to ensure that users know this.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Sensitive Information","id":"404","title":"Sensitive Information"},"405":{"body":"We ran the following benchmark on C6a.2xlarge instance with 50gb of GP2 SSD. The commit hash of the code is a8e2e19129aead4fbc8cf0e3d34df0188a62de9f. It clearly shows an increase in compile time. Users are advised to consider the use of software such as sccache or mold to reduce the compile time. aws-sdk-dynamodb when compiled with debug profile command real time user time sys time cargo build 0m35.728s 2m24.243s 0m11.868s cargo build --features unstable-serde-serialize 0m38.079s 2m26.082s 0m11.631s cargo build --features unstable-serde-deserialize 0m45.689s 2m34.000s 0m11.978s cargo build --all-features 0m48.959s 2m45.688s 0m13.359s when compiled with release profile command real time user time sys time cargo build --release 0m52.040s 5m0.841s 0m11.313s cargo build --release --features unstable-serde-serialize 0m53.153s 5m4.069s 0m11.577s cargo build --release --features unstable-serde-deserialize 1m0.107s 5m10.231s 0m11.699s cargo build --release --all-features 1m3.198s 5m26.076s 0m12.311s aws-sdk-ec2 when compiled with debug profile command real time user time sys time cargo build 1m20.041s 2m14.592s 0m6.611s cargo build --features unstable-serde-serialize 2m0.555s 4m24.881s 0m16.131s cargo build --features unstable-serde-deserialize 3m10.857s 5m34.246s 0m18.844s cargo build --all-features 3m31.473s 6m1.052s 0m19.681s when compiled with release profile command real time user time sys time cargo build --release 2m29.480s 9m19.530s 0m15.957s cargo build --release --features unstable-serde-serialize 2m45.002s 9m43.098s 0m16.886s cargo build --release --features unstable-serde-deserialize 3m47.531s 10m52.017s 0m18.404s cargo build --release --all-features 3m45.208s 8m46.168s 0m10.211s","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Compile Time","id":"405","title":"Compile Time"},"406":{"body":"SDK team previously expressed concern that serialized data may be misleading. We believe that features implemented as part of this RFC do not produce a misleading result as we focus on builder types and it's corresponding data types which are mapped to serde's data type model with the derive macro.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Misleading Results","id":"406","title":"Misleading Results"},"407":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Appendix","id":"407","title":"Appendix"},"408":{"body":"use aws_sdk_dynamodb::{Client, Error}; async fn example(read_builder: bool) -> Result<(), Error> { // getting the client let shared_config = aws_config::load_from_env().await; let client = Client::new(&shared_config); // de-serializing input's builder types and input types from json let deserialized_input = if read_builder { let mut parameter: aws_sdk_dynamodb::input::list_tables_input::Builder = serde_json::from_str(include_str!(\"./builder.json\")); parameter.set_exclusive_start_table_name(\"some_name\").build() } else { let input: aws_sdk_dynamodb::input::ListTablesInput = serde_json::from_str(include_str!(\"./input.json\")); input }; // sending request using the deserialized input let res = client.list_tables().set_fields(deserialized_input).send().await?; println!(\"DynamoDB tables: {:?}\", res.table_names); let out: aws_sdk_dynamodb::output::ListTablesOutput = { // say you want some of the field to have certain values let mut out_builder: aws_sdk_dynamodb::output::list_tables_output::Builder = serde_json::from_str(r#\" { table_names: [ \"table1\", \"table2\" ] } \"#); // but you don't really care about some other values out_builder.set_last_evaluated_table_name(res.last_evaluated_table_name()).build() }; assert_eq!(res, out); // serializing json output let json_output = serde_json::to_string(res).unwrap(); // you can save the serialized input println!(json_output); Ok(())\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case Examples","id":"408","title":"Use Case Examples"},"409":{"body":"Implement human-redable serialization for DateTime and Blob in aws_smithy_types Implement non-human-redable serialization for DateTime and Blob in aws_smithy_types Implement Serialize and Deserialize for relevant data types in aws_smithy_types Modify Kotlin's codegen so that generated Builder and non-Builder types implement Serialize and Deserialize Add feature gate for Serialize and Deserialize Prepare examples Prepare reproducible compile time benchmark","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Changes checklist","id":"409","title":"Changes checklist"},"41":{"body":"The union generated for a simplified dynamodb::AttributeValue Smithy : namespace test union AttributeValue { @documentation(\"A string value\") string: String, bool: Boolean, bools: BoolList, map: ValueMap\n} map ValueMap { key: String, value: AttributeValue\n} list BoolList { member: Boolean\n} Rust : #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { /// a string value String(std::string::String), Bool(bool), Bools(std::vec::Vec), Map(std::collections::HashMap),\n} impl AttributeValue { pub fn as_bool(&self) -> Result<&bool, &crate::model::AttributeValue> { if let AttributeValue::Bool(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bool(&self) -> bool { self.as_bool().is_some() } pub fn as_bools(&self) -> Result<&std::vec::Vec, &crate::model::AttributeValue> { if let AttributeValue::Bools(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bools(&self) -> bool { self.as_bools().is_some() } pub fn as_map(&self) -> Result<&std::collections::HashMap, &crate::model::AttributeValue> { if let AttributeValue::Map(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_map(&self) -> bool { self.as_map().is_some() } pub fn as_string(&self) -> Result<&std::string::String, &crate::model::AttributeValue> { if let AttributeValue::String(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_string(&self) -> bool { self.as_string().is_some() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Generated Union Example","id":"41","title":"Generated Union Example"},"410":{"body":"Status: Implemented in smithy-rs#2246 Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a fallback mechanism for credentials providers on external timeout (see the Terminology section), allowing them to continue serving (possibly expired) credentials for the sake of overall reliability of the intended service; The IMDS credentials provider is an example that must fulfill such a requirement to support static stability.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » RFC: Providing fallback credentials on external timeout","id":"410","title":"RFC: Providing fallback credentials on external timeout"},"411":{"body":"External timeout: The name of the timeout that occurs when a duration elapses before an async call to provide_credentials returns. In this case, provide_credentials returns no credentials. Internal timeout: The name of the timeout that occurs when a duration elapses before an async call to some function, inside the implementation of provide_credentials, returns. Examples include connection timeouts, TLS negotiation timeouts, and HTTP request timeouts. Implementations of provide_credentials may handle these failures at their own discretion e.g. by returning (possibly expired) credentials or a CredentialsError. Static stability: Continued availability of a service in the face of impaired dependencies.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Terminology","id":"411","title":"Terminology"},"412":{"body":"This RFC is concerned only with external timeouts, as the cost of poor API design is much higher in this case than for internal timeouts. The former will affect a public trait implemented by all credentials providers whereas the latter can be handled locally by individual credentials providers without affecting one another.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Assumption","id":"412","title":"Assumption"},"413":{"body":"We have mentioned static stability. Supporting it calls for the following functional requirement, among others: REQ 1: Once a credentials provider has served credentials, it should continue serving them in the event of a timeout (whether internal or external) while obtaining refreshed credentials. Today, we have the following trait method to obtain credentials: fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>\nwhere Self: 'a, This method returns a future, which can be raced against a timeout future as demonstrated by the following code snippet from LazyCredentialsCache: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| async move { let credentials = future.await.map_err(|_err| { CredentialsError::provider_timed_out(load_timeout) })??; // --snip-- }).await;\n// --snip-- This creates an external timeout for provide_credentials. If timeout_future wins the race, a future for provide_credentials gets dropped, timeout_future returns an error, and the error is mapped to CredentialsError::ProviderTimedOut and returned. This makes it impossible for the variable provider above to serve credentials as stated in REQ 1. A more complex use case involves CredentialsProviderChain. It is a manifestation of the chain of responsibility pattern and keeps calling the provide_credentials method on each credentials provider down the chain until credentials are returned by one of them. In addition to REQ 1, we have the following functional requirement with respect to CredentialsProviderChain: REQ 2: Once a credentials provider in the chain has returned credentials, it should continue serving them even in the event of a timeout (whether internal or external) without falling back to another credentials provider. Referring back to the code snippet above, we analyze two relevant cases (and suppose provider 2 below must meet REQ 1 and REQ 2 in each case): Case 1: Provider 2 successfully loaded credentials but later failed to do so because an external timeout kicked in. The figure above illustrates an example. This CredentialsProviderChain consists of three credentials providers. When CredentialsProviderChain::provide_credentials is called, provider 1's provide_credentials is called but does not find credentials so passes the torch to provider 2, which in turn successfully loads credentials and returns them. The next time the method is called, provider 1 does not find credentials but neither does provider 2 this time, because an external timeout by timeout_future given to the whole chain kicked in and the future is dropped while provider 2's provide_credentials was running. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns a CredentialsError::ProviderTimedOut instead. Case 2: Provider 2 successfully loaded credentials but later was not reached because its preceding provider was still running when an external timeout kicked in. The figure above illustrates an example with the same setting as the previous figure. Again, when CredentialsProviderChain::provide_credentials is called the first time, provider 1 does not find credentials but provider 2 does. The next time the method is called, provider 1 is still executing provide_credentials and then an external timeout by timeout_future kicked in. Consequently, the execution of CredentialsProviderChain::provide_credentials has been terminated. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns CredentialsError::ProviderTimedOut instead.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Problem","id":"413","title":"Problem"},"414":{"body":"To address the problem in the previous section, we propose to add a new method to the ProvideCredentials trait called fallback_on_interrupt. This method allows credentials providers to have a fallback mechanism on an external timeout and to serve credentials to users if needed. There are two options as to how it is implemented, either as a synchronous primitive or as an asynchronous primitive. Option A: Synchronous primitive pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt(&self) -> Option { None }\n} :+1: Users can be guided to use only synchronous primitives when implementing fallback_on_interrupt. :-1: It cannot support cases where fallback credentials are asynchronously retrieved. :-1: It may turn into a blocking operation if it takes longer than it should. Option B: Asynchronous primitive mod future { // --snip-- // This cannot use `OnlyReady` in place of `BoxFuture` because // when a chain of credentials providers implements its own // `fallback_on_interrupt`, it needs to await fallback credentials // in its inner providers. Thus, `BoxFuture` is required. pub struct FallbackOnInterrupt<'a>(NowOrLater, BoxFuture<'a, Option>>); // impls for FallbackOnInterrupt similar to those for the ProvideCredentials future newtype\n} pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt<'a>(&'a self) -> future::FallbackOnInterrupt<'a> { future::FallbackOnInterrupt::ready(None) }\n} :+1: It is async from the beginning, so less likely to introduce a breaking change. :-1: We may have to consider yet another timeout for fallback_on_interrupt itself. Option A cannot be reversible in the future if we are to support the use case for asynchronously retrieving the fallback credentials, whereas option B allows us to continue supporting both ready and pending futures when retrieving the fallback credentials. However, fallback_on_interrupt is supposed to return credentials that have been set aside in case provide_credentials is timed out. To express that intent, we choose option A and document that users should NOT go fetch new credentials in fallback_on_interrupt. The user experience for the code snippet in question will look like this once this proposal is implemented: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| { async move { let credentials = match future.await { Ok(creds) => creds?, Err(_err) => match provider.fallback_on_interrupt() { // can provide fallback credentials Some(creds) => creds, None => return Err(CredentialsError::provider_timed_out(load_timeout)), } }; // --snip-- } }).await;\n// --snip--","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Proposal","id":"414","title":"Proposal"},"415":{"body":"Almost all credentials providers do not have to implement their own fallback_on_interrupt except for CredentialsProviderChain (ImdsCredentialsProvider also needs to implement fallback_on_interrupt when we are adding static stability support to it but that is outside the scope of this RFC). Considering the two cases we analyzed above, implementing CredentialsProviderChain::fallback_on_interrupt is not so straightforward. Keeping track of whose turn in the chain it is to call provide_credentials when an external timeout has occurred is a challenging task. Even if we figured it out, that would still not satisfy Case 2 above, because it was provider 1 that was actively running when the external timeout kicked in, but the chain should return credentials from provider 2, not from provider 1. With that in mind, consider instead the following approach: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn fallback_on_interrupt(&self) -> Option { { for (_, provider) in &self.providers { match provider.fallback_on_interrupt() { creds @ Some(_) => return creds, None => {} } } None }\n} CredentialsProviderChain::fallback_on_interrupt will invoke each provider's fallback_on_interrupt method until credentials are returned by one of them. It ensures that the updated code snippet for LazyCredentialsCache can return credentials from provider 2 in both Case 1 and Case 2. Even if timeout_future wins the race, the execution subsequently calls provider.fallback_on_interrupt() to obtain fallback credentials from provider 2, assuming provider 2's fallback_on_interrupt is implemented to return fallback credentials accordingly. The downside of this simple approach is that the behavior is not clear if more than one credentials provider in the chain can return credentials from their fallback_on_interrupt. Note, however, that it is the exception rather than the norm for a provider's fallback_on_interrupt to return fallback credentials, at least at the time of writing (01/13/2023). The fact that it returns fallback credentials means that the provider successfully loaded credentials at least once, and it usually continues serving credentials on subsequent calls to provide_credentials. Should we have more than one provider in the chain that can potentially return fallback credentials from fallback_on_interrupt, we could configure the behavior of CredentialsProviderChain managing in what order and how each fallback_on_interrupt should be executed. See the Possible enhancement section for more details. The use case described there is an extreme edge case, but it's worth exploring what options are available to us with the proposed design.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » How to actually implement this RFC","id":"415","title":"How to actually implement this RFC"},"416":{"body":"In this section, we will describe an alternative approach that we ended up dismissing as unworkable. Instead of fallback_on_interrupt, we considered the following method to be added to the ProvideCredentials trait: pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- /// Returns a future that provides credentials within the given `timeout`. /// /// The default implementation races `provide_credentials` against /// a timeout future created from `timeout`. fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { let timeout_future = sleeper.sleep(timeout); let future = Timeout::new(self.provide_credentials(), timeout_future); future::ProvideCredentials::new(async move { let credentials = future .await .map_err(|_err| CredentialsError::provider_timed_out(timeout))?; credentials }) } provide_credentials_with_timeout encapsulated the timeout race and allowed users to specify how long the external timeout for provide_credentials would be. The code snippet from LazyCredentialsCache then looked like let sleeper = Arc::clone(&self.sleeper);\nlet load_timeout = self.load_timeout; // by default self.load_timeout is 5 seconds.\n// --snip--\nlet result = cache .get_or_load(|| { async move { let credentials = provider .provide_credentials_with_timeout(sleeper, load_timeout) .await?; // --snip-- } }).await;\n// --snip-- However, implementing CredentialsProviderChain::provide_credentials_with_timeout quickly ran into the following problem: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.credentials_with_timeout(sleeper, timeout)) }\n} impl CredentialsProviderChain { // --snip-- async fn credentials_with_timeout( &self, sleeper: Arc, timeout: Duration, ) -> provider::Result { for (_, provider) in &self.providers { match provider .provide_credentials_with_timeout(Arc::clone(&sleeper), /* how do we calculate timeout for each provider ? */) .await { Ok(credentials) => { return Ok(credentials); } Err(CredentialsError::ProviderTimedOut(_)) => { // --snip-- } Err(err) => { // --snip-- } } } Err(CredentialsError::provider_timed_out(timeout)) } There are mainly two problems with this approach. The first problem is that as shown above, there is no sensible way to calculate a timeout for each provider in the chain. The second problem is that exposing a parameter like timeout at a public trait's level is giving too much control to users; delegating overall timeout to the individual provider means each provider has to get it right.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Alternative","id":"416","title":"Alternative"},"417":{"body":"Add fallback_on_interrupt method to the ProvideCredentials trait with the default implementation Implement CredentialsProviderChain::fallback_on_interrupt Implement DefaultCredentialsChain::fallback_on_interrupt Add unit tests for Case 1 and Case 2","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Changes checklist","id":"417","title":"Changes checklist"},"418":{"body":"We will describe how to customize the behavior for CredentialsProviderChain::fallback_on_interrupt. We are only demonstrating how much the proposed design can be extended and currently do not have concrete use cases to implement using what we present in this section. As described in the Proposal section, CredentialsProviderChain::fallback_on_interrupt traverses the chain from the head to the tail and returns the first fallback credentials found. This precedence policy works most of the time, but when we have more than one provider in the chain that can potentially return fallback credentials, it could break in the following edge case (we are still basing our discussion on the code snippet from LazyCredentialsCache but forget REQ 1 and REQ 2 for the sake of simplicity). During the first call to CredentialsProviderChain::provide_credentials, provider 1 fails to load credentials, maybe due to an internal timeout, and then provider 2 succeeds in loading its credentials (call them credentials 2) and internally stores them for Provider2::fallback_on_interrupt to return them subsequently. During the second call, provider 1 succeeds in loading credentials (call them credentials 1) and internally stores them for Provider1::fallback_on_interrupt to return them subsequently. Suppose, however, that credentials 1's expiry is earlier than credentials 2's expiry. Finally, during the third call, CredentialsProviderChain::provide_credentials did not complete due to an external timeout. CredentialsProviderChain::fallback_on_interrupt then returns credentials 1, when it should return credentials 2 whose expiry is later, because of the precedence policy. This a case where CredentialsProviderChain::fallback_on_interrupt requires the recency policy for fallback credentials found in provider 1 and provider 2, not the precedence policy. The following figure shows how we can set up such a chain: The outermost chain is a CredentialsProviderChain and follows the precedence policy for fallback_on_interrupt. It contains a sub-chain that, in turn, contains provider 1 and provider 2. This sub-chain implements its own fallback_on_interrupt to realize the recency policy for fallback credentials found in provider 1 and provider 2. Conceptually, we have pub struct FallbackRecencyChain { provider_chain: CredentialsProviderChain,\n} impl ProvideCredentials for FallbackRecencyChain { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { // Can follow the precedence policy for loading credentials // if it chooses to do so. } fn fallback_on_interrupt(&self) -> Option { // Iterate over `self.provider_chain` and return // fallback credentials whose expiry is the most recent. }\n} We can then compose the entire chain like so: let provider_1 = /* ... */\nlet provider_2 = /* ... */\nlet provider_3 = /* ... */ let sub_chain = CredentialsProviderChain::first_try(\"Provider1\", provider_1) .or_else(\"Provider2\", provider_2); let recency_chain = /* Create a FallbackRecencyChain with sub_chain */ let final_chain = CredentialsProviderChain::first_try(\"fallback_recency\", recency_chain) .or_else(\"Provider3\", provider_3); The fallback_on_interrupt method on final_chain still traverses from the head to the tail, but once it hits recency_chain, fallback_on_interrupt on recency_chain respects the expiry of fallback credentials found in its inner providers. What we have presented in this section can be generalized thanks to chain composability. We could have different sub-chains, each implementing its own policy for fallback_on_interrupt.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Possible enhancement","id":"418","title":"Possible enhancement"},"419":{"body":"Status: Accepted Applies to: server During and after the design and the core implementation of constraint traits in the server SDK, some problems relating to constraint violations were identified. This RFC sets out to explain and address three of them: impossible constraint violations , collecting constraint violations , and \"tightness\" of constraint violations . The RFC explains each of them in turn, solving them in an iterative and pedagogical manner, i.e. the solution of a problem depends on the previous ones having been solved with their proposed solutions. The three problems are meant to be addressed atomically in one changeset (see the Checklist ) section. Note: code snippets from generated SDKs in this document are abridged so as to be didactic and relevant to the point being made. They are accurate with regards to commit 2226fe .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » RFC: Better Constraint Violations","id":"419","title":"RFC: Better Constraint Violations"},"42":{"body":"","breadcrumbs":"Smithy » Endpoint Resolution » Endpoint Resolution","id":"42","title":"Endpoint Resolution"},"420":{"body":"The design and the description of the PR where the core implementation of constraint traits was made are recommended prior reading to understand this RFC. Shape closure : the set of shapes a shape can \"reach\", including itself. Transitively constrained shape : a shape whose closure includes: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape ; or an intEnum shape . A directly constrained shape is any of these: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape , an intEnum shape ; or a structure shape with at least one required member shape. Constrained type : the Rust type a constrained shape gets rendered as. For shapes that are not structure, union, enum or intEnum shapes, these are wrapper newtype s. In the absence of a qualifier, \"constrained shape\" should be interpreted as \"transitively constrained shape\".","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Terminology","id":"420","title":"Terminology"},"421":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Impossible constraint violations","id":"421","title":"Impossible constraint violations"},"422":{"body":"A constrained type has a fallible constructor by virtue of it implementing the TryFrom trait. The error type this constructor may yield is known as a constraint violation : impl TryFrom for ConstrainedType { type Error = ConstraintViolation; fn try_from(value: UnconstrainedType) -> Result { ... }\n} The ConstraintViolation type is a Rust enum with one variant per way \"constraining\" the input value may fail. So, for example, the following Smithy model: structure A { @required member: String,\n} Yields: /// See [`A`](crate::model::A).\npub mod a { #[derive(std::cmp::PartialEq, std::fmt::Debug)] /// Holds one variant for each of the ways the builder can fail. pub enum ConstraintViolation { /// `member` was not provided but it is required when building `A`. MissingMember, }\n} Constraint violations are always Rust enums, even if they only have one variant. Constraint violations can occur in application code: use my_server_sdk::model let res = model::a::Builder::default().build(); // We forgot to set `member`. match res { Ok(a) => { ... }, Err(e) => { assert_eq!(model::a::ConstraintViolation::MissingMember, e); }\n}","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"422","title":"Background"},"423":{"body":"Currently, the constraint violation types we generate are used by both : the server framework upon request deserialization; and by users in application code. However, the kinds of constraint violations that can occur in application code can sometimes be a strict subset of those that can occur during request deserialization. Consider the following model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString This produces: pub struct LengthMap( pub(crate) std::collections::HashMap,\n); impl std::convert::TryFrom< std::collections::HashMap, > for LengthMap\n{ type Error = crate::model::length_map::ConstraintViolation; /// Constructs a `LengthMap` from an /// [`std::collections::HashMap`], failing when the provided value does not /// satisfy the modeled constraints. fn try_from( value: std::collections::HashMap, ) -> Result { let length = value.len(); if (1..=69).contains(&length) { Ok(Self(value)) } else { Err(crate::model::length_map::ConstraintViolation::Length(length)) } }\n} pub mod length_map { pub enum ConstraintViolation { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), } ...\n} Observe how the ConstraintViolation::Value variant is never constructed. Indeed, this variant is impossible to be constructed in application code : a user has to provide a map whose values are already constrained LengthStrings to the try_from constructor, which only enforces the map's @length trait. The reason why these seemingly \"impossible violations\" are being generated is because they can arise during request deserialization. Indeed, the server framework deserializes requests into fully unconstrained types . These are types holding unconstrained types all the way through their closures. For instance, in the case of structure shapes, builder types (the unconstrained type corresponding to the structure shape) hold builders all the way down. In the case of the above model, below is the alternate pub(crate) constructor the server framework uses upon deserialization. Observe how LengthMapOfLengthStringsUnconstrained is fully unconstrained and how the try_from constructor can yield ConstraintViolation::Value. pub(crate) mod length_map_of_length_strings_unconstrained { #[derive(Debug, Clone)] pub(crate) struct LengthMapOfLengthStringsUnconstrained( pub(crate) std::collections::HashMap, ); impl std::convert::TryFrom for crate::model::LengthMapOfLengthStrings { type Error = crate::model::length_map_of_length_strings::ConstraintViolation; fn try_from(value: LengthMapOfLengthStringsUnconstrained) -> Result { let res: Result< std::collections::HashMap, Self::Error, > = value .0 .into_iter() .map(|(k, v)| { let v: crate::model::LengthString = k.try_into().map_err(Self::Error::Key)?; Ok((k, v)) }) .collect(); let hm = res?; Self::try_from(hm) } }\n} In conclusion, the user is currently exposed to an internal detail of how the framework operates that has no bearing on their application code. They shouldn't be exposed to impossible constraint violation variants in their Rust docs, nor have to match on these variants when handling errors. Note: this comment alludes to the problem described above.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"423","title":"Problem"},"424":{"body":"The problem can be mitigated by adding #[doc(hidden)] to the internal variants and #[non_exhaustive] to the enum. We're already doing this in some constraint violation types. However, a \"less leaky\" solution is achieved by splitting the constraint violation type into two types, which this RFC proposes: one for use by the framework, with pub(crate) visibility, named ConstraintViolationException; and one for use by user application code, with pub visibility, named ConstraintViolation. pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), }\n} Note that, to some extent, the spirit of this approach is already currently present in the case of builder types when publicConstrainedTypes is set to false: ServerBuilderGenerator.kt renders the usual builder type that enforces constraint traits, setting its visibility to pub (crate), for exclusive use by the framework. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the builder type the user is exposed to: this builder does not take in constrained types and does not enforce all modeled constraints.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"424","title":"Solution proposal"},"425":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Collecting constraint violations","id":"425","title":"Collecting constraint violations"},"426":{"body":"Constrained operations are currently required to have smithy.framework#ValidationException as a member in their errors property . This is the shape that is rendered in responses when a request contains data that violates the modeled constraints. The shape is defined in the smithy-validation-model Maven package, as follows : $version: \"2.0\" namespace smithy.framework /// A standard error for input validation failures.\n/// This should be thrown by services when a member of the input structure\n/// falls outside of the modeled or documented constraints.\n@error(\"client\")\nstructure ValidationException { /// A summary of the validation failure. @required message: String, /// A list of specific failures encountered while validating the input. /// A member can appear in this list more than once if it failed to satisfy multiple constraints. fieldList: ValidationExceptionFieldList\n} /// Describes one specific validation failure for an input member.\nstructure ValidationExceptionField { /// A JSONPointer expression to the structure member whose value failed to satisfy the modeled constraints. @required path: String, /// A detailed description of the validation failure. @required message: String\n} list ValidationExceptionFieldList { member: ValidationExceptionField\n} It was mentioned in the constraint traits RFC , and implicit in the definition of Smithy's smithy.framework.ValidationException shape, that server frameworks should respond with a complete collection of errors encountered during constraint trait enforcement to the client.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"426","title":"Background"},"427":{"body":"As of writing, the TryFrom constructor of constrained types whose shapes have more than one constraint trait attached can only yield a single error. For example, the following shape: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString Yields: pub struct LengthPatternString(pub(crate) std::string::String); impl LengthPatternString { fn check_length( string: &str, ) -> Result<(), crate::model::length_pattern_string::ConstraintViolation> { let length = string.chars().count(); if (5..=10).contains(&length) { Ok(()) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Length(length)) } } fn check_pattern( string: String, ) -> Result { let regex = Self::compile_regex(); if regex.is_match(&string) { Ok(string) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Pattern(string)) } } pub fn compile_regex() -> &'static regex::Regex { static REGEX: once_cell::sync::Lazy = once_cell::sync::Lazy::new(|| { regex::Regex::new(r#\"[a-f0-5]*\"#).expect(r#\"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/awslabs/smithy-rs/issues for support\"#) }); ®EX }\n} impl std::convert::TryFrom for LengthPatternString { type Error = crate::model::length_pattern_string::ConstraintViolation; /// Constructs a `LengthPatternString` from an [`std::string::String`], /// failing when the provided value does not satisfy the modeled constraints. fn try_from(value: std::string::String) -> Result { Self::check_length(&value)?; let value = Self::check_pattern(value)?; Ok(Self(value)) }\n} Observe how a failure to adhere to the @length trait will short-circuit the evaluation of the constructor, when the value could technically also not adhere with the @pattern trait. Similarly, constrained structures fail upon encountering the first member that violates a constraint. Additionally, in framework request deserialization code : collections whose members are constrained fail upon encountering the first member that violates the constraint, maps whose keys and/or values are constrained fail upon encountering the first violation; and structures whose members are constrained fail upon encountering the first member that violates the constraint, In summary, any shape that is transitively constrained yields types whose constructors (both the internal one and the user-facing one) currently short-circuit upon encountering the first violation.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"427","title":"Problem"},"428":{"body":"The deserializing architecture lends itself to be easily refactored so that we can collect constraint violations before returning them. Indeed, note that deserializers enforce constraint traits in a two-step phase: first, the entirety of the unconstrained value is deserialized, then constraint traits are enforced by feeding the entire value to the TryFrom constructor. Let's consider a ConstraintViolations type (note the plural) that represents a collection of constraint violations that can occur within user application code . Roughly: pub ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} The main reason for wrapping a vector in ConstraintViolations as opposed to directly returning the vector is forwards-compatibility: we may want to expand ConstraintViolations with conveniences. If the constrained type can only ever yield a single violation, we will dispense with ConstraintViolations and keep directly returning the crate::model::shape_name::ConstraintViolation type. We will analogously introduce a ConstraintViolationExceptions type that represents a collection of constraint violations that can occur within the framework's request deserialization code . This type will be pub(crate) and will be the one the framework will map to Smithy's ValidationException that eventually gets serialized into the response. Collecting constraint violations may constitute a DOS attack vector This is a problem that already exists as of writing, but that collecting constraint violations highlights, so it is a good opportunity, from a pedagogical perspective, to explain it here. Consider the following model: @length(max: 3)\nlist ListOfPatternStrings { member: PatternString\n} @pattern(\"expensive regex to evaluate\")\nstring PatternString Our implementation currently enforces constraints from the leaf to the root : when enforcing the @length constraint, the TryFrom constructor the server framework uses gets a Vec and first checks the members adhere to the @pattern trait, and only after is the @length trait checked. This means that if a client sends a request with n >>> 3 list members, the expensive check runs n times, when a constant-time check inspecting the length of the input vector would have sufficed to reject the request. Additionally, we may want to avoid serializing n ValidationExceptionFields due to performance concerns. A possibility to circumvent this is making the @length validator special, having it bound the other validators via effectively permuting the order of the checks and thus short-circuiting. In general, it's unclear what constraint traits should cause short-circuiting. A probably reasonable rule of thumb is to include traits that can be attached directly to aggregate shapes: as of writing, that would be @uniqueItems on list shapes and @length on list shapes. Another possiblity is to do nothing and value complete validation exception response messages over trying to mitigate this with special handling. One could argue that these kind of DOS attack vectors should be taken care of with a separate solution e.g. a layer that bounds a request body's size to a reasonable default (see how Axum added this ). We will provide a similar request body limiting mechanism regardless. This RFC advocates for implementing the first option, arguing that it's fair to say that the framework should return an error that is as informative as possible, but it doesn't necessarily have to be complete . However, we will also write a layer, applied by default to all server SDKs, that bounds a request body's size to a reasonable (yet high) default. Relying on users to manually apply the layer is dangerous, since such a configuration is trivially exploitable . Users can always manually apply the layer again to their resulting service if they want to further restrict a request's body size.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"428","title":"Solution proposal"},"429":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » \"Tightness\" of constraint violations","id":"429","title":"\"Tightness\" of constraint violations"},"43":{"body":"The core codegen generates HTTP requests that do not contain an authority, scheme or post. These properties must be set later based on configuration. Existing AWS services have a number of requirements that increase the complexity: Endpoints must support manual configuration by end users: let config = dynamodb::Config::builder() .endpoint(StaticEndpoint::for_uri(\"http://localhost:8000\")) When a user specifies a custom endpoint URI, typically they will want to avoid having this URI mutated by other endpoint discovery machinery. Endpoints must support being customized on a per-operation basis by the endpoint trait. This will prefix the base endpoint, potentially driven by fields of the operation. Docs Endpoints must support being customized by endpoint discovery . A request, customized by a predefined set of fields from the input operation is dispatched to a specific URI. That operation returns the endpoint that should be used. Endpoints must be cached by a cache key containing: (access_key_id, [all input fields], operation) Endpoints retrieved in this way specify a TTL. Endpoints must be able to customize the signing (and other phases of the operation). For example, requests sent to a global region will have a region set by the endpoint provider.","breadcrumbs":"Smithy » Endpoint Resolution » Requirements","id":"43","title":"Requirements"},"430":{"body":"ConstraintViolationExceptions is not \"tight\" in that there's nothing in the type system that indicates to the user, when writing the custom validation error mapping function, that the iterator will not return a sequence of ConstraintViolationExceptions that is actually impossible to occur in practice. Recall that ConstraintViolationExceptions are enums that model both direct constraint violations as well as transitive ones. For example, given the model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString The corresponding ConstraintViolationException Rust type for the LengthMap shape is: pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolationException, ), }\n} ConstraintViolationExceptions is just a container over this type: pub ConstraintViolationExceptions(pub(crate) Vec); impl IntoIterator for ConstraintViolationExceptions { ... } There might be multiple map values that fail to adhere to the constraints in LengthString, which would make the iterator yield multiple length_map::ConstraintViolationException::Values; however, at most one length_map::ConstraintViolationException::Length can be yielded in practice . This might be obvious to the service owner when inspecting the model and the Rust docs, but it's not expressed in the type system. The above tightness problem has been formulated in terms of ConstraintViolationExceptions, because the fact that ConstraintViolationExceptions contain transitive constraint violations highlights the tightness problem. Note, however, that the tightness problem also afflicts ConstraintViolations . Indeed, consider the following model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield: pub struct ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } pub mod length_pattern_string { pub enum ConstraintViolation { Length(usize), Pattern(String) }\n} impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} Observe how the iterator of an instance of ConstraintViolations, may, a priori, yield e.g. the length_pattern_string::ConstraintViolation::Length variant twice, when it's clear that the iterator should contain at most one of each of length_pattern_string::ConstraintViolation's variants.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"430","title":"Problem"},"431":{"body":"We propose a tighter API design. We substitute enums for structs whose members are all Optional, representing all the constraint violations that can occur. For list shapes and map shapes: we implement IntoIterator on an additional struct Members representing only the violations that can occur on the collection's members. we add a non Option-al field to the struct representing the constraint violations of type Members. Let's walk through an example. Take the last model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield, as per the first substitution: pub mod length_pattern_string { pub struct ConstraintViolations { pub length: Option, pub pattern: Option, } pub mod constraint_violation { pub struct Length(usize); pub struct Pattern(String); }\n} impl std::convert::TryFrom for LengthPatternString { type Error = length_pattern_string::ConstraintViolations; // The error type returned by this constructor, `ConstraintViolations`, // will always have _at least_ one member set. fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} We now expand the model to highlight the second step of the algorithm: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} This gives us: pub mod length_map { pub struct ConstraintViolations { pub length: Option, // Would be `Option` in the case of an aggregate shape that is _not_ a // list shape or a map shape. pub member_violations: constraint_violation::Members, } pub mod constraint_violation { // Note that this could now live outside the `length_map` module and be // reused across all `@length`-constrained shapes, if we expanded it with // another `usize` indicating the _modeled_ value in the `@length` trait; by // keeping it inside `length_map` we can hardcode that value in the // implementation of e.g. error messages. pub struct Length(usize); pub struct Members { pub(crate) Vec } pub struct Member { // If the map's key shape were constrained, we'd have a `key` // field here too. value: Option } pub struct Value( std::string::String, crate::model::length_string::ConstraintViolation, ); impl IntoIterator for Members { ... } }\n} The above examples have featured the tight API design with ConstraintViolations. Of course, we will apply the same design in the case of ConstraintViolationExceptions. For the sake of completeness, let's expand our model yet again with a structure shape: structure A { @required member: String, @required length_map: LengthMap,\n} And this time let's feature both the resulting ConstraintViolationExceptions and ConstraintViolations types: pub mod a { pub struct ConstraintViolationExceptions { // All fields must be `Option`, despite the members being `@required`, // since no violations for their values might have occurred. pub missing_member_exception: Option, pub missing_length_map_exception: Option, pub length_map_exceptions: Option, } pub mod constraint_violation_exception { pub struct MissingMember; pub struct MissingLengthMap; } pub struct ConstraintViolations { pub missing_member: Option, pub missing_length_map: Option, } pub mod constraint_violation { pub struct MissingMember; pub struct MissingLengthMap; }\n} As can be intuited, the only differences are that: ConstraintViolationExceptions hold transitive violations while ConstraintViolations only need to expose direct violations (as explained in the Impossible constraint violations section), ConstraintViolationExceptions have members suffixed with _exception, as is the module name. Note that while the constraint violation (exception) type names are plural, the module names are always singular. We also make a conscious decision of, in this case of structure shapes, making the types of all members Options, for simplicity. Another choice would have been to make length_map_exceptions not Option-al, and, in the case where no violations in LengthMap values occurred, set length_map::ConstraintViolations::length to None and length_map::ConstraintViolations::member_violations eventually reach an empty iterator. However, it's best that we use the expressiveness of Options at the earliest (\"highest\" in the shape hierarchy) opportunity: if a member is Some, it means it (eventually) reaches data.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Final solution proposal","id":"431","title":"Final solution proposal"},"432":{"body":"Unfortunately, while this RFC could be implemented iteratively (i.e. solve each of the problems in turn), it would introduce too much churn and throwaway work: solving the tightness problem requires a more or less complete overhaul of the constraint violations code generator. It's best that all three problems be solved in the same changeset. Generate ConstraintViolations and ConstraintViolationExceptions types so as to not reify impossible constraint violations , add the ability to collect constraint violations , and solve the \"tightness\" problem of constraint violations . Special-case generated request deserialization code for operations using @length and @uniqueItems constrained shapes whose closures reach other constrained shapes so that the validators for these two traits short-circuit upon encountering a number of inner constraint violations above a certain threshold. Write and expose a layer, applied by default to all generated server SDKs, that bounds a request body's size to a reasonable (yet high) default, to prevent trivial DoS attacks .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Checklist","id":"432","title":"Checklist"},"433":{"body":"Status: Implemented in #2129 Applies to: AWS SDK clients At time of writing, customers can retrieve a request ID in one of four ways in the Rust SDK: For error cases where the response parsed successfully, the request ID can be retrieved via accessor method on operation error. This also works for unmodeled errors so long as the response parsing succeeds. For error cases where a response was received but parsing fails, the response headers can be retrieved from the raw response on the error, but customers have to manually extract the request ID from those headers (there's no convenient accessor method). For all error cases where the request ID header was sent in the response, customers can call SdkError::into_service_error to transform the SdkError into an operation error, which has a request_id accessor on it. For success cases, the customer can't retrieve the request ID at all if they use the fluent client. Instead, they must manually make the operation and call the underlying Smithy client so that they have access to SdkSuccess, which provides the raw response where the request ID can be manually extracted from headers. Only one of these mechanisms is convenient and ergonomic. The rest need considerable improvements. Additionally, the request ID should be attached to tracing events where possible so that enabling debug logging reveals the request IDs without any code changes being necessary. This RFC proposes changes to make the request ID easier to access.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » RFC: Improving access to request IDs in SDK clients","id":"433","title":"RFC: Improving access to request IDs in SDK clients"},"434":{"body":"Request ID: A unique identifier assigned to and associated with a request to AWS that is sent back in the response headers. This identifier is useful to customers when requesting support. Operation Error: Operation errors are code generated for each operation in a Smithy model. They are an enum of every possible modeled error that that operation can respond with, as well as an Unhandled variant for any unmodeled or unrecognized errors. Modeled Errors: Any error that is represented in a Smithy model with the @error trait. Unmodeled Errors: Errors that a service responds with that do not appear in the Smithy model. SDK Clients: Clients generated for the AWS SDK, including \"adhoc\" or \"one-off\" clients. Smithy Clients: Any clients not generated for the AWS SDK, excluding \"adhoc\" or \"one-off\" clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Terminology","id":"434","title":"Terminology"},"435":{"body":"Before proposing any changes, the topic of purity needs to be covered. Request IDs are not currently a Smithy concept. However, at time of writing, the request ID concept is leaked into the non-SDK rust runtime crates and generated code via the generic error struct and the request_id functions on generated operation errors (e.g., GetObjectError example in S3 ). This RFC attempts to remove these leaks from Smithy clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » SDK/Smithy Purity","id":"435","title":"SDK/Smithy Purity"},"436":{"body":"First, we'll explore making it easier to retrieve a request ID from errors, and then look at making it possible to retrieve them from successful responses. To see the customer experience of these changes, see the Example Interactions section below.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Proposed Changes","id":"436","title":"Proposed Changes"},"437":{"body":"One could argue that customers being able to convert a SdkError into an operation error that has a request ID on it is sufficient. However, there's no way to write a function that takes an error from any operation and logs a request ID, so it's still not ideal. The aws-http crate needs to have a RequestId trait on it to facilitate generic request ID retrieval: pub trait RequestId { /// Returns the request ID if it's available. fn request_id(&self) -> Option<&str>;\n} This trait will be implemented for SdkError in aws-http where it is declared, complete with logic to pull the request ID header out of the raw HTTP responses (it will always return None for event stream Message responses; an additional trait may need to be added to aws-smithy-http to facilitate access to the headers). This logic will try different request ID header names in order of probability since AWS services have a couple of header name variations. x-amzn-requestid is the most common, with x-amzn-request-id being the second most common. aws-http will also implement RequestId for aws_smithy_types::error::Error, and the request_id method will be removed from aws_smithy_types::error::Error. Places that construct Error will place the request ID into its extras field, where the RequestId trait implementation can retrieve it. A codegen decorator will be added to sdk-codegen to implement RequestId for operation errors, and the existing request_id accessors will be removed from CombinedErrorGenerator in codegen-core. With these changes, customers can directly access request IDs from SdkError and operations errors by importing the RequestId trait. Additionally, the Smithy/SDK purity is improved since both places where request IDs are leaked to Smithy clients will be resolved.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Make request ID retrieval on errors consistent","id":"437","title":"Make request ID retrieval on errors consistent"},"438":{"body":"To make it possible to retrieve request IDs when using the fluent client, the new RequestId trait can be implemented for outputs. Some services (e.g., Transcribe Streaming) model the request ID header in their outputs, while other services (e.g., Directory Service) model a request ID field on errors. In some cases, services take RequestId as a modeled input (e.g., IoT Event Data). It follows that it is possible, but unlikely, that a service could have a field named RequestId that is not the same concept in the future. Thus, name collisions are going to be a concern for putting a request ID accessor on output. However, if it is implemented as a trait, then this concern is partially resolved. In the vast majority of cases, importing RequestId will provide the accessor without any confusion. In cases where it is already modeled and is the same concept, customers will likely just use it and not even realize they didn't import the trait. The only concern is future cases where it is modeled as a separate concept, and as long as customers don't import RequestId for something else in the same file, that confusion can be avoided. In order to implement RequestId for outputs, either the original response needs to be stored on the output, or the request ID needs to be extracted earlier and stored on the output. The latter will lead to a small amount of header lookup code duplication. In either case, the StructureGenerator needs to be customized in sdk-codegen (Appendix B outlines an alternative approach to this and why it was dismissed). This will be done by adding customization hooks to StructureGenerator similar to the ones for ServiceConfigGenerator so that a sdk-codegen decorator can conditionally add fields and functions to any generated structs. A hook will also be needed to additional trait impl blocks. Once the hooks are in place, a decorator will be added to store either the original response or the request ID on outputs, and then the RequestId trait will be implemented for them. The ParseResponse trait implementation will be customized to populate this new field. Note: To avoid name collisions of the request ID or response on the output struct, these fields can be prefixed with an underscore. It shouldn't be possible for SDK fields to code generate with this prefix given the model validation rules in place.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for outputs","id":"438","title":"Implement RequestId for outputs"},"439":{"body":"In the case that a customer wants to ditch the fluent client, it should still be easy to retrieve a request ID. To do this, aws-http will provide RequestId implementations for Operation and operation::Response. These implementations will likely make the other RequestId implementations easier to implement as well.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Operation and operation::Response","id":"439","title":"Implement RequestId for Operation and operation::Response"},"44":{"body":"Configuration objects for services must contain an Endpoint. This endpoint may be set by a user or it will default to the endpointPrefix from the service definition. In the case of endpoint discovery, this is the endpoint that we will start with. During operation construction (see Operation Construction ) an EndpointPrefix may be set on the property bag. The eventual endpoint middleware will search for this in the property bag and (depending on the URI mutability) utilize this prefix when setting the endpoint. In the case of endpoint discovery, we envision a different pattern: // EndpointClient manages the endpoint cache\nlet (tx, rx) = dynamodb::EndpointClient::new();\nlet client = aws_hyper::Client::new();\n// `endpoint_req` is an operation that can be dispatched to retrieve endpoints\n// During operation construction, the endpoint resolver is configured to be `rx` instead static endpoint\n// resolver provided by the service.\nlet (endpoint_req, req) = GetRecord::builder().endpoint_disco(rx).build_with_endpoint();\n// depending on the duration of endpoint expiration, this may be spawned into a separate task to continuously\n// refresh endpoints.\nif tx.needs(endpoint_req) { let new_endpoint = client. call(endpoint_req) .await; tx.send(new_endpoint)\n}\nlet rsp = client.call(req).await?; We believe that this design results in an SDK that both offers customers more control & reduces the likelihood of bugs from nested operation dispatch. Endpoint resolution is currently extremely rare in AWS services so this design may remain a prototype while we solidify other behaviors.","breadcrumbs":"Smithy » Endpoint Resolution » Design","id":"44","title":"Design"},"440":{"body":"The Result returned by the SDK should directly implement RequestId when both its Ok and Err variants implement RequestId. This will make it possible for a customer to feed the return value from send() directly to a request ID logger.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Result","id":"440","title":"Implement RequestId for Result"},"441":{"body":"","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Example Interactions","id":"441","title":"Example Interactions"},"442":{"body":"// A re-export of the RequestId trait\nuse aws_sdk_service::primitives::RequestId; fn my_request_id_logging_fn(request_id: &dyn RequestId) { println!(\"request ID: {:?}\", request_id.request_id());\n} let result = client.some_operation().send().await?;\nmy_request_id_logging_fn(&result);","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Generic Handling Case","id":"442","title":"Generic Handling Case"},"443":{"body":"use aws_sdk_service::primitives::RequestId; let output = client.some_operation().send().await?;\nprintln!(\"request ID: {:?}\", output.request_id());","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Success Case","id":"443","title":"Success Case"},"444":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => { println!(\"request ID: {:?}\", output.request_id()); }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with SdkError","id":"444","title":"Error Case with SdkError"},"445":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => match err.into_service_err() { err @ SomeOperationError::SomeError(_) => { println!(\"request ID: {:?}\", err.request_id()); } _ => { /* don't care */ } }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with operation error","id":"445","title":"Error Case with operation error"},"446":{"body":"Create the RequestId trait in aws-http Implement for errors Implement RequestId for SdkError in aws-http Remove request_id from aws_smithy_types::error::Error, and store request IDs in its extras instead Implement RequestId for aws_smithy_types::error::Error in aws-http Remove generation of request_id accessors from CombinedErrorGenerator in codegen-core Implement for outputs Add customization hooks to StructureGenerator Add customization hook to ParseResponse Add customization hook to HttpBoundProtocolGenerator Customize output structure code gen in sdk-codegen to add either a request ID or a response field Customize ParseResponse in sdk-codegen to populate the outputs Implement RequestId for Operation and operation::Response Implement RequestId for Result where O and E both implement RequestId Re-export RequestId in generated crates Add integration tests for each request ID access point","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Changes Checklist","id":"446","title":"Changes Checklist"},"447":{"body":"Alternatively, for successful responses, a second send method (that is difficult to name)w be added to the fluent client that has a return value that includes both the output and the request ID (or entire response). This solution was dismissed due to difficulty naming, and the risk of name collision.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix A: Alternate solution for access on successful responses","id":"447","title":"Appendix A: Alternate solution for access on successful responses"},"448":{"body":"The request ID could be stored on outputs by doing a model transform in sdk-codegen to add a RequestId member field. However, this causes problems when an output already has a RequestId field, and requires the addition of a synthetic trait to skip binding the field in the generated serializers/deserializers.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix B: Adding RequestId as a string to outputs via model transform","id":"448","title":"Appendix B: Adding RequestId as a string to outputs via model transform"},"449":{"body":"status: implemented applies-to: The smithy client This RFC proposes a new process for constructing client requests and handling service responses. This new process is intended to: Improve the user experience by Simplifying several aspects of sending a request Adding more extension points to the request/response lifecycle Improve the maintainer experience by Making our SDK more similar in structure to other AWS SDKs Simplifying many aspects of the request/response lifecycle Making room for future changes Additionally, functionality that the SDKs currently provide like retries, logging, and auth with be incorporated into this new process in such a way as to make it more configurable and understandable. This RFC references but is not the source of truth on: Interceptors: To be described in depth in a future RFC. Runtime Plugins: To be described in depth in a future RFC.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Smithy Orchestrator","id":"449","title":"Smithy Orchestrator"},"45":{"body":"AWS SDKs require that clients can evolve in a backwards compatible way as new fields and operations are added. The types generated by smithy-rs are specifically designed to meet these requirements. Specifically, the following transformations must not break compilation when upgrading to a new version: New operation added New member added to structure New union variant added New error added (todo) New enum variant added (todo) However, the following changes are not backwards compatible: Error removed from operation. In general, the best tool in Rust to solve these issues in the #[non_exhaustive] attribute which will be explored in detail below.","breadcrumbs":"Smithy » Backwards Compatibility » Backwards Compatibility","id":"45","title":"Backwards Compatibility"},"450":{"body":"When a smithy client communicates with a smithy service, messages are handled by an \"orchestrator.\" The orchestrator runs in two main phases: Constructing configuration. This process is user-configurable with \"runtime plugins.\" Configuration is stored in a typemap. Transforming a client request into a server response. This process is user-configurable with \"interceptors.\" Interceptors are functions that are run by \"hooks\" in the request/response lifecycle.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » TLDR;","id":"450","title":"TLDR;"},"451":{"body":"SDK Client : A high-level abstraction allowing users to make requests to remote services. Remote Service : A remote API that a user wants to use. Communication with a remote service usually happens over HTTP. The remote service is usually, but not necessarily, an AWS service. Operation : A high-level abstraction representing an interaction between an *SDK Client and a remote service . Input Message : A modeled request passed into an SDK client . For example, S3’s ListObjectsRequest. Transport Request Message : A message that can be transmitted to a remote service . For example, an HTTP request. Transport Response Message : A message that can be received from a remote service . For example, an HTTP response. Output Message : A modeled response or exception returned to an SDK client caller. For example, S3’s ListObjectsResponse or NoSuchBucketException. The request/response lifecycle : The process by which an SDK client makes requests and receives responses from a remote service . This process is enacted and managed by the orchestrator . Orchestrator : The code within an SDK client that handles the process of making requests and receiving responses from remote services . The orchestrator is configurable by modifying the runtime plugins it's built from. The orchestrator is responsible for calling interceptors at the appropriate times in the request/response lifecycle . Interceptor / Hook : A generic extension point within the orchestrator . Supports \"anything that someone should be able to do\", NOT \"anything anyone might want to do\". These hooks are: Either read-only or read/write . Able to read and modify the Input , Transport Request , Transport Response , or Output messages. Runtime Plugin : Runtime plugins are similar to interceptors, but they act on configuration instead of requests and response. Both users and services may define runtime plugins. Smithy also defines several default runtime plugins used by most clients. See the F.A.Q. for a list of plugins with descriptions. ConfigBag : A typemap that's equivalent to http::Extensions . Used to store configuration for the orchestrator.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Terminology","id":"451","title":"Terminology"},"452":{"body":"For many users, the changes described by this RFC will be invisible. Making a request with an orchestrator-based SDK client looks very similar to the way requests were made pre-RFC: let sdk_config = aws_config::load_from_env().await;\nlet client = aws_sdk_s3::Client::new(&sdk_config);\nlet res = client.get_object() .bucket(\"a-bucket\") .key(\"a-file.txt\") .send() .await?; match res { Ok(res) => println!(\"success: {:?}\"), Err(err) => eprintln!(\"failure: {:?}\")\n}; Users may further configure clients and operations with runtime plugins , and they can modify requests and responses with interceptors . We'll examine each of these concepts in the following sections.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The user experience if this RFC is implemented","id":"452","title":"The user experience if this RFC is implemented"},"453":{"body":"The exact implementation of runtime plugins is left for another RFC. That other RFC will be linked here once it's written. To get an idea of what they may look like, see the \"Layered configuration, stored in type maps\" section of this RFC. Runtime plugins construct and modify client configuration. Plugin initialization is the first step of sending a request, and plugins set in later steps can override the actions of earlier plugins. Plugin ordering is deterministic and non-customizable. While AWS services define a default set of plugins, users may define their own plugins, and set them by calling the appropriate methods on a service's config, client, or operation. Plugins are specifically meant for constructing service and operation configuration. If a user wants to define behavior that should occur at specific points in the request/response lifecycle , then they should instead consider defining an interceptor .","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Service clients and operations are configured with runtime plugins","id":"453","title":"Service clients and operations are configured with runtime plugins"},"454":{"body":"Interceptors are similar to middlewares, in that they are functions that can read and modify request and response state. However, they are more restrictive than middlewares in that they can't modify the \"control flow\" of the request/response lifecycle. This is intentional. Interceptors can be registered on a client or operation, and the orchestrator is responsible for calling interceptors at the appropriate time. Users MUST NOT perform blocking IO within an interceptor. Interceptors are sync, and are not intended to perform large amounts of work. This makes them easier to reason about and use. Depending on when they are called, interceptors may read and modify input messages , transport request messages , transport response messages , and output messages . Additionally, all interceptors may write to a context object that is shared between all interceptors. Currently supported hooks Read Before Execution (Read-Only) : Before anything happens. This is the first thing the SDK calls during operation execution. Modify Before Serialization (Read/Write) : Before the input message given by the customer is marshalled into a transport request message. Allows modifying the input message. Read Before Serialization (Read-Only) : The last thing the SDK calls before marshaling the input message into a transport message. Read After Serialization (Read-Only) : The first thing the SDK calls after marshaling the input message into a transport message. (Retry Loop) Modify Before Retry Loop (Read/Write) : The last thing the SDK calls before entering the retry look. Allows modifying the transport message. Read Before Attempt (Read-Only) : The first thing the SDK calls “inside” of the retry loop. Modify Before Signing (Read/Write) : Before the transport request message is signed. Allows modifying the transport message. Read Before Signing (Read-Only) : The last thing the SDK calls before signing the transport request message. **Read After Signing (Read-Only)****: The first thing the SDK calls after signing the transport request message. Modify Before Transmit (Read/Write) : Before the transport request message is sent to the service. Allows modifying the transport message. Read Before Transmit (Read-Only) : The last thing the SDK calls before sending the transport request message. Read After Transmit (Read-Only) : The last thing the SDK calls after receiving the transport response message. Modify Before Deserialization (Read/Write) : Before the transport response message is unmarshaled. Allows modifying the transport response message. Read Before Deserialization (Read-Only) : The last thing the SDK calls before unmarshalling the transport response message into an output message. Read After Deserialization (Read-Only) : The last thing the SDK calls after unmarshaling the transport response message into an output message. Modify Before Attempt Completion (Read/Write) : Before the retry loop ends. Allows modifying the unmarshaled response (output message or error). Read After Attempt (Read-Only) : The last thing the SDK calls “inside” of the retry loop. Modify Before Execution Completion (Read/Write) : Before the execution ends. Allows modifying the unmarshaled response (output message or error). Read After Execution (Read-Only) : After everything has happened. This is the last thing the SDK calls during operation execution.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Requests and responses are modified by interceptors","id":"454","title":"Requests and responses are modified by interceptors"},"455":{"body":"As mentioned above, interceptors may read/write a context object that is shared between all interceptors: pub struct InterceptorContext { // a.k.a. the input message modeled_request: ModReq, // a.k.a. the transport request message tx_request: Option, // a.k.a. the output message modeled_response: Option, // a.k.a. the transport response message tx_response: Option, // A type-keyed map properties: SharedPropertyBag,\n} The optional request and response types in the interceptor context can only be accessed by interceptors that are run after specific points in the request/response lifecycle . Rather than go into depth in this RFC, I leave that to a future \"Interceptors RFC.\"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Interceptor context","id":"455","title":"Interceptor context"},"456":{"body":"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » How to implement this RFC","id":"456","title":"How to implement this RFC"},"457":{"body":"Imagine we have some sort of request signer. This signer doesn't refer to any orchestrator types. All it needs is a HeaderMap along with two strings, and will return a signature in string form. struct Signer; impl Signer { fn sign(headers: &http::HeaderMap, signing_name: &str, signing_region: &str) -> String { todo!() }\n} Now imagine things from the orchestrator's point of view. It requires something that implements an AuthOrchestrator which will be responsible for resolving the correct auth scheme, identity, and signer for an operation, as well as signing the request pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} // And it calls that `AuthOrchestrator` like so:\nfn invoke() { // code omitted for brevity // Get the request to be signed let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); // Fetch the auth orchestrator from the bag let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; // Auth the request auth_orchestrator.auth_request(tx_req_mut, cfg)?; // code omitted for brevity\n} The specific implementation of the AuthOrchestrator is what brings these two things together: struct Sigv4AuthOrchestrator; impl AuthOrchestrator for Sigv4AuthOrchestrator { fn auth_request(&self, req: &mut http::Request, cfg: &ConfigBag) -> Result<(), BoxError> { let signer = Signer; let signing_name = cfg.get::().ok_or(Error::MissingSigningName)?; let signing_region = cfg.get::().ok_or(Error::MissingSigningRegion)?; let headers = req.headers_mut(); let signature = signer.sign(headers, signing_name, signing_region); match cfg.get::() { Some(SignatureLocation::Query) => req.query.set(\"sig\", signature), Some(SignatureLocation::Header) => req.headers_mut().insert(\"sig\", signature), None => return Err(Error::MissingSignatureLocation), }; Ok(()) }\n} This intermediate code should be free from as much logic as possible. Whenever possible, we must maintain this encapsulation. Doing so will make the Orchestrator more flexible, maintainable, and understandable.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Integrating with the orchestrator","id":"457","title":"Integrating with the orchestrator"},"458":{"body":"Type map : A data structure where stored values are keyed by their type. Hence, only one value can be stored for a given type. See typemap , type-map , http::Extensions , and actix_http::Extensions for examples. let conf: ConfigBag = aws_config::from_env() // Configuration can be common to all smithy clients .with(RetryConfig::builder().disable_retries().build()) // Or, protocol-specific .with(HttpClient::builder().build()) // Or, AWS-specific .with(Region::from(\"us-east-1\")) // Or, service-specific .with(S3Config::builder().force_path_style(false).build()) .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() // Configuration can be set on operations as well as clients .with(HttpConfig::builder().conn(some_other_conn).build()) .send() .await; Setting configuration that will not be used wastes memory and can make debugging more difficult. Therefore, configuration defaults are only set when they're relevant. For example, if a smithy service doesn't support HTTP, then no HTTP client will be set. What is \"layered\" configuration? Configuration has precedence. Configuration set on an operation will override configuration set on a client, and configuration set on a client will override default configuration. However, configuration with a higher precedence can also augment configuration with a lower precedence. For example: let conf: ConfigBag = aws_config::from_env() .with( SomeConfig::builder() .option_a(1) .option_b(2) .option_c(3) ) .build() .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() .with( SomeConfig::builder() .option_a(0) .option_b(Value::Inherit) .option_c(Value::Unset) ) .build() .send() .await; In the above example, when the option_a, option_b, option_c, values of SomeConfig are accessed, they'll return: option_a: 0 option_b: 2 option_c: No value Config values are wrapped in a special enum called Value with three variants: Value::Set: A set value that will override values from lower layers. Value::Unset: An explicitly unset value that will override values from lower layers. Value::Inherit: An explicitly unset value that will inherit a value from a lower layer. Builders are defined like this: struct SomeBuilder { value: Value,\n} impl struct SomeBuilder { fn new() -> Self { // By default, config values inherit from lower-layer configs Self { value: Value::Inherit } } fn some_field(&mut self, value: impl Into>) -> &mut self { self.value = value.into(); self }\n} Because of impl Into>, users don't need to reference the Value enum unless they want to \"unset\" a value. Layer separation and precedence Codegen defines default sets of interceptors and runtime plugins at various \"levels\": AWS-wide defaults set by codegen. Service-wide defaults set by codegen. Operation-specific defaults set by codegen. Likewise, users may mount their own interceptors and runtime plugins: The AWS config level, e.g. aws_types::Config. The service config level, e.g. aws_sdk_s3::Config. The operation config level, e.g. aws_sdk_s3::Client::get_object. Configuration is resolved in a fixed manner by reading the \"lowest level\" of config available, falling back to \"higher levels\" only when no value has been set. Therefore, at least 3 separate ConfigBags are necessary, and user configuration has precedence over codegen-defined default configuration. With that in mind, resolution of configuration would look like this: Check user-set operation config. Check codegen-defined operation config. Check user-set service config. Check codegen-defined service config. Check user-set AWS config. Check codegen-defined AWS config.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Layered configuration, stored in type maps","id":"458","title":"Layered configuration, stored in type maps"},"459":{"body":"I've omitted some of the error conversion to shorten this example and make it easier to understand. The real version will be messier. /// `In`: The input message e.g. `ListObjectsRequest`\n/// `Req`: The transport request message e.g. `http::Request`\n/// `Res`: The transport response message e.g. `http::Response`\n/// `Out`: The output message. A `Result` containing either:\n/// - The 'success' output message e.g. `ListObjectsResponse`\n/// - The 'failure' output message e.g. `NoSuchBucketException`\npub async fn invoke( input: In, interceptors: &mut Interceptors>, runtime_plugins: &RuntimePlugins, cfg: &mut ConfigBag,\n) -> Result where // The input must be Clone in case of retries In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ let mut ctx: InterceptorContext> = InterceptorContext::new(input); runtime_plugins.apply_client_configuration(cfg)?; interceptors.client_read_before_execution(&ctx, cfg)?; runtime_plugins.apply_operation_configuration(cfg)?; interceptors.operation_read_before_execution(&ctx, cfg)?; interceptors.read_before_serialization(&ctx, cfg)?; interceptors.modify_before_serialization(&mut ctx, cfg)?; let request_serializer = cfg .get::>>() .ok_or(\"missing serializer\")?; let req = request_serializer.serialize_request(ctx.modeled_request_mut(), cfg)?; ctx.set_tx_request(req); interceptors.read_after_serialization(&ctx, cfg)?; interceptors.modify_before_retry_loop(&mut ctx, cfg)?; loop { make_an_attempt(&mut ctx, cfg, interceptors).await?; interceptors.read_after_attempt(&ctx, cfg)?; interceptors.modify_before_attempt_completion(&mut ctx, cfg)?; let retry_strategy = cfg .get::>>>() .ok_or(\"missing retry strategy\")?; let mod_res = ctx .modeled_response() .expect(\"it's set during 'make_an_attempt'\"); if retry_strategy.should_retry(mod_res, cfg)? { continue; } interceptors.modify_before_completion(&mut ctx, cfg)?; let trace_probe = cfg .get::>() .ok_or(\"missing trace probes\")?; trace_probe.dispatch_events(cfg); interceptors.read_after_execution(&ctx, cfg)?; break; } let (modeled_response, _) = ctx.into_responses()?; modeled_response\n} // Making an HTTP request can fail for several reasons, but we still need to\n// call lifecycle events when that happens. Therefore, we define this\n// `make_an_attempt` function to make error handling simpler.\nasync fn make_an_attempt( ctx: &mut InterceptorContext>, cfg: &mut ConfigBag, interceptors: &mut Interceptors>,\n) -> Result<(), BoxError> where In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ interceptors.read_before_attempt(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let endpoint_orchestrator = cfg .get::>>() .ok_or(\"missing endpoint orchestrator\")?; endpoint_orchestrator.resolve_and_apply_endpoint(tx_req_mut, cfg)?; interceptors.modify_before_signing(ctx, cfg)?; interceptors.read_before_signing(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; auth_orchestrator.auth_request(tx_req_mut, cfg)?; interceptors.read_after_signing(ctx, cfg)?; interceptors.modify_before_transmit(ctx, cfg)?; interceptors.read_before_transmit(ctx, cfg)?; // The connection consumes the request but we need to keep a copy of it // within the interceptor context, so we clone it here. let res = { let tx_req = ctx.tx_request_mut().expect(\"tx_request has been set\"); let connection = cfg .get::>>() .ok_or(\"missing connector\")?; connection.call(tx_req, cfg).await? }; ctx.set_tx_response(res); interceptors.read_after_transmit(ctx, cfg)?; interceptors.modify_before_deserialization(ctx, cfg)?; interceptors.read_before_deserialization(ctx, cfg)?; let tx_res = ctx.tx_response_mut().expect(\"tx_response has been set\"); let response_deserializer = cfg .get::>>>() .ok_or(\"missing response deserializer\")?; let res = response_deserializer.deserialize_response(tx_res, cfg)?; ctx.set_modeled_response(res); interceptors.read_after_deserialization(ctx, cfg)?; Ok(())\n} Traits At various points in the execution of invoke, trait objects are fetched from the ConfigBag. These are preliminary definitions of those traits: pub trait TraceProbe: Send + Sync + Debug { fn dispatch_events(&self, cfg: &ConfigBag) -> BoxFallibleFut<()>;\n} pub trait RequestSerializer: Send + Sync + Debug { fn serialize_request(&self, req: &mut In, cfg: &ConfigBag) -> Result;\n} pub trait ResponseDeserializer: Send + Sync + Debug { fn deserialize_response(&self, res: &mut TxRes, cfg: &ConfigBag) -> Result;\n} pub trait Connection: Send + Sync + Debug { fn call(&self, req: &mut TxReq, cfg: &ConfigBag) -> BoxFallibleFut;\n} pub trait RetryStrategy: Send + Sync + Debug { fn should_retry(&self, res: &Out, cfg: &ConfigBag) -> Result;\n} pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} pub trait EndpointOrchestrator: Send + Sync + Debug { fn resolve_and_apply_endpoint(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>; fn resolve_auth_schemes(&self) -> Result, BoxError>;\n}","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The aws-smithy-orchestrator crate","id":"459","title":"The aws-smithy-orchestrator crate"},"46":{"body":"Before $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject]\n} After $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject, PutObject]\n} Adding support for a new operation is backwards compatible because SDKs to not expose any sort of \"service trait\" that provides an interface over an entire service. This prevents clients from inheriting or implementing an interface that would be broken by the addition of a new operation.","breadcrumbs":"Smithy » Backwards Compatibility » New Operation Added","id":"46","title":"New Operation Added"},"460":{"body":"The orchestrator is a large and complex feature, with many moving parts. How can we ensure that multiple people can contribute in parallel? By defining the entire orchestrator and agreeing on its structure, we can then move on to working on individual runtime plugins and interceptors. What is the precedence of interceptors? The precedence of interceptors is as follows: Interceptors registered via Smithy default plugins. (AWS Services only) Interceptors registered via AWS default plugins. Interceptors registered via service-customization plugins. Interceptors registered via client-level plugins. Interceptors registered via client-level configuration. Interceptors registered via operation-level plugins. Interceptors registered via operation-level configuration. What runtime plugins will be defined in smithy-rs? RetryStrategy: Configures how requests are retried. TraceProbes: Configures locations to which SDK metrics are published. EndpointProviders: Configures which hostname an SDK will call when making a request. HTTPClients: Configures how remote services are called. IdentityProviders: Configures how customers identify themselves to remote services. HTTPAuthSchemes & AuthSchemeResolvers: Configures how customers authenticate themselves to remote services. Checksum Algorithms: Configures how an SDK calculates request and response checksums.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » F.A.Q.","id":"460","title":"F.A.Q."},"461":{"body":"Create a new aws-smithy-runtime crate. Add orchestrator implementation Define the orchestrator/runtime plugin interface traits TraceProbe RequestSerializer ResponseDeserializer Connection RetryStrategy AuthOrchestrator EndpointOrchestrator Create a new aws-smithy-runtime-api crate. Add ConfigBag module Add retries module Add rate_limiting sub-module Add interceptors module Interceptor trait InterceptorContext impl Add runtime_plugins module Create a new integration test that ensures the orchestrator works.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Changes checklist","id":"461","title":"Changes checklist"},"462":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a breaking change to how generated clients automatically provide default values for collections. Currently the SDK generated fields for List generate optional values: ///

    Container for elements related to a particular part. pub fn parts(&self) -> Option<&[crate::types::Part]> { self.parts.as_deref() } This is almost never what users want and leads to code noise when using collections: async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project .ids() .unwrap_or_default(); // ^^^^^^^^^^^^^^^^^^ this is pure noise\n} This RFC proposes unwrapping into default values in our accessor methods.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » RFC: Collection Defaults","id":"462","title":"RFC: Collection Defaults"},"463":{"body":"Accessor : The Rust SDK defines accessor methods on modeled structures for fields to make them more convenient for users Struct field : The accessors point to concrete fields on the struct itself.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Terminology","id":"463","title":"Terminology"},"464":{"body":"In the current version of the SDK, users must call .unwrap_or_default() frequently. Once this RFC is implemented, users will be able to use these accessors directly. In the rare case where users need to distinguish be None and [], we will direct users towards model..is_some(). async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project.ids(); // Goodbye to this line: // .unwrap_or_default();\n}","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » The user experience if this RFC is implemented","id":"464","title":"The user experience if this RFC is implemented"},"465":{"body":"In order to implement this feature, we need update the code generate accessors for lists and maps to add .unwrap_or_default(). Because we are returning slices unwrap_or_default() does not produce any additional allocations for empty collection.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » How to actually implement this RFC","id":"465","title":"How to actually implement this RFC"},"466":{"body":"This works for lists because we are returning a slice (allowing a statically owned &[] to be returned.) If we want to support HashMaps in the future this is possible by using OnceCell to create empty HashMaps for requisite types. This would allow us to return references to those empty maps.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Could this be implemented for HashMap?","id":"466","title":"Could this be implemented for HashMap?"},"467":{"body":"No, many existing APIs don't have the default trait.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Isn't this handled by the default trait?","id":"467","title":"Isn't this handled by the default trait?"},"468":{"body":"Estimated total work: 2 days Update accessor method generation to auto flatten lists Update docs for accessors to guide users to .field.is_some() if they MUST determine if the field was set.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Changes checklist","id":"468","title":"Changes checklist"},"469":{"body":"Status: Accepted Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how we plan to refactor the SDK to allow the SDK to consume a 1.0 version of hyper, http-body, and http at a later date. Currently, hyper is 0.14.x and a 1.0 release candidate series is in progress. However, there are open questions that may significantly delay the launch of these three crates. We do not want to tie the 1.0 of the Rust SDK to these crates.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » RFC: Eliminating Public http dependencies","id":"469","title":"RFC: Eliminating Public http dependencies"},"47":{"body":"","breadcrumbs":"Smithy » Backwards Compatibility » New member added to structure","id":"47","title":"New member added to structure"},"470":{"body":"http-body : A crate (and trait) defining how HTTP bodies work. Notably, the change from 0.* to 1.0 changes http-body to operate on frames instead of having separate methods. http (crate): a low level crate of http primitives (no logic, just requests and responses) ossified dependency: An ossified dependency describes a dependency that, when a new version is released, cannot be utilized without breaking changes. For example, if the mutate_request function on every operation operates on &mut http::Request where http = 0.2, that dependency is \"ossified.\" Compare this to a function that offers the ability to convert something into an http = 0.2 request—since http=1 and http=0.2 are largely equivalent, the existence of this function does not prevent us from using http = 1 in the future. In general terms, functions that operate on references are much more likely to ossify —There is no practical way for someone to mutate an http = 0.2 request if you have an http = 1 request other than a time-consuming clone, and reconversion process.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Terminology","id":"470","title":"Terminology"},"471":{"body":"Performance : At some point in the Future, hyper = 1, http = 1 and http-body = 1 will be released. It takes ~1-2 microseconds to rebuild an HTTP request. If we assume that hyper = 1 will only operate on http = 1 requests, then if we can't use http = 1 requests internally, our only way of supporting hyper = 1 will be to convert the HTTP request at dispatch time. Besides pinning us to a potentially unsupported version of the HTTP crate, this will prevent us from directly dispatching requests in an efficient manner. With a total overhead of 20µs for the SDK, 1µs is not insignificant. Furthermore, it grows as the number of request headers grow. A benchmark should be run for a realistic HTTP request e.g. one that we send to S3. Hyper Upgrade : Hyper 1 is significantly more flexible than Hyper 0.14.x, especially WRT to connection management & pooling. If we don't make these changes, the upgrade to Hyper 1.x could be significantly more challenging. Security Fixes : If we're still on http = 0.* and a vulnerability is identified, we may end up needing to manually contribute the patch. The http crate is not trivial and contains parsing logic and optimized code (including a non-trivial amount of unsafe). See this GitHub issue . Notable is that one issue may be unsound and result in changing the public API. API Friendliness If we ship with an API that public exposes customers to http = 0.*, we have the API forever. We have to consider that we aren't shipping the Rust SDK for this month or even this year but probably the Rust SDK for the next 5-10 years. Future CRT Usage If we make this change, we enable a future where we can use the CRT HTTP request type natively without needing a last minute conversion to the CRT HTTP Request type. struct HttpRequest { inner: Inner\n} enum Inner { Httpv0(http_0::Request), Httpv1(http_1::Request), Crt(aws_crt_http::Request)\n}","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Why is this important?","id":"471","title":"Why is this important?"},"472":{"body":"Customers are impacted in 3 main locations: HTTP types in Interceptors HTTP types in customize(...) HTTP types in Connectors In all three of these cases, users would interact with our http wrapper types instead. In the current version of the SDK, we expose public dependencies on the http crate in several key places: The sigv4 crate. The sigv4 crate currently operates directly on many types from the http crate. This is unnecessary and actually makes the crate more difficult to use. Although http may be used internally, http will be removed from the public API of this crate. Interceptor Context: interceptors can mutate the HTTP request through an unshielded interface. This requires creating a wrapper layer around http::Request and updating already written interceptors. aws-config: http::Response and uri A long tail of exposed requests and responses in the runtime crates. Many of these crates will be removed post-orchestrator so this can be temporarily delayed.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » The user experience if this RFC is implemented","id":"472","title":"The user experience if this RFC is implemented"},"473":{"body":"","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » How to actually implement this RFC","id":"473","title":"How to actually implement this RFC"},"474":{"body":"One key mechanism that we SHOULD use for allowing our APIs to evolve in the future is usage of ~ version bounds for the runtime crates after releasing 1.0.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Enabling API evolution","id":"474","title":"Enabling API evolution"},"475":{"body":"In order to enable HTTP evolution, we will create a set of wrapper structures around http::Request and http::Response. These will use http = 0 internally. Since the HTTP crate itself is quite small, including private dependencies on both versions of the crate is a workable solution. In general, we will aim for an API that is close to drop-in compatible to the HTTP crate while ensuring that a different crate could be used as the backing storage. // since it's our type, we can default `SdkBody`\npub struct Request { // this uses the http = 0.2 request. In the future, we can make an internal enum to allow storing an http = 1 http_0: http::Request\n} Conversion to/from http::Request One key property here is that although converting to/from an http::Request can be expensive, this is not ossification of the API. This is because the API can support converting from/to both http = 0 and http = 1 in the future—because it offers mutation of the request via a unified interface, the request would only need to be converted once for dispatch if there was a mismatch (instead of repeatedly). At some point in the future, the http = 0 representation could be deprecated and removed or feature gated. Challenges Creating an HTTP API which is forwards compatible, idiomatic and \"truthful\" without relying on existing types from Hyper—e.g. when adding a header, we need to account for the possibility that a header is invalid. Allow for future forwards-compatible evolution in the API—A lot of thought went into the http crate API w.r.t method parameters, types, and generics. Although we can aim for a simpler solution in some cases (e.g. accepting &str instead of HeaderName), we need to be careful that we do so while allowing API evolution.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Http Request Wrapper","id":"475","title":"Http Request Wrapper"},"476":{"body":"The SigV4 crate signs a number of HTTP types directly. We should change it to accept strings, and when appropriate, iterators of strings for headers.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the SigV4 HTTP dependency","id":"476","title":"Removing the SigV4 HTTP dependency"},"477":{"body":"Generated clients currently include a public HTTP dependency in customize. This should be changed to accept our HTTP wrapper type instead or be restricted to a subset of operations (e.g. add_header) while forcing users to add an interceptor if they need full control.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the HTTP dependency from generated clients","id":"477","title":"Removing the HTTP dependency from generated clients"},"478":{"body":"Create the http::Request wrapper. Carefully audit for compatibility without breaking changes. 5 Days. Refactor currently written interceptors to use the wrapper: 2 days. Refactor the SigV4 crate to remove the HTTP dependency from the public interface: 2 days. Add / validate support for SdkBody http-body = 1.0rc.2 either in a PR or behind a feature gate. Test this to ensure it works with Hyper. Some previous work here exists: 1 week Remove http::Response and Uri from the public exposed types in aws-config: 1-4 days. Long tail of other usages: 1 week Implement ~ versions for SDK Crate => runtime crate dependencies: 1 week","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Changes checklist","id":"478","title":"Changes checklist"},"479":{"body":"Status: RFC Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the API of our wrapper types around http::Request and http::Response. For more information about why we are wrapping these types, see RFC 0036: The HTTP Dependency .","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » RFC: The HTTP Wrapper Type","id":"479","title":"RFC: The HTTP Wrapper Type"},"48":{"body":"Structures are marked #[non_exhaustive] Structures must be instantiated using builders Structures must not derive Default in the event that required fields are added in the future. In general, adding a new public member to a structure in Rust is not backwards compatible. However, by applying the #[non_exhaustive] to the structures generated by the Rust SDK, the Rust compiler will prevent users from using our structs in ways that prevent new fields from being added in the future. Note : in this context, the optionality of the fields is irrelevant. Specifically, #[non_exhaustive] prohibits the following patterns: Direct structure instantiation: # fn foo() {\nlet ip_addr = IpAddress { addr: \"192.168.1.1\" };\n# } If a new member is_local: boolean was added to the IpAddress structure, this code would not compile. To enable users to still construct our structures while maintaining backwards compatibility, all structures expose a builder, accessible at SomeStruct::Builder: # fn foo() {\nlet ip_addr = IpAddress::builder().addr(\"192.168.1.1\").build();\n# } Structure destructuring: # fn foo() {\nlet IpAddress { addr } = some_ip_addr();\n# } This will also fail to compile if a new member is added, however, by adding #[non_exhaustive], the .. multifield wildcard MUST be added to support new fields being added in the future: # fn foo() {\nlet IpAddress { addr, .. } = some_ip_addr();\n# }","breadcrumbs":"Smithy » Backwards Compatibility » Summary","id":"48","title":"Summary"},"480":{"body":"Extensions / \"Request Extensions\": The http crate Request/Response types include a typed property bag to store additional metadata along with the request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Terminology","id":"480","title":"Terminology"},"481":{"body":"In the current version of the SDK, external customers and internal code interacts directly with the http crate. Once this RFC is implemented, interactions at the public API level will occur with our own http types instead. Our types aim to be nearly drop-in-compatible for types in the http crate, however: We will not expose existing HTTP types in public APIs in ways that are ossified. When possible, we aim to simplify the APIs to make them easier to use. We will add SDK specific helper functionality when appropriate, e.g. first-level support for applying an endpoint to a request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » The user experience if this RFC is implemented","id":"481","title":"The user experience if this RFC is implemented"},"482":{"body":"We will need to add two types, HttpRequest and HttpResponse. To string or not to String Our header library restricts header names and values to Strings (UTF-8). Although the http library is very precise in its representation—it allows for HeaderValues that are both a super and subset of String—a superset because headers support arbitrary binary data but a subset because headers cannot contain control characters like \\n. Although technically allowed, headers containing arbitrary binary data are not widely supported. Generally, Smithy protocols will use base-64 encoding when storing binary data in headers. Finally, it's nicer for users if they can stay in \"string land\". Because of this, HttpRequest and Response expose header names and values as strings. Internally, the current design uses HeaderName and HeaderValue, however, there is a gate on construction that enforces that values are valid UTF-8. This is a one way door because .as_str() would panic in the future if we allow non-string values into headers. Where should these types live? These types will be used by all orchestrator functionality, so they will be housed in aws-smithy-runtime-api What's in and what's out? At the onset, these types focus on supporting the most ossified usages: &mut modification of HTTP types. They do not support construction of HTTP types, other than impl From and From. We will also make it possible to use http::HeaderName / http::HeaderValue in a zero-cost way. The AsHeaderComponent trait All header insertion methods accept impl AsHeaderComponent. This allows us to provide a nice user experience while taking advantage of zero-cost usage of 'static str. We will seal this trait to prevent external usage. We will have separate implementation for: &'static str String http02x::HeaderName Additional Functionality Our wrapper type will add the following additional functionality: Support for self.try_clone() Support for &mut self.apply_endpoint(...) Handling failure There is no stdlib type that cleanly defines what may be placed into headers—String is too broad (even if we restrict to ASCII). This RFC proposes moving fallibility to the APIs: impl HeadersMut<'_> { pub fn try_insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result, BoxError> { // ... }\n} This allows us to offer user-friendly types while still avoiding runtime panics. We also offer insert and append which panic on invalid values. Request Extensions There is ongoing work which MAY restrict HTTP extensions to clone types. We will preempt that by: Preventing Extensions from being present when initially constructing our HTTP request wrapper. Forbidding non-clone extensions from being inserted into the wrapped request. This also enables supporting request extensions for different downstream providers by allowing cloning into different extension types. Proposed Implementation Proposed Implementation of `request` /* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ //! Http Request Types use aws_smithy_types::body::SdkBody;\nuse http as http0;\nuse http::header::{InvalidHeaderName, InvalidHeaderValue};\nuse http::uri::InvalidUri;\nuse http0::header::Iter;\nuse http0::uri::PathAndQuery;\nuse http0::{Extensions, HeaderMap, Method};\nuse std::borrow::Cow;\nuse std::error::Error;\nuse std::fmt::{Debug, Display, Formatter};\nuse std::str::{FromStr, Utf8Error}; #[derive(Debug)]\n/// An HTTP Request Type\npub struct Request { body: B, uri: Uri, method: Method, extensions: Extensions, headers: Headers,\n} /// A Request URI\n#[derive(Debug, Clone)]\npub struct Uri { as_string: String, parsed: http0::Uri,\n} impl Uri { /// Sets `endpoint` as the endpoint for a URL. /// /// An `endpoint` MUST contain a scheme and authority. /// An `endpoint` MAY contain a port and path. /// /// An `endpoint` MUST NOT contain a query pub fn set_endpoint(&mut self, endpoint: &str) -> Result<(), HttpError> { let endpoint: http0::Uri = endpoint.parse().map_err(HttpError::invalid_uri)?; let endpoint = endpoint.into_parts(); let authority = endpoint .authority .ok_or_else(|| HttpError::new(\"endpoint must contain authority\"))?; let scheme = endpoint .scheme .ok_or_else(|| HttpError::new(\"endpoint must have scheme\"))?; let new_uri = http0::Uri::builder() .authority(authority) .scheme(scheme) .path_and_query(merge_paths(endpoint.path_and_query, &self.parsed).as_ref()) .build() .map_err(HttpError::new)?; self.as_string = new_uri.to_string(); self.parsed = new_uri; Ok(()) }\n} fn merge_paths(endpoint_path: Option, uri: &http0::Uri) -> Cow<'_, str> { let uri_path_and_query = uri.path_and_query().map(|pq| pq.as_str()).unwrap_or(\"\"); let endpoint_path = match endpoint_path { None => return Cow::Borrowed(uri_path_and_query), Some(path) => path, }; if let Some(query) = endpoint_path.query() { tracing::warn!(query = %query, \"query specified in endpoint will be ignored during endpoint resolution\"); } let endpoint_path = endpoint_path.path(); if endpoint_path.is_empty() { Cow::Borrowed(uri_path_and_query) } else { let ep_no_slash = endpoint_path.strip_suffix('/').unwrap_or(endpoint_path); let uri_path_no_slash = uri_path_and_query .strip_prefix('/') .unwrap_or(uri_path_and_query); Cow::Owned(format!(\"{}/{}\", ep_no_slash, uri_path_no_slash)) }\n} impl TryFrom for Uri { type Error = HttpError; fn try_from(value: String) -> Result { let parsed = value.parse().map_err(HttpError::invalid_uri)?; Ok(Uri { as_string: value, parsed, }) }\n} impl<'a> TryFrom<&'a str> for Uri { type Error = HttpError; fn try_from(value: &'a str) -> Result { Self::try_from(value.to_string()) }\n} impl From for Uri { fn from(value: http::Uri) -> Self { Self { as_string: value.to_string(), parsed: value, } }\n} impl TryInto> for Request { type Error = HttpError; fn try_into(self) -> Result, Self::Error> { self.into_http02x() }\n} impl Request { /// Converts this request into an http 0.x request. /// /// Depending on the internal storage type, this operation may be free or it may have an internal /// cost. pub fn into_http02x(self) -> Result, HttpError> { let mut req = http::Request::builder() .uri(self.uri.parsed) .method(self.method) .body(self.body) .expect(\"known valid\"); let mut headers = HeaderMap::new(); headers.extend( self.headers .headers .into_iter() .map(|(k, v)| (k, v.into_http02x())), ); *req.headers_mut() = headers; *req.extensions_mut() = self.extensions; Ok(req) } /// Update the body of this request to be a new body. pub fn map(self, f: impl Fn(B) -> U) -> Request { Request { body: f(self.body), uri: self.uri, method: self.method, extensions: self.extensions, headers: self.headers, } } /// Returns a GET request with no URI pub fn new(body: B) -> Self { Self { body, uri: Uri::from(http0::Uri::from_static(\"/\")), method: Method::GET, extensions: Default::default(), headers: Default::default(), } } /// Returns a reference to the header map pub fn headers(&self) -> &Headers { &self.headers } /// Returns a mutable reference to the header map pub fn headers_mut(&mut self) -> &mut Headers { &mut self.headers } /// Returns the body associated with the request pub fn body(&self) -> &B { &self.body } /// Returns a mutable reference to the body pub fn body_mut(&mut self) -> &mut B { &mut self.body } /// Returns the method associated with this request pub fn method(&self) -> &str { self.method.as_str() } /// Returns the URI associated with this request pub fn uri(&self) -> &str { &self.uri.as_string } /// Returns a mutable reference the the URI of this http::Request pub fn uri_mut(&mut self) -> &mut Uri { &mut self.uri } /// Sets the URI of this request pub fn set_uri(&mut self, uri: U) -> Result<(), U::Error> where U: TryInto, { let uri = uri.try_into()?; self.uri = uri; Ok(()) } /// Adds an extension to the request extensions pub fn add_extension(&mut self, extension: T) { self.extensions.insert(extension); }\n} impl Request { /// Attempts to clone this request /// /// If the body is cloneable, this will clone the request. Otherwise `None` will be returned pub fn try_clone(&self) -> Option { let body = self.body().try_clone()?; Some(Self { body, uri: self.uri.clone(), method: self.method.clone(), extensions: Extensions::new(), headers: self.headers.clone(), }) } /// Replaces this requests body with [`SdkBody::taken()`] pub fn take_body(&mut self) -> SdkBody { std::mem::replace(self.body_mut(), SdkBody::taken()) } /// Create a GET request to `/` with an empty body pub fn empty() -> Self { Self::new(SdkBody::empty()) } /// Creates a GET request to `uri` with an empty body pub fn get(uri: impl AsRef) -> Result { let mut req = Self::new(SdkBody::empty()); req.set_uri(uri.as_ref())?; Ok(req) }\n} impl TryFrom> for Request { type Error = HttpError; fn try_from(value: http::Request) -> Result { if let Some(e) = value .headers() .values() .filter_map(|value| std::str::from_utf8(value.as_bytes()).err()) .next() { Err(HttpError::header_was_not_a_string(e)) } else { let (parts, body) = value.into_parts(); let mut string_safe_headers: HeaderMap = Default::default(); string_safe_headers.extend( parts .headers .into_iter() .map(|(k, v)| (k, HeaderValue::from_http02x(v).expect(\"validated above\"))), ); Ok(Self { body, uri: parts.uri.into(), method: parts.method.clone(), extensions: parts.extensions, headers: Headers { headers: string_safe_headers, }, }) } }\n} /// An immutable view of request headers\n#[derive(Clone, Default, Debug)]\npub struct Headers { headers: HeaderMap,\n} impl<'a> IntoIterator for &'a Headers { type Item = (&'a str, &'a str); type IntoIter = HeadersIter<'a>; fn into_iter(self) -> Self::IntoIter { HeadersIter { inner: self.headers.iter(), } }\n} /// An Iterator over headers\npub struct HeadersIter<'a> { inner: Iter<'a, HeaderValue>,\n} impl<'a> Iterator for HeadersIter<'a> { type Item = (&'a str, &'a str); fn next(&mut self) -> Option { self.inner.next().map(|(k, v)| (k.as_str(), v.as_ref())) }\n} impl Headers { /// Create an empty header map pub fn new() -> Self { Self::default() } /// Returns the value for a given key /// /// If multiple values are associated, the first value is returned /// See [HeaderMap::get] pub fn get(&self, key: impl AsRef) -> Option<&str> { self.headers.get(key.as_ref()).map(|v| v.as_ref()) } /// Returns all values for a given key pub fn get_all(&self, key: impl AsRef) -> impl Iterator { self.headers .get_all(key.as_ref()) .iter() .map(|v| v.as_ref()) } /// Returns an iterator over the headers pub fn iter(&self) -> HeadersIter<'_> { HeadersIter { inner: self.headers.iter(), } } /// Returns the total number of **values** stored in the map pub fn len(&self) -> usize { self.headers.len() } /// Returns true if there are no headers pub fn is_empty(&self) -> bool { self.len() == 0 } /// Returns true if this header is present pub fn contains_key(&self, key: &str) -> bool { self.headers.contains_key(key) } /// Insert a value into the headers structure. /// /// This will *replace* any existing value for this key. Returns the previous associated value if any. /// /// # Panics /// If the key or value are not valid ascii, this function will panic. pub fn insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Option { self.try_insert(key, value) .expect(\"HeaderName or HeaderValue was invalid\") } /// Insert a value into the headers structure. /// /// This will *replace* any existing value for this key. Returns the previous associated value if any. /// /// If the key or value are not valid ascii, an error is returned pub fn try_insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result, HttpError> { let key = header_name(key)?; let value = header_value(value.into_maybe_static()?)?; Ok(self .headers .insert(key, value) .map(|old_value| old_value.into())) } /// Appends a value to a given key /// /// If the key or value are NOT valid ascii, an error is returned pub fn try_append( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result { let key = header_name(key.into_maybe_static()?)?; let value = header_value(value.into_maybe_static()?)?; Ok(self.headers.append(key, value)) } /// Removes all headers with a given key /// /// If there are multiple entries for this key, the first entry is returned pub fn remove(&mut self, key: impl AsRef) -> Option { self.headers .remove(key.as_ref()) .map(|h| h.as_str().to_string()) } /// Appends a value to a given key /// /// # Panics /// If the key or value are NOT valid ascii, this function will panic pub fn append(&mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent) -> bool { self.try_append(key, value) .expect(\"HeaderName or HeaderValue was invalid\") }\n} use sealed::AsHeaderComponent; mod sealed { use super::*; /// Trait defining things that may be converted into a header component (name or value) pub trait AsHeaderComponent { /// If the component can be represented as a Cow<'static, str>, return it fn into_maybe_static(self) -> Result; /// Return a string reference to this header fn as_str(&self) -> Result<&str, HttpError>; /// If a component is already internally represented as a `http02x::HeaderName`, return it fn repr_as_http02x_header_name(self) -> Result where Self: Sized, { Err(self) } } impl AsHeaderComponent for &'static str { fn into_maybe_static(self) -> Result { Ok(Cow::Borrowed(self)) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self) } } impl AsHeaderComponent for String { fn into_maybe_static(self) -> Result { Ok(Cow::Owned(self)) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self) } } impl AsHeaderComponent for Cow<'static, str> { fn into_maybe_static(self) -> Result { Ok(self) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self.as_ref()) } } impl AsHeaderComponent for http0::HeaderValue { fn into_maybe_static(self) -> Result { Ok(Cow::Owned( std::str::from_utf8(self.as_bytes()) .map_err(HttpError::header_was_not_a_string)? .to_string(), )) } fn as_str(&self) -> Result<&str, HttpError> { std::str::from_utf8(self.as_bytes()).map_err(HttpError::header_was_not_a_string) } } impl AsHeaderComponent for http0::HeaderName { fn into_maybe_static(self) -> Result { Ok(self.to_string().into()) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self.as_ref()) } fn repr_as_http02x_header_name(self) -> Result where Self: Sized, { Ok(self) } }\n} mod header_value { use super::http0; use std::str::Utf8Error; /// HeaderValue type /// /// **Note**: Unlike `HeaderValue` in `http`, this only supports UTF-8 header values #[derive(Debug, Clone)] pub struct HeaderValue { _private: http0::HeaderValue, } impl HeaderValue { pub(crate) fn from_http02x(value: http0::HeaderValue) -> Result { let _ = std::str::from_utf8(value.as_bytes())?; Ok(Self { _private: value }) } pub(crate) fn into_http02x(self) -> http0::HeaderValue { self._private } } impl AsRef for HeaderValue { fn as_ref(&self) -> &str { std::str::from_utf8(self._private.as_bytes()) .expect(\"unreachable—only strings may be stored\") } } impl From for String { fn from(value: HeaderValue) -> Self { value.as_ref().to_string() } }\n} use crate::box_error::BoxError;\npub use header_value::HeaderValue; impl HeaderValue { /// Returns the string representation of this header value pub fn as_str(&self) -> &str { self.as_ref() }\n} impl FromStr for HeaderValue { type Err = HttpError; fn from_str(s: &str) -> Result { HeaderValue::try_from(s.to_string()) }\n} impl TryFrom for HeaderValue { type Error = HttpError; fn try_from(value: String) -> Result { Ok(HeaderValue::from_http02x( http0::HeaderValue::try_from(value).map_err(HttpError::invalid_header_value)?, ) .expect(\"input was a string\")) }\n} type MaybeStatic = Cow<'static, str>; #[derive(Debug)]\n/// An error occurred constructing an Http Request.\n///\n/// This is normally due to configuration issues, internal SDK bugs, or other user error.\npub struct HttpError(BoxError); impl HttpError { // TODO(httpRefactor): Add better error internals fn new>>(err: E) -> Self { HttpError(err.into()) } fn invalid_header_value(err: InvalidHeaderValue) -> Self { Self(err.into()) } fn header_was_not_a_string(err: Utf8Error) -> Self { Self(err.into()) } fn invalid_header_name(err: InvalidHeaderName) -> Self { Self(err.into()) } fn invalid_uri(err: InvalidUri) -> Self { Self(err.into()) }\n} impl Display for HttpError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { write!(f, \"an error occurred creating an HTTP Request\") }\n} impl Error for HttpError { fn source(&self) -> Option<&(dyn Error + 'static)> { Some(self.0.as_ref()) }\n} fn header_name(name: impl AsHeaderComponent) -> Result { name.repr_as_http02x_header_name().or_else(|name| { name.into_maybe_static().and_then(|cow| { if cow.chars().any(|c| c.is_uppercase()) { return Err(HttpError::new(\"Header names must be all lower case\")); } match cow { Cow::Borrowed(staticc) => Ok(http0::HeaderName::from_static(staticc)), Cow::Owned(s) => { http0::HeaderName::try_from(s).map_err(HttpError::invalid_header_name) } } }) })\n} fn header_value(value: MaybeStatic) -> Result { let header = match value { Cow::Borrowed(b) => http0::HeaderValue::from_static(b), Cow::Owned(s) => { http0::HeaderValue::try_from(s).map_err(HttpError::invalid_header_value)? } }; HeaderValue::from_http02x(header).map_err(HttpError::new)\n} #[cfg(test)]\nmod test { use crate::client::orchestrator::HttpRequest; use aws_smithy_types::body::SdkBody; use http::header::{AUTHORIZATION, CONTENT_LENGTH}; use http::{HeaderValue, Uri}; #[test] fn headers_can_be_any_string() { let _: HeaderValue = \"😹\".parse().expect(\"can be any string\"); let _: HeaderValue = \"abcd\".parse().expect(\"can be any string\"); let _ = \"a\\nb\" .parse::() .expect_err(\"cannot contain control characters\"); } #[test] fn non_ascii_requests() { let request = http::Request::builder() .header(\"k\", \"😹\") .body(SdkBody::empty()) .unwrap(); let request: HttpRequest = request .try_into() .expect(\"failed to convert a non-string header\"); assert_eq!(request.headers().get(\"k\"), Some(\"😹\")) } #[test] fn request_can_be_created() { let req = http::Request::builder() .uri(\"http://foo.com\") .body(SdkBody::from(\"hello\")) .unwrap(); let mut req = super::Request::try_from(req).unwrap(); req.headers_mut().insert(\"a\", \"b\"); assert_eq!(req.headers().get(\"a\").unwrap(), \"b\"); req.headers_mut().append(\"a\", \"c\"); assert_eq!(req.headers().get(\"a\").unwrap(), \"b\"); let http0 = req.into_http02x().unwrap(); assert_eq!(http0.uri(), \"http://foo.com\"); } #[test] fn uri_mutations() { let req = http::Request::builder() .uri(\"http://foo.com\") .body(SdkBody::from(\"hello\")) .unwrap(); let mut req = super::Request::try_from(req).unwrap(); assert_eq!(req.uri(), \"http://foo.com/\"); req.set_uri(\"http://bar.com\").unwrap(); assert_eq!(req.uri(), \"http://bar.com\"); let http0 = req.into_http02x().unwrap(); assert_eq!(http0.uri(), \"http://bar.com\"); } #[test] #[should_panic] fn header_panics() { let req = http::Request::builder() .uri(\"http://foo.com\") .body(SdkBody::from(\"hello\")) .unwrap(); let mut req = super::Request::try_from(req).unwrap(); let _ = req .headers_mut() .try_insert(\"a\\nb\", \"a\\nb\") .expect_err(\"invalid header\"); let _ = req.headers_mut().insert(\"a\\nb\", \"a\\nb\"); } #[test] fn try_clone_clones_all_data() { let request = ::http::Request::builder() .uri(Uri::from_static(\"https://www.amazon.com\")) .method(\"POST\") .header(CONTENT_LENGTH, 456) .header(AUTHORIZATION, \"Token: hello\") .body(SdkBody::from(\"hello world!\")) .expect(\"valid request\"); let request: super::Request = request.try_into().unwrap(); let cloned = request.try_clone().expect(\"request is cloneable\"); assert_eq!(\"https://www.amazon.com/\", cloned.uri()); assert_eq!(\"POST\", cloned.method()); assert_eq!(2, cloned.headers().len()); assert_eq!(\"Token: hello\", cloned.headers().get(AUTHORIZATION).unwrap(),); assert_eq!(\"456\", cloned.headers().get(CONTENT_LENGTH).unwrap()); assert_eq!(\"hello world!\".as_bytes(), cloned.body().bytes().unwrap()); }\n}","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » How to actually implement this RFC","id":"482","title":"How to actually implement this RFC"},"483":{"body":"Currently, the only way to construct Request is from a compatible type (e.g. http02x::Request)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Future Work","id":"483","title":"Future Work"},"484":{"body":"Implement initial implementation and test it against the SDK as written Add test suite of HTTP wrapper External design review Update the SigV4 crate to remove http API dependency Update the SDK to use the new type (breaking change)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Changes checklist","id":"484","title":"Changes checklist"},"485":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the user experience and implementation of user-configurable retry classification. Custom retry classifiers enable users to change what responses are retried while still allowing them to rely on defaults set by SDK authors when desired.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » RFC: User-configurable retry classification","id":"485","title":"RFC: User-configurable retry classification"},"486":{"body":"Smithy Service : An HTTP service, whose API is modeled with the Smithy IDL . Smithy Client : An HTTP client generated by smithy-rs from a .smithy model file. AWS SDK : A smithy client that's specifically configured to work with an AWS service. Operation : A modeled interaction with a service, defining the proper input and expected output shapes, as well as important metadata related to request construction. \"Sending\" an operation implies sending one or more HTTP requests to a Smithy service , and then receiving an output or error in response. Orchestrator : The client code which manages the request/response pipeline. The orchestrator is responsible for: Constructing, serializing, and sending requests. Receiving, deserializing, and (optionally) retrying requests. Running interceptors (not covered in this RFC) and handling errors. Runtime Component : A part of the orchestrator responsible for a specific function. Runtime components are used by the orchestrator itself, may depend on specific configuration, and must not be changed by interceptors. Examples include the endpoint resolver, retry strategy, and request signer. Runtime Plugin : Code responsible for setting and runtime components and related configuration. Runtime plugins defined by codegen are responsible for setting default configuration and altering the behavior of Smithy clients including the AWS SDKs .","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Terminology","id":"486","title":"Terminology"},"487":{"body":"A Retry Strategy is the process by which the orchestrator determines when and how to retry failed requests. Only one retry strategy may be set at any given time. During its operation, the retry strategy relies on a series of Retry Classifiers to determine if and how a failed request should be retried. Retry classifiers each have a Retry Classifier Priority so that regardless of whether they are set during config or operation construction, they'll always run in a consistent order. Classifiers are each run in turn by the retry strategy: pub fn run_classifiers_on_ctx( classifiers: impl Iterator, ctx: &InterceptorContext,\n) -> RetryAction { // By default, don't retry let mut result = RetryAction::NoActionIndicated; for classifier in classifiers { let new_result = classifier.classify_retry(ctx); // If the result is `NoActionIndicated`, continue to the next classifier // without overriding any previously-set result. if new_result == RetryAction::NoActionIndicated { continue; } // Otherwise, set the result to the new result. tracing::trace!( \"Classifier '{}' set the result of classification to '{}'\", classifier.name(), new_result ); result = new_result; // If the result is `RetryForbidden`, stop running classifiers. if result == RetryAction::RetryForbidden { tracing::trace!(\"retry classification ending early because a `RetryAction::RetryForbidden` was emitted\",); break; } } result\n} NOTE: User-defined retry strategies are responsible for calling run_classifiers_on_ctx. Lower-priority classifiers run first, but the retry actions they return may be overridden by higher-priority classifiers. Classification stops immediately if any classifier returns RetryAction::RetryForbidden.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How the orchestrator should model retries","id":"487","title":"How the orchestrator should model retries"},"488":{"body":"In the current version of the SDK, users are unable to configure retry classification, except by defining a custom retry strategy. Once this RFC is implemented, users will be able to define and set their own classifiers.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The user experience if this RFC is implemented","id":"488","title":"The user experience if this RFC is implemented"},"489":{"body":"#[derive(Debug)]\nstruct CustomRetryClassifier; impl ClassifyRetry for CustomRetryClassifier { fn classify_retry( &self, ctx: &InterceptorContext, ) -> Option { // Check for a result let output_or_error = ctx.output_or_error(); // Check for an error let error = match output_or_error { // Typically, when the response is OK or unset // then `RetryAction::NoActionIndicated` is returned. Some(Ok(_)) | None => return RetryAction::NoActionIndicated, Some(Err(err)) => err, }; todo!(\"inspect the error to determine if a retry attempt should be made.\") } fn name(&self) -> &'static str { \"my custom retry classifier\" } fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n} Choosing a retry classifier priority Sticking with the default priority is often the best choice. Classifiers should restrict the number of cases they can handle in order to avoid having to compete with other classifiers. When two classifiers would classify a response in two different ways, the priority system gives us the ability to decide which classifier should be respected. Internally, priority is implemented with a simple numeric system. In order to give the smithy-rs team the flexibility to make future changes, this numeric system is private and inaccessible to users. Instead, users may set the priority of classifiers relative to one another with the with_lower_priority_than and with_higher_priority_than methods: impl RetryClassifierPriority { /// Create a new `RetryClassifierPriority` with lower priority than the given priority. pub fn with_lower_priority_than(other: Self) -> Self { ... } /// Create a new `RetryClassifierPriority` with higher priority than the given priority. pub fn with_higher_priority_than(other: Self) -> Self { ... }\n} For example, if it was important for our CustomRetryClassifier in the previous example to run before the default HttpStatusCodeClassifier, a user would define the CustomRetryClassifier priority like this: impl ClassifyRetry for CustomRetryClassifier { fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::run_before(RetryClassifierPriority::http_status_code_classifier()) }\n} The priorities of the three default retry classifiers (HttpStatusCodeClassifier, ModeledAsRetryableClassifier, and TransientErrorClassifier) are all public for this purpose. Users may ONLY set a retry priority relative to an existing retry priority. RetryAction and RetryReason Retry classifiers communicate to the retry strategy by emitting RetryActions: /// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug, Default)]\npub enum RetryAction { /// When a classifier can't run or has no opinion, this action is returned. /// /// For example, if a classifier requires a parsed response and response parsing failed, /// this action is returned. If all classifiers return this action, no retry should be /// attempted. #[default] NoActionIndicated, /// When a classifier runs and thinks a response should be retried, this action is returned. RetryIndicated(RetryReason), /// When a classifier runs and decides a response must not be retried, this action is returned. /// /// This action stops retry classification immediately, skipping any following classifiers. RetryForbidden,\n} When a retry is indicated by a classifier, the action will contain a RetryReason: /// The reason for a retry.\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryReason { /// When an error is received that should be retried, this reason is returned. RetryableError { /// The kind of error. kind: ErrorKind, /// A server may tell us to retry only after a specific time has elapsed. retry_after: Option, },\n} NOTE: RetryReason currently only has a single variant, but it's defined as an enum for forward compatibility purposes. RetryAction's impl defines several convenience methods: impl RetryAction { /// Create a new `RetryAction` indicating that a retry is necessary. pub fn retryable_error(kind: ErrorKind) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: None, }) } /// Create a new `RetryAction` indicating that a retry is necessary after an explicit delay. pub fn retryable_error_with_explicit_delay(kind: ErrorKind, retry_after: Duration) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: Some(retry_after), }) } /// Create a new `RetryAction` indicating that a retry is necessary because of a transient error. pub fn transient_error() -> Self { Self::retryable_error(ErrorKind::TransientError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a throttling error. pub fn throttling_error() -> Self { Self::retryable_error(ErrorKind::ThrottlingError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a server error. pub fn server_error() -> Self { Self::retryable_error(ErrorKind::ServerError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a client error. pub fn client_error() -> Self { Self::retryable_error(ErrorKind::ClientError) }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Defining a custom classifier","id":"489","title":"Defining a custom classifier"},"49":{"body":"Adding a required member to a structure is not considered backwards compatible. When a required member is added to a structure: The builder will change to become fallible, meaning that instead of returning T it will return Result. Previous builder invocations that did not set the new field will still stop compiling if this was the first required field. Previous builder invocations will now return a BuildError because the required field is unset.","breadcrumbs":"Smithy » Backwards Compatibility » Validation & Required Members","id":"49","title":"Validation & Required Members"},"490":{"body":"The interface for setting classifiers is very similar to the interface of settings interceptors: // All service configs support these setters. Operations support a nearly identical API.\nimpl ServiceConfigBuilder { /// Add type implementing ClassifyRetry that will be used by the RetryStrategy /// to determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn retry_classifier(mut self, retry_classifier: impl ClassifyRetry + 'static) -> Self { self.push_retry_classifier(SharedRetryClassifier::new(retry_classifier)); self } /// Add a SharedRetryClassifier that will be used by the RetryStrategy to /// determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn push_retry_classifier(&mut self, retry_classifier: SharedRetryClassifier) -> &mut Self { self.runtime_components.push_retry_classifier(retry_classifier); self } /// Set SharedRetryClassifiers for the builder, replacing any that were /// previously set. pub fn set_retry_classifiers(&mut self, retry_classifiers: impl IntoIterator) -> &mut Self { self.runtime_components.set_retry_classifiers(retry_classifiers.into_iter()); self }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Setting classifiers","id":"490","title":"Setting classifiers"},"491":{"body":"Smithy clients have three classifiers enabled by default: ModeledAsRetryableClassifier: Checks for errors that are marked as retryable in the smithy model. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. TransientErrorClassifier: Checks for timeout, IO, and connector errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. HttpStatusCodeClassifier: Checks the HTTP response's status code. By default, this classifies 500, 502, 503, and 504 errors as RetryAction::RetryIndicated. The list of retryable status codes may be customized when creating this classifier with the HttpStatusCodeClassifier::new_from_codes method. AWS clients enable the three smithy classifiers as well as one more by default: AwsErrorCodeClassifier: Checks for errors with AWS error codes marking them as either transient or throttling errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. This classifier will also check the HTTP response for an x-amz-retry-after header. If one is set, then the returned RetryAction will include the explicit delay. The priority order of these classifiers is as follows: (highest priority) TransientErrorClassifier ModeledAsRetryableClassifier AwsErrorCodeClassifier (lowest priority) HttpStatusCodeClassifier The priority order of the default classifiers is not configurable. However, it's possible to wrap a default classifier in a newtype and set your desired priority when implementing the ClassifyRetry trait, delegating the classify_retry and name fields to the inner classifier. Disable default classifiers Disabling the default classifiers is possible, but not easy. They are set at different points during config and operation construction, and must be unset at each of those places. A far simpler solution is to implement your own classifier that has the highest priority. Still, if completely removing the other classifiers is desired, use the set_retry_classifiers method on the config to replace the config-level defaults and then set a config override on the operation that does the same.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Default classifiers","id":"491","title":"Default classifiers"},"492":{"body":"In order to implement this feature, we must: Update the current retry classification system so that individual classifiers as well as collections of classifiers can be easily composed together. Create two new configuration mechanisms for users that allow them to customize retry classification at the service level and at the operation level. Update retry classifiers so that they may 'short-circuit' the chain, ending retry classification immediately.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How to actually implement this RFC","id":"492","title":"How to actually implement this RFC"},"493":{"body":"/// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryAction { /// When an error is received that should be retried, this action is returned. Retry(ErrorKind), /// When the server tells us to retry after a specific time has elapsed, this action is returned. RetryAfter(Duration), /// When a response should not be retried, this action is returned. NoRetry,\n} /// Classifies what kind of retry is needed for a given [`InterceptorContext`].\npub trait ClassifyRetry: Send + Sync + fmt::Debug { /// Run this classifier on the [`InterceptorContext`] to determine if the previous request /// should be retried. If the classifier makes a decision, `Some(RetryAction)` is returned. /// Classifiers may also return `None`, signifying that they have no opinion of whether or /// not a request should be retried. fn classify_retry( &self, ctx: &InterceptorContext, preceding_action: Option, ) -> Option; /// The name of this retry classifier. /// /// Used for debugging purposes. fn name(&self) -> &'static str; /// The priority of this retry classifier. Classifiers with a higher priority will run before /// classifiers with a lower priority. Classifiers with equal priorities make no guarantees /// about which will run first. fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The RetryClassifier trait","id":"493","title":"The RetryClassifier trait"},"494":{"body":"Because each classifier has a defined priority, and because RetryClassifierPriority implements PartialOrd and Ord, the standard library's sort method may be used to correctly arrange classifiers. The RuntimeComponents struct is responsible for storing classifiers, so it's also responsible for sorting them whenever a new classifier is added. Thus, when a retry strategy fetches the list of classifiers, they'll already be in the expected order.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Resolving the correct order of multiple retry classifiers","id":"494","title":"Resolving the correct order of multiple retry classifiers"},"495":{"body":"Q: Should retry classifiers be fallible? A: I think no, because of the added complexity. If we make them fallible then we'll have to decide what happens when classifiers fail. Do we skip them or does classification end? The retry strategy is responsible for calling the classifiers, so it be responsible for deciding how to handle a classifier error. I don't foresee a use case where an error returned by a classifier would be interpreted either by classifiers following the failed classifier or the retry strategy.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Questions and answers","id":"495","title":"Questions and answers"},"496":{"body":"Add retry classifiers field and setters to RuntimeComponents and RuntimeComponentsBuilder. Add unit tests ensuring that classifier priority is respected by RuntimeComponents::retry_classifiers, especially when multiple layers of config are in play. Add codegen customization allowing users to set retry classifiers on service configs. Add codegen for setting default classifiers at the service level. Add integration tests for setting classifiers at the service level. Add codegen for settings default classifiers that require knowledge of operation error types at the operation level. Add integration tests for setting classifiers at the operation level. Implement retry classifier priority. Add unit tests for retry classifier priority. Update existing tests that would fail for lack of a retry classifier.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Changes checklist","id":"496","title":"Changes checklist"},"497":{"body":"This is a collection of written resources for smithy-rs and SDK contributors. Writing and debugging a low-level feature that relies on HTTP","breadcrumbs":"Contributing » Contributing","id":"497","title":"Contributing"},"498":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Writing and debugging a low-level feature that relies on HTTP","id":"498","title":"Writing and debugging a low-level feature that relies on HTTP"},"499":{"body":"This article came about as a result of all the difficulties I encountered while developing the request checksums feature laid out in the internal-only Flexible Checksums spec (the feature is also highlighted in this public blog post .) I spent much more time developing the feature than I had anticipated. In this article, I'll talk about: How the SDK sends requests with a body How the SDK sends requests with a streaming body The various issues I encountered and how I addressed them Key takeaways for contributors developing similar low-level features","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Background","id":"499","title":"Background"},"5":{"body":"Unless you know better ones! These are our tenets today, but we'd love your thoughts. Do you wish we had different priorities? Let us know by opening and issue or starting a discussion. Batteries included, but replaceable. The AWS SDK for Rust should provide a best-in-class experience for many use cases, but , customers will use the SDK in unique and unexpected ways. Meet customers where they are; strive to be compatible with their tools. Provide mechanisms to allow customers make different choices. Make common problems easy to solve. The AWS SDK for Rust should make common problems solvable. Guide customers to patterns that set them up for long-term success. Design for the Future. The AWS SDK for Rust should evolve with AWS without breaking existing customers. APIs will evolve in unpredictable directions, new protocols will gain adoption, and new services will be created that we never could have imagined. Don’t simplify or unify code today that prevents evolution tomorrow.","breadcrumbs":"Tenets » Rust SDK Design Tenets","id":"5","title":"Rust SDK Design Tenets"},"50":{"body":"Similar to structures, #[non_exhaustive] also applies to unions. In order to allow new union variants to be added in the future, all unions (enum in Rust) generated by the Rust SDK must be marked with #[non_exhaustive]. Note : because new fields cannot be added to union variants, the union variants themselves do not need to be #[non_exhaustive]. To support new variants from services, each union contains an Unknown variant. By marking Unknown as non_exhaustive, we prevent customers from instantiating it directly. #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { B(aws_smithy_types::Blob), Bool(bool), Bs(std::vec::Vec), L(std::vec::Vec), M(std::collections::HashMap), N(std::string::String), Ns(std::vec::Vec), Null(bool), S(std::string::String), Ss(std::vec::Vec), // By marking `Unknown` as non_exhaustive, we prevent client code from instantiating it directly. #[non_exhaustive] Unknown,\n}","breadcrumbs":"Smithy » Backwards Compatibility » New union variant added","id":"50","title":"New union variant added"},"500":{"body":"All interactions between the SDK and a service are modeled as \"operations\" . Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler Users create operations piecemeal with a fluent builder. The options set in the builder are then used to create the inner HTTP request, becoming headers or triggering specific request-building functionality (In this case, calculating a checksum and attaching it either as a header or a trailer.) Here's an example from the QLDB SDK of creating a body from inputs and inserting it into the request to be sent: let body = aws_smithy_http::body::SdkBody::from( crate::operation_ser::serialize_operation_crate_operation_send_command(&self)?,\n); if let Some(content_length) = body.content_length() { request = aws_smithy_http::header::set_request_header_if_absent( request, http::header::CONTENT_LENGTH, content_length, );\n}\nlet request = request.body(body).expect(\"should be valid request\"); Most all request body creation in the SDKs looks like that. Note how it automatically sets the Content-Length header whenever the size of the body is known; It'll be relevant later. The body is read into memory and can be inspected before the request is sent. This allows for things like calculating a checksum and then inserting it into the request as a header.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a body","id":"500","title":"How the SDK sends requests with a body"},"501":{"body":"Often, sending a request with a streaming body looks much the same. However, it's not possible to read a streaming body until you've sent the request. Any metadata that needs to be calculated by inspecting the body must be sent as trailers. Additionally, some metadata, like Content-Length, can't be sent as a trailer at all. MDN maintains a helpful list of metadata that can only be sent as a header. // When trailers are set, we must send an AWS-specific header that lists them named `x-amz-trailer`.\n// For example, when sending a SHA256 checksum as a trailer,\n// we have to send an `x-amz-trailer` header telling the service to watch out for it:\nrequest .headers_mut() .insert( http::header::HeaderName::from_static(\"x-amz-trailer\"), http::header::HeaderValue::from_static(\"x-amz-checksum-sha256\"), );","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a streaming body","id":"501","title":"How the SDK sends requests with a streaming body"},"502":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » The issues I encountered while implementing checksums for streaming request bodies","id":"502","title":"The issues I encountered while implementing checksums for streaming request bodies"},"503":{"body":"When sending a request body with trailers, we must use an AWS-specific content encoding called aws-chunked. To encode a request body for aws-chunked requires us to know the length of each chunk we're going to send before we send it. We have to prefix each chunk with its size in bytes, represented by one or more hexadecimal digits. To close the body, we send a final chunk with a zero. For example, the body \"Hello world\" would look like this when encoded: B\\r\\n\nHello world\\r\\n\n0\\r\\n When sending a request body encoded in this way, we need to set two length headers: Content-Length is the length of the entire request body, including the chunk size prefix and zero terminator. In the example above, this would be 19. x-amz-decoded-content-length is the length of the decoded request body. In the example above, this would be 11. NOTE: Content-Encoding is distinct from Transfer-Encoding . It's possible to construct a request with both Content-Encoding: chunked AND Transfer-Encoding: chunked, although we don't ever need to do that for SDK requests.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Content-Encoding: aws-chunked","id":"503","title":"Content-Encoding: aws-chunked"},"504":{"body":"S3 does not require you to send a Content-Length header if you set the Transfer-Encoding: chunked header. That's very helpful because it's not always possible to know the total length of a stream of bytes if that's what you're constructing your request body from. However, when sending trailers, this part of the spec can be misleading. When sending a streaming request, we must send metadata like checksums as trailers To send a request body with trailers, we must set the Content-Encoding: aws-chunked header When using aws-chunked encoding for a request body, we must set the x-amz-decoded-content-length header with the pre-encoding length of the request body. This means that we can't actually avoid having to know and specify the length of the request body when sending a request to S3. This turns out to not be much of a problem for common use of the SDKs because most streaming request bodies are constructed from files. In these cases we can ask the operating system for the file size before sending the request. So long as that size doesn't change during sending of the request, all is well. In any other case, the request will fail.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » S3 requires a Content-Length unless you also set Transfer-Encoding: chunked","id":"504","title":"S3 requires a Content-Length unless you also set Transfer-Encoding: chunked"},"505":{"body":"Headers don't count towards the size of a request body, but trailers do. That means we need to take trailers (which aren't sent until after the body) into account when setting the Content-Length header (which are sent before the body.) This means that without setting Transfer-Encoding: chunked, the SDKs only support trailers of known length. In the case of checksums, we're lucky because they're always going to be the same size. We must also take into account the fact that checksum values are base64 encoded before being set (this lengthens them.)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Adding trailers to a request changes the size of that request","id":"505","title":"Adding trailers to a request changes the size of that request"},"506":{"body":"This was a big source of confusion for me, and I only figured out what was happening with the help of @seanmonstar . When using aws-chunked encoding, the trailers have to be appended to the body as part of poll_data instead of relying on the poll_trailers method. The working http_body::Body implementation of an aws-chunked encoded body looked like this: impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); if *this.already_wrote_trailers { return Poll::Ready(None); } if *this.already_wrote_chunk_terminator { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.already_wrote_trailers = true; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().sum(); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(err) => Poll::Ready(Some(err)), }; }; match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let bytes = if *this.already_wrote_chunk_size_prefix { data.copy_to_bytes(data.len()) } else { // A chunk must be prefixed by chunk size in hexadecimal *this.already_wrote_chunk_size_prefix = true; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); prefix_with_total_chunk_size(data, total_chunk_size) }; Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => { *this.already_wrote_chunk_terminator = true; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // When using aws-chunked content encoding, trailers have to be appended to the body Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.already_wrote_trailers } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked","id":"506","title":"hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked"},"507":{"body":"In my early implementation of http_body::Body for an aws-chunked encoded body, the body wasn't being completely read out. The problem turned out to be that I was delegating to the is_end_stream trait method of the inner body. Because the innermost body had no knowledge of the trailers I needed to send, it was reporting that the stream had ended. The fix was to instead rely on the outermost body's knowledge of its own state in order to determine if all data had been read.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » \"The stream is closing early, and I don't know why\"","id":"507","title":"\"The stream is closing early, and I don't know why\""},"508":{"body":"Reaching out to others that had specific knowledge of a problem: Talking to a developer that had tackled this feature for another SDK was a big help. Special thanks is due to @jasdel and the Go v2 SDK team. Their implementation of an aws-chunked encoded body was the basis for my own implementation. Avoiding codegen : The process of updating codegen code and then running codegen for each new change you make is slow compared to running codegen once at the beginning of development and then just manually editing the generated SDK as necessary. I still needed to run ./gradlew :aws:sdk:relocateAwsRuntime :aws:sdk:relocateRuntime whenever I made changes to a runtime crate but that was quick because it's just copying the files. Keep as much code out of codegen as possible. It's much easier to modify/debug Rust than it is to write a working codegen module that does the same thing. Whenever possible, write the codegen modules later, once the design has settled. Using the Display impl for errors: The Display impl for an error can ofter contain helpful info that might not be visible when printing with the Debug impl. Case in point was an error I was getting because of the is_end_stream issue. When Debug printed, the error looked like this: DispatchFailure(ConnectorError { err: hyper::Error(User(Body), hyper::Error(BodyWriteAborted)), kind: User }) That wasn't too helpful for me on its own. I looked into the hyper source code and found that the Display impl contained a helpful message, so I matched into the error and printed the hyper::Error with the Display impl: user body write aborted: early end, expected 2 more bytes' This helped me understand that I wasn't encoding things correctly and was missing a CRLF. Echo Server : I first used netcat and then later a small echo server written in Rust to see the raw HTTP request being sent out by the SDK as I was working on it. The Rust SDK supports setting endpoints for request. This is often used to send requests to something like LocalStack , but I used it to send request to localhost instead: #[tokio::test]\nasync fn test_checksum_on_streaming_request_against_s3() { let sdk_config = aws_config::from_env() .endpoint_resolver(Endpoint::immutable(\"http://localhost:8080\".parse().expect(\"valid URI\"))) .load().await; let s3_client = aws_sdk_s3::Client::new(&sdk_config); let input_text = b\"Hello world\"; let _res = s3_client .put_object() .bucket(\"some-real-bucket\") .key(\"test.txt\") .body(aws_sdk_s3::types::ByteStream::from_static(input_text)) .checksum_algorithm(ChecksumAlgorithm::Sha256) .send() .await .unwrap();\n} The echo server was based off of an axum example and looked like this: use axum::{ body::{Body, Bytes}, http::{request::Parts, Request, StatusCode}, middleware::{self, Next}, response::IntoResponse, routing::put, Router,\n};\nuse std::net::SocketAddr;\nuse tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; #[tokio::main]\nasync fn main() { tracing_subscriber::registry().with(tracing_subscriber::EnvFilter::new( std::env::var(\"RUST_LOG\").unwrap_or_else(|_| \"trace\".into()), )) .with(tracing_subscriber::fmt::layer()) .init(); let app = Router::new() .route(\"/\", put(|| async move { \"200 OK\" })) .layer(middleware::from_fn(print_request_response)); let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); tracing::debug!(\"listening on {}\", addr); axum::Server::bind(&addr) .serve(app.into_make_service()) .await .unwrap();\n} async fn print_request_response( req: Request, next: Next,\n) -> Result { let (parts, body) = req.into_parts(); print_parts(&parts).await; let bytes = buffer_and_print(\"request\", body).await?; let req = Request::from_parts(parts, Body::from(bytes)); let res = next.run(req).await; Ok(res)\n} async fn print_parts(parts: &Parts) { tracing::debug!(\"{:#?}\", parts);\n} async fn buffer_and_print(direction: &str, body: B) -> Result\nwhere B: axum::body::HttpBody, B::Error: std::fmt::Display,\n{ let bytes = match hyper::body::to_bytes(body).await { Ok(bytes) => bytes, Err(err) => { return Err(( StatusCode::BAD_REQUEST, format!(\"failed to read {} body: {}\", direction, err), )); } }; if let Ok(body) = std::str::from_utf8(&bytes) { tracing::debug!(\"{} body = {:?}\", direction, body); } Ok(bytes)\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » What helped me to understand the problems and their solutions","id":"508","title":"What helped me to understand the problems and their solutions"},"509":{"body":"](writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.md)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP »","id":"509","title":"Contributing"},"51":{"body":"smithy-rs provides the ability to generate a client whose operations defined by a smithy model. The documents referenced here explain aspects of the client in greater detail. What is the 'orchestrator' and why does it exist? Identity and Auth","breadcrumbs":"Client » Smithy Client","id":"51","title":"Smithy Client"},"52":{"body":"At a very high level, an orchestrator is a process for transforming requests into responses. Please enjoy this fancy chart: flowchart TB A(Orchestrate)-->|Input|B(Request serialization) B-->|Transmit Request|C(Connection) C-->|Transmit Response|D(Response deserialization) D-->|Success|E(\"Ok(Output)\") D-->|Unretryable Failure|F(\"Err(SdkError)\") D-->|Retryable Failure|C This process is also referred to as the \"request/response lifecycle.\" In this example, the types of \"transmit request\" and \"transmit response\" are protocol-dependent. Typical operations use HTTP , but we plan to support other protocols like MQTT in the future. In addition to the above steps, the orchestrator must also handle: Endpoint resolution: figuring out which URL to send a request to. Authentication, identity resolution, and request signing: Figuring out who is sending the request, their credentials, and how we should insert the credentials into a request. Interceptors : Running lifecycle hooks at each point in the request/response lifecycle. Runtime Plugins: Resolving configuration from config builders. Retries: Categorizing responses from services and deciding whether to retry and how long to wait before doing so. Trace Probes: A sink for events that occur during the request/response lifecycle.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What is the orchestrator?","id":"52","title":"What is the orchestrator?"},"53":{"body":"While the structure of an orchestrator is fixed, the actions it takes during its lifecycle are highly configurable. Users have two ways to configure this process: Runtime Plugins : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? In two batches, at the very beginning of orchestrate. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can set interceptors. Are they user-definable? No. At present, only smithy-rs maintainers may define these. Interceptors : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? At each step in the request-response lifecycle. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can log information. Depending on when they're run, they can modify the input, transmit request, transmit response, and the output/error. Are they user-definable? Yes. Configuration for a request is constructed by runtime plugins just after calling orchestrate. Configuration is stored in a ConfigBag: a hash map that's keyed on type's TypeId (an opaque object, managed by the Rust compiler, which references some type.)","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is an orchestrator configured?","id":"53","title":"How is an orchestrator configured?"},"54":{"body":"The orchestrator's work is divided into four phases: NOTE: If an interceptor fails, then the other interceptors for that lifecycle event are still run. All resulting errors are collected and emitted together. Building the ConfigBag and mounting interceptors . This phase is fallible. An interceptor context is created. This will hold request and response objects, making them available to interceptors. All runtime plugins set at the client-level are run. These plugins can set config and mount interceptors. Any \"read before execution\" interceptors that have been set get run. All runtime plugins set at the operation-level are run. These plugins can also set config and mount interceptors. Any new \"read before execution\" interceptors that have been set get run. Request Construction This phase is fallible. The \"read before serialization\" and \"modify before serialization\" interceptors are called. The input is serialized into a transmit request. The \"read after serialization\" and \"modify before retry loop\" interceptors are called. Before making an attempt, the retry handler is called to check if an attempt should be made. The retry handler makes this decision for an initial attempt as well as for the retry attempts. If an initial attempt should be made, then the orchestrator enters the Dispatch phase. Otherwise, a throttling error is returned. Request Dispatch This phase is fallible. This phase's tasks are performed in a loop. Retryable request failures will be retried, and unretryable failures will end the loop. The \"read before attempt\" interceptors are run. An endpoint is resolved according to an endpoint resolver. The resolved endpoint is then applied to the transmit request. The \"read before signing\" and \"modify before signing\" interceptors are run. An identity and a signer are resolved according to an authentication resolver. The signer then signs the transmit request with the identity. The \"read after signing\" , \"read before transmit\" , and \"modify before transmit\" interceptors are run. The transmit request is passed into the connection, and a transmit response is received. The \"read after transmit\" , \"read before deserialization\" , and \"modify before deserialization\" interceptors are run. The transmit response is deserialized. The \"read after attempt\" and \"modify before attempt completion\" interceptors are run. The retry strategy is called to check if a retry is necessary. If a retry is required, the Dispatch phase restarts. Otherwise, the orchestrator enters the Response Handling phase. Response Handling This phase is fallible. The \"read after deserialization\" and \"modify before completion\" interceptors are run. Events are dispatched to any trace probes that the user has set. The \"read after execution\" interceptors are run. At the end of all this, the response is returned. If an error occurred at any point, then the response will contain one or more errors, depending on what failed. Otherwise, the output will be returned.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What does the orchestrator do?","id":"54","title":"What does the orchestrator do?"},"55":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is the orchestrator implemented in Rust?","id":"55","title":"How is the orchestrator implemented in Rust?"},"56":{"body":"In designing the orchestrator, we sought to solve the problems we had with the original smithy client. The client made heavy use of generics, allowing for increased performance, but at the cost of increased maintenance burden and increased compile times . The Rust compiler, usually very helpful, isn't well-equipped to explain trait errors when bounds are this complex, and so the resulting client was difficult to extend. Trait aliases would have helped, but they're not (at the time of writing) available. The type signatures for the old client and its call method: impl Client\nwhere C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ pub async fn call(&self, op: Operation) -> Result> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { self.call_raw(op).await.map(|res| res.parsed) } pub async fn call_raw( &self, op: Operation, ) -> Result, SdkError> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, // This bound is not _technically_ inferred by all the previous bounds, but in practice it // is because _we_ know that there is only implementation of Service for Parsed // (ParsedResponseService), and it will apply as long as the bounds on C, M, and R hold, // and will produce (as expected) Response = SdkSuccess, Error = SdkError. But Rust // doesn't know that -- there _could_ theoretically be other implementations of Service for // Parsed that don't return those same types. So, we must give the bound. bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { // The request/response lifecycle }\n} The type signature for the new orchestrate method: pub async fn orchestrate( input: Input, runtime_plugins: &RuntimePlugins, // Currently, SdkError is HTTP-only. We currently use it for backwards-compatibility purposes. // The `HttpResponse` generic will likely be removed in the future.\n) -> Result> { // The request/response lifecycle\n} Wait a second, I hear you ask. \"I see an Input and Output there, but you're not declaring any generic type arguments. What gives?\" I'm glad you asked. Generally, when you need traits, but you aren't willing to use generic type arguments, then you must Box . Polymorphism is achieved through dynamic dispatch instead of static dispatch , and this comes with a small runtime cost. So, what are Input and Output? They're our own special flavor of a boxed trait object. pub type Input = TypeErasedBox;\npub type Output = TypeErasedBox;\npub type Error = TypeErasedBox; /// A new-type around `Box`\n#[derive(Debug)]\npub struct TypeErasedBox { inner: Box,\n} The orchestrator itself doesn't know about any concrete types. Instead, it passes boxed data between the various components of the request/response lifecycle. Individual components access data in two ways: From the ConfigBag: (with an accessor) let retry_strategy = cfg.retry_strategy(); (with the get method) let retry_strategy = cfg.get::>() From the InterceptorContext: (owned) let put_object_input: PutObjectInput = ctx.take_input().unwrap().downcast().unwrap()?; (by reference) let put_object_input = ctx.input().unwrap().downcast_ref::().unwrap(); Users can only call ConfigBag::get or downcast a TypeErasedBox to types they have access to, which allows maintainers to ensure encapsulation. For example: a plugin writer may declare a private type, place it in the config bag, and then later retrieve it. Because the type is private, only code in the same crate/module can ever insert or retrieve it. Therefore, there's less worry that someone will depend on a hidden, internal detail and no worry they'll accidentally overwrite a type in the bag. NOTE: When inserting values into a config bag, using one of the set_ methods is always preferred, as this prevents mistakes related to inserting similar, but incorrect types.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Avoiding generics at all costs","id":"56","title":"Avoiding generics at all costs"},"57":{"body":"The current implementation of orchestrate is defined here , in the aws-smithy-runtime crate . Related code can be found in the aws-smithy-runtime-api crate .","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » The actual code","id":"57","title":"The actual code"},"58":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Frequently asked questions","id":"58","title":"Frequently asked questions"},"59":{"body":"We chose to hide the runtime plugin API from users because we are concerned that exposing it will cause more problems than it solves. Instead, we encourage users to use interceptors. This is because, when setting a runtime plugin, any existing runtime plugin with the same type will be replaced. For example, there can only be one retry strategy or response deserializer. Errors resulting from unintentionally overriding a plugin would be difficult for users to diagnose, and would consume valuable development time.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why can't users create and use their own runtime plugins?","id":"59","title":"Why can't users create and use their own runtime plugins?"},"6":{"body":"","breadcrumbs":"Tenets » Details, Justifications, and Ramifications","id":"6","title":"Details, Justifications, and Ramifications"},"60":{"body":"The orchestrator exists because there is an AWS-internal initiative to bring the architecture of all AWS SDKs closer to one another.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does the orchestrator exist?","id":"60","title":"Why does the orchestrator exist?"},"61":{"body":"Because RFCs become outdated as designs evolve. It is our intention to keep this document up to date with our current implementation.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does this document exist when there's already an orchestrator RFC?","id":"61","title":"Why does this document exist when there's already an orchestrator RFC?"},"62":{"body":"The Smithy specification establishes several auth related modeling traits that can be applied to operation and service shapes. To briefly summarize: The auth schemes that are supported by a service are declared on the service shape Operation shapes MAY specify the subset of service-defined auth schemes they support. If none are specified, then all service-defined auth schemes are supported. A smithy code generator MUST support at least one auth scheme for every modeled operation, but it need not support ALL modeled auth schemes. This design document establishes how smithy-rs implements this specification.","breadcrumbs":"Client » Identity and Auth » Identity and Auth in Clients","id":"62","title":"Identity and Auth in Clients"},"63":{"body":"Auth: Either a shorthand that represents both of the authentication and authorization terms below, or an ambiguous representation of one of them. In this doc, this term will always refer to both. Authentication: The process of proving an entity is who they claim they are, sometimes referred to as AuthN. Authorization: The process of granting an authenticated entity the permission to do something, sometimes referred to as AuthZ. Identity: The information required for authentication. Signing: The process of attaching metadata to a request that allows a server to authenticate that request.","breadcrumbs":"Client » Identity and Auth » Terminology","id":"63","title":"Terminology"},"64":{"body":"There are two stages to identity and auth: Configuration Execution","breadcrumbs":"Client » Identity and Auth » Overview of Smithy Client Auth","id":"64","title":"Overview of Smithy Client Auth"},"65":{"body":"First, let's establish the aspects of auth that can be configured from the model at codegen time. Data AuthSchemeOptionResolverParams: parameters required to resolve auth scheme options. These parameters are allowed to come from both the client config and the operation input structs. AuthSchemes: a list of auth schemes that can be used to sign HTTP requests. This information comes directly from the service model. AuthSchemeProperties: configuration from the auth scheme for the signer. IdentityResolvers: list of available identity resolvers. Implementations IdentityResolver: resolves an identity for use in authentication. There can be multiple identity resolvers that need to be selected from. Signer: a signing implementation that signs a HTTP request. ResolveAuthSchemeOptions: resolves a list of auth scheme options for a given operation and its inputs. As it is undocumented (at time of writing), this document assumes that the code generator creates one service-level runtime plugin, and an operation-level runtime plugin per operation, hence referred to as the service runtime plugin and operation runtime plugin. The code generator emits code to add identity resolvers and HTTP auth schemes to the config bag in the service runtime plugin. It then emits code to register an interceptor in the operation runtime plugin that reads the operation input to generate the auth scheme option resolver params (which also get added to the config bag).","breadcrumbs":"Client » Identity and Auth » The configuration stage","id":"65","title":"The configuration stage"},"66":{"body":"At a high-level, the process of resolving an identity and signing a request looks as follows: Retrieve the AuthSchemeOptionResolverParams from the config bag. The AuthSchemeOptionResolverParams allow client config and operation inputs to play a role in which auth scheme option is selected. Retrieve the ResolveAuthSchemeOptions impl from the config bag, and use it to resolve the auth scheme options available with the AuthSchemeOptionResolverParams. The returned auth scheme options are in priority order. Retrieve the IdentityResolvers list from the config bag. For each auth scheme option: Attempt to find an HTTP auth scheme for that auth scheme option in the config bag (from the AuthSchemes list). If an auth scheme is found: Use the auth scheme to extract the correct identity resolver from the IdentityResolvers list. Retrieve the Signer implementation from the auth scheme. Use the IdentityResolver to resolve the identity needed for signing. Sign the request with the identity, and break out of the loop from step #4. In general, it is assumed that if an HTTP auth scheme exists for an auth scheme option, then an identity resolver also exists for that auth scheme option. Otherwise, the auth option was configured incorrectly during codegen.","breadcrumbs":"Client » Identity and Auth » The execution stage","id":"66","title":"The execution stage"},"67":{"body":"The client will use trait objects and dynamic dispatch for the IdentityResolver, Signer, and AuthSchemeOptionResolver implementations. Generics could potentially be used, but the number of generic arguments and trait bounds in the orchestrator would balloon to unmaintainable levels if each configurable implementation in it was made generic. These traits look like this: #[derive(Clone, Debug)]\npub struct AuthSchemeId { scheme_id: &'static str,\n} pub trait ResolveAuthSchemeOptions: Send + Sync + Debug { fn resolve_auth_scheme_options<'a>( &'a self, params: &AuthSchemeOptionResolverParams, ) -> Result, BoxError>;\n} pub trait IdentityResolver: Send + Sync + Debug { fn resolve_identity(&self, config: &ConfigBag) -> BoxFallibleFut;\n} pub trait Signer: Send + Sync + Debug { /// Return a signed version of the given request using the given identity. /// /// If the provided identity is incompatible with this signer, an error must be returned. fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag, ) -> Result<(), BoxError>;\n} IdentityResolver and Signer implementations are both given an Identity, but will need to understand what the concrete data type underlying that identity is. The Identity struct uses a Arc to represent the actual identity data so that generics are not needed in the traits: #[derive(Clone, Debug)]\npub struct Identity { data: Arc, expiration: Option,\n} Identities can often be cached and reused across several requests, which is why the Identity uses Arc rather than Box. This also reduces the allocations required. The signer implementations will use downcasting to access the identity data types they understand. For example, with AWS SigV4, it might look like the following: fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag,\n) -> Result<(), BoxError> { let aws_credentials = identity.data::() .ok_or_else(|| \"The SigV4 signer requires AWS credentials\")?; let access_key = &aws_credentials.secret_access_key; // -- snip --\n} Also note that identity data structs are expected to censor their own sensitive fields, as Identity implements the automatically derived Debug trait.","breadcrumbs":"Client » Identity and Auth » How this looks in Rust","id":"67","title":"How this looks in Rust"},"68":{"body":"A keen observer would note that there is an expiration field on Identity, and may ask, \"what about non-expiring identities?\" This is the result of a limitation on Box, where it can only be downcasted to concrete types. There is no way to downcast to a dyn Trait since the information required to verify that that type is that trait is lost at compile time (a std::any::TypeId only encodes information about the concrete type). In an ideal world, it would be possible to extract the expiration like this: pub trait ExpiringIdentity { fn expiration(&self) -> SystemTime;\n} let identity: Identity = some_identity();\nif let Some(expiration) = identity.data::<&dyn ExpiringIdentity>().map(ExpiringIdentity::expiration) { // make a decision based on that expiration\n} Theoretically, you should be able to save off additional type information alongside the Box and use unsafe code to transmute to known traits, but it is difficult to implement in practice, and adds unsafe code in a security critical piece of code that could otherwise be avoided. The expiration field is a special case that is allowed onto the Identity struct directly since identity cache implementations will always need to be aware of this piece of information, and having it as an Option still allows for non-expiring identities. Ultimately, this design constrains Signer implementations to concrete types. There is no world where an Signer can operate across multiple unknown identity data types via trait, and that should be OK since the signer implementation can always be wrapped with an implementation that is aware of the concrete type provided by the identity resolver, and can do any necessary conversions.","breadcrumbs":"Client » Identity and Auth » Challenges with this Identity design","id":"68","title":"Challenges with this Identity design"},"69":{"body":"Smithy Rust provides the ability to generate a server whose operations are provided by the customer. Middleware Instrumentation Accessing Un-modelled Data The Anatomy of a Service Generating Common Service Code","breadcrumbs":"Server » Smithy Server","id":"69","title":"Smithy Server"},"7":{"body":"Some customers will use the Rust SDK as their first experience with async Rust, potentially any Rust. They may not be familiar with Tokio or the concept of an async executor. We are not afraid to have an opinion about the best solution for most customers. Other customers will come to the SDK with specific requirements. Perhaps they're integrating the SDK into a much larger project that uses async_std. Maybe they need to set custom headers, modify the user agent, or audit every request. They should be able to use the Rust SDK without forking it to meet their needs.","breadcrumbs":"Tenets » Batteries included, but replaceable.","id":"7","title":"Batteries included, but replaceable."},"70":{"body":"The following document provides a brief survey of the various positions middleware can be inserted in Smithy Rust. We use the Pokémon service as a reference model throughout. /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n}","breadcrumbs":"Server » Middleware » Middleware","id":"70","title":"Middleware"},"71":{"body":"Smithy Rust is built on top of tower . Tower is a library of modular and reusable components for building robust networking clients and servers. The tower library is centered around two main interfaces, the Service trait and the Layer trait. The Service trait can be thought of as an asynchronous function from a request to a response, async fn(Request) -> Result, coupled with a mechanism to handle back pressure , while the Layer trait can be thought of as a way of decorating a Service, transforming either the request or response. Middleware in tower typically conforms to the following pattern, a Service implementation of the form pub struct NewService { inner: S, /* auxillary data */\n} and a complementary # extern crate tower;\n# pub struct NewService { inner: S }\nuse tower::{Layer, Service}; pub struct NewLayer { /* auxiliary data */\n} impl Layer for NewLayer { type Service = NewService; fn layer(&self, inner: S) -> Self::Service { NewService { inner, /* auxiliary fields */ } }\n} The NewService modifies the behavior of the inner Service S while the NewLayer takes auxiliary data and constructs NewService from S. Customers are then able to stack middleware by composing Layers using combinators such as ServiceBuilder::layer and Stack .","breadcrumbs":"Server » Middleware » Introduction to Tower","id":"71","title":"Introduction to Tower"},"72":{"body":"One of the primary goals is to provide configurability and extensibility through the application of middleware. The customer is able to apply Layers in a variety of key places during the request/response lifecycle. The following schematic labels each configurable middleware position from A to D: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradeLayer --> [*]: HTTP Response state A { state PokemonService { state RoutingService { in --> UpgradeLayer: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state B { state C1 { state C { state UpgradeLayer { direction LR [*] --> Handler: Model Input Handler --> [*] : Model Output state D { Handler } } } } C2 C3 C4 } } } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response where UpgradeLayer is the Layer converting Smithy model structures to HTTP structures and the RoutingService is responsible for routing requests to the appropriate operation.","breadcrumbs":"Server » Middleware » Applying Middleware","id":"72","title":"Applying Middleware"},"73":{"body":"The output of the Smithy service builder provides the user with a Service implementation. A Layer can be applied around the entire Service. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# extern crate tower;\n# use std::time::Duration;\n# struct TimeoutLayer;\n# impl TimeoutLayer { fn new(t: Duration) -> Self { Self }}\n# impl Layer for TimeoutLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService};\nuse tower::Layer; let config = PokemonServiceConfig::builder().build(); // This is a HTTP `Service`.\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; // Construct `TimeoutLayer`.\nlet timeout_layer = TimeoutLayer::new(Duration::from_secs(3)); // Apply a 3 second timeout to all responses.\nlet app = timeout_layer.layer(app);","breadcrumbs":"Server » Middleware » A. Outer Middleware","id":"73","title":"A. Outer Middleware"},"74":{"body":"A single layer can be applied to all routes inside the Router. This exists as a method on the PokemonServiceConfig builder object, which is passed into the service builder. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct MetricsLayer;\n# impl MetricsLayer { pub fn new() -> Self { Self } }\n# impl Layer for MetricsLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; // Construct `MetricsLayer`.\nlet metrics_layer = MetricsLayer::new(); let config = PokemonServiceConfig::builder().layer(metrics_layer).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; Note that requests pass through this middleware immediately after routing succeeds and therefore will not be encountered if routing fails. This means that the TraceLayer in the example above does not provide logs unless routing has completed. This contrasts to middleware A , which all requests/responses pass through when entering/leaving the service.","breadcrumbs":"Server » Middleware » B. Route Middleware","id":"74","title":"B. Route Middleware"},"75":{"body":"A \"HTTP layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use aws_smithy_http_server::{operation::OperationShapeExt, plugin::*, operation::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct LoggingLayer;\n# impl LoggingLayer { pub fn new() -> Self { Self } }\n# impl Layer for LoggingLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only log on `GetPokemonSpecies` and `GetStorage` struct LoggingScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `LoggingLayer`.\nlet logging_plugin = LayerPlugin(LoggingLayer::new());\nlet logging_plugin = Scoped::new::(logging_plugin);\nlet http_plugins = HttpPlugins::new().push(logging_plugin); let config = PokemonServiceConfig::builder().http_plugin(http_plugins).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; This middleware transforms the operations HTTP requests and responses.","breadcrumbs":"Server » Middleware » C. Operation Specific HTTP Middleware","id":"75","title":"C. Operation Specific HTTP Middleware"},"76":{"body":"A \"model layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::{operation::*, plugin::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# struct BufferLayer;\n# impl BufferLayer { pub fn new(size: usize) -> Self { Self } }\n# impl Layer for BufferLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only buffer on `GetPokemonSpecies` and `GetStorage` struct BufferScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `BufferLayer`.\nlet buffer_plugin = LayerPlugin(BufferLayer::new(3));\nlet buffer_plugin = Scoped::new::(buffer_plugin);\nlet config = PokemonServiceConfig::builder().model_plugin(buffer_plugin).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; In contrast to position C , this middleware transforms the operations modelled inputs to modelled outputs.","breadcrumbs":"Server » Middleware » D. Operation Specific Model Middleware","id":"76","title":"D. Operation Specific Model Middleware"},"77":{"body":"Suppose we want to apply a different Layer to every operation. In this case, position B (PokemonService::layer) will not suffice because it applies a single Layer to all routes and while position C (Operation::layer) would work, it'd require the customer constructs the Layer by hand for every operation. Consider the following middleware: # extern crate aws_smithy_http_server;\n# extern crate tower;\nuse aws_smithy_http_server::shape_id::ShapeId;\nuse std::task::{Context, Poll};\nuse tower::Service; /// A [`Service`] that adds a print log.\npub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId\n} impl Service for PrintService\nwhere S: Service,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, req: R) -> Self::Future { println!(\"Hi {} in {}\", self.operation_id.name(), self.service_id.name()); self.inner.call(req) }\n} The plugin system provides a way to construct then apply Layers in position C and D , using the protocol and operation shape as parameters. An example of a PrintPlugin which prints the operation name: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\n# pub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId }\nuse aws_smithy_http_server::{plugin::Plugin, operation::OperationShape, service::ServiceShape}; /// A [`Plugin`] for a service builder to add a [`PrintService`] over operations.\n#[derive(Debug)]\npub struct PrintPlugin; impl Plugin for PrintPlugin\nwhere Ser: ServiceShape, Op: OperationShape,\n{ type Output = PrintService; fn apply(&self, inner: T) -> Self::Output { PrintService { inner, operation_id: Op::ID, service_id: Ser::ID, } }\n} You can provide a custom method to add your plugin to a collection of HttpPlugins or ModelPlugins via an extension trait. For example, for HttpPlugins: # extern crate aws_smithy_http_server;\n# pub struct PrintPlugin;\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack}; /// This provides a [`print`](PrintExt::print) method on [`HttpPlugins`].\npub trait PrintExt { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> HttpPlugins>;\n} impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }\n} This allows for: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::plugin::{PluginStack, Plugin};\n# struct PrintPlugin;\n# impl Plugin for PrintPlugin { type Output = T; fn apply(&self, svc: T) -> Self::Output { svc }}\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\n# trait PrintExt { fn print(self) -> HttpPlugins>; }\n# impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }}\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse aws_smithy_http_server::plugin::{IdentityPlugin, HttpPlugins};\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; let http_plugins = HttpPlugins::new() // [..other plugins..] // The custom method! .print();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app /* : PokemonService> */ = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; The custom print method hides the details of the Plugin trait from the average consumer. They interact with the utility methods on HttpPlugins and enjoy the self-contained documentation.","breadcrumbs":"Server » Middleware » Plugin System","id":"77","title":"Plugin System"},"78":{"body":"A Smithy Rust server uses the tracing crate to provide instrumentation. The customer is responsible for setting up a Subscriber in order to ingest and process events - Smithy Rust makes no prescription on the choice of Subscriber. Common choices might include: tracing_subscriber::fmt for printing to stdout. tracing-log to providing compatibility with the log . Events are emitted and spans are opened by the aws-smithy-http-server, aws-smithy-http-server-python, and generated crate. The default target is always used The tracing macros default to using the module path where the span or event originated as the target, but it may be overridden. and therefore spans and events be filtered using the EnvFilter and/or Targets filters with crate and module paths. For example, RUST_LOG=aws_smithy_http_server=warn,aws_smithy_http_server_python=error and # extern crate tracing_subscriber;\n# extern crate tracing;\n# use tracing_subscriber::filter;\n# use tracing::Level;\nlet filter = filter::Targets::new().with_target(\"aws_smithy_http_server\", Level::DEBUG); In general, Smithy Rust is conservative when using high-priority log levels: ERROR Fatal errors, resulting in the termination of the service. Requires immediate remediation. WARN Non-fatal errors, resulting in incomplete operation. Indicates service misconfiguration, transient errors, or future changes in behavior. Requires inspection and remediation. INFO Informative events, which occur inside normal operating limits. Used for large state transitions, e.g. startup/shutdown. DEBUG Informative and sparse events, which occur inside normal operating limits. Used to debug coarse-grained progress of service. TRACE Informative and frequent events, which occur inside normal operating limits. Used to debug fine-grained progress of service.","breadcrumbs":"Server » Instrumentation » Instrumentation","id":"78","title":"Instrumentation"},"79":{"body":"Smithy Rust is built on top of tower , which means that middleware can be used to encompass different periods of the lifecycle of the request and response and identify them with a span. An open-source example of such a middleware is TraceLayer provided by the tower-http crate. Smithy provides an out-the-box middleware which: Opens a DEBUG level span, prior to request handling, including the operation name and request URI and headers. Emits a DEBUG level event, after to request handling, including the response headers and status code. This is enabled via the instrument method provided by the aws_smithy_http_server::instrumentation::InstrumentExt trait. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\nuse aws_smithy_http_server::{ instrumentation::InstrumentExt, plugin::{IdentityPlugin, HttpPlugins}\n};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService}; let http_plugins = HttpPlugins::new().instrument();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app;","breadcrumbs":"Server » Instrumentation » Spans over the Request/Response lifecycle","id":"79","title":"Spans over the Request/Response lifecycle"},"8":{"body":"If solving a common problem isn’t obvious from the API, it should be obvious from the documentation. The SDK should guide users towards the best solutions for common tasks, first with well named methods, second with documentation, and third with real -world usage examples. Provide misuse resistant APIs. Async Rust has the potential to introduce subtle bugs; the Rust SDK should help customers avoid them.","breadcrumbs":"Tenets » Make common problems easy to solve","id":"8","title":"Make common problems easy to solve"},"80":{"body":"The Pokémon service example, located at /examples/pokemon-service, sets up a tracing Subscriber as follows: # extern crate tracing_subscriber;\nuse tracing_subscriber::{prelude::*, EnvFilter}; /// Setup `tracing::subscriber` to read the log level from RUST_LOG environment variable.\npub fn setup_tracing() { let format = tracing_subscriber::fmt::layer().pretty(); let filter = EnvFilter::try_from_default_env() .or_else(|_| EnvFilter::try_new(\"info\")) .unwrap(); tracing_subscriber::registry().with(format).with(filter).init();\n} Running the Pokémon service example using RUST_LOG=aws_smithy_http_server=debug,pokemon_service=debug cargo r and then using cargo t to run integration tests against the server, yields the following logs: 2022-09-27T09:13:35.372517Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"content-length\": \"17\"}, status_code: 200 OK at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_server_statistics, method: GET, uri: /stats, headers: {\"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374104Z DEBUG pokemon_service: attempting to authenticate storage user at pokemon-service/src/lib.rs:184 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374152Z DEBUG pokemon_service: authentication failed at pokemon-service/src/lib.rs:188 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374230Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"x-amzn-errortype\": \"NotAuthorized\", \"content-length\": \"2\"}, status_code: 401 Unauthorized at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"}","breadcrumbs":"Server » Instrumentation » Example","id":"80","title":"Example"},"81":{"body":"Instrumentation interacts with Smithy's sensitive trait . Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). For this reason, Smithy runtime will never use tracing to emit events or open spans that include any sensitive data. This means that the customer can ingest all logs from aws-smithy-http-server and aws-smithy-http-server-* without fear of violating the sensitive trait. The Smithy runtime will not, and cannot, prevent the customer violating the sensitive trait within the operation handlers and custom middleware. It is the responsibility of the customer to not violate the sensitive contract of their own model, care must be taken. Smithy shapes can be sensitive while being coupled to the HTTP request/responses via the HTTP binding traits . This poses a risk when ingesting events which naively capture request/response information. The instrumentation middleware provided by Smithy Rust respects the sensitive trait and will replace sensitive data in its span and event with {redacted}. This feature can be seen in the Example above. For debugging purposes these redactions can be prevented using the aws-smithy-http-server feature flag, unredacted-logging. Some examples of inadvertently leaking sensitive information: Ingesting tracing events and spans from third-party crates which do not respect sensitivity. An concrete example of this would be enabling events from hyper or tokio. Applying middleware which ingests events including HTTP payloads or any other part of the HTTP request/response which can be bound.","breadcrumbs":"Server » Instrumentation » Interactions with Sensitivity","id":"81","title":"Interactions with Sensitivity"},"82":{"body":"For every Smithy Operation an input, output, and optional error are specified. This in turn constrains the function signature of the handler provided to the service builder - the input to the handler must be the input specified by the operation etc. But what if we, the customer, want to access data in the handler which is not modelled by our Smithy model? Smithy Rust provides an escape hatch in the form of the FromParts trait. In axum these are referred to as \"extractors\" . /// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n} Here Parts is the struct containing all items in a http::Request except for the HTTP body. A prolific example of a FromParts implementation is Extension: /// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n} impl FromParts for Extension\nwhere T: Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} This allows the service builder to accept the following handler async fn handler(input: ModelInput, extension: Extension) -> ModelOutput { /* ... */\n} where ModelInput and ModelOutput are specified by the Smithy Operation and SomeStruct is a struct which has been inserted, by middleware, into the http::Request::extensions . Up to 32 structures implementing FromParts can be provided to the handler with the constraint that they must be provided after the ModelInput: async fn handler(input: ModelInput, ext1: Extension, ext2: Extension, other: Other /* : FromParts */, /* ... */) -> ModelOutput { /* ... */\n} Note that the parts.extensions.remove::() in Extensions::from_parts will cause multiple Extension arguments in the handler to fail. The first extraction failure to occur is serialized via the IntoResponse trait (notice type Error: IntoResponse) and returned. The FromParts trait is public so customers have the ability specify their own implementations: struct CustomerDefined { /* ... */\n} impl

    FromParts

    for CustomerDefined { type Error = /* ... */; fn from_parts(parts: &mut Parts) -> Result { // Construct `CustomerDefined` using the request headers. let header_value = parts.headers.get(\"header-name\").ok_or(/* ... */)?; Ok(CustomerDefined { /* ... */ }) }\n} async fn handler(input: ModelInput, arg: CustomerDefined) -> ModelOutput { /* ... */\n}","breadcrumbs":"Server » Accessing Un-modelled Data » Accessing Un-modelled Data","id":"82","title":"Accessing Un-modelled Data"},"83":{"body":"What is Smithy ? At a high-level, it's a grammar for specifying services while leaving the business logic undefined. A Smithy Service specifies a collection of function signatures in the form of Operations , their purpose is to encapsulate business logic. A Smithy implementation should, for each Smithy Service, provide a builder, which accepts functions conforming to said signatures, and returns a service subject to the semantics specified by the model. This survey is disinterested in the actual Kotlin implementation of the code generator, and instead focuses on the structure of the generated Rust code and how it relates to the Smithy model. The intended audience is new contributors and users interested in internal details. During the survey we will use the pokemon.smithy model as a reference: /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n} Smithy Rust will use this model to produce the following API: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*, operation_shape::*, PokemonServiceConfig, PokemonService};\n// A handler for the `GetPokemonSpecies` operation (the `PokemonSpecies` resource).\nasync fn get_pokemon_species(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let config = PokemonServiceConfig::builder().build(); // Use the service builder to create `PokemonService`.\nlet pokemon_service = PokemonService::builder(config) // Pass the handler directly to the service builder... .get_pokemon_species(get_pokemon_species) /* other operation setters */ .build() .expect(\"failed to create an instance of the Pokémon service\");\n# let pokemon_service: PokemonService, RestJson1>> = pokemon_service;","breadcrumbs":"Server » The Anatomy of a Service » The Anatomy of a Service","id":"83","title":"The Anatomy of a Service"},"84":{"body":"A Smithy Operation specifies the input, output, and possible errors of an API operation. One might characterize a Smithy Operation as syntax for specifying a function type. We represent this in Rust using the OperationShape trait: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\npub trait OperationShape { /// The name of the operation. const ID: ShapeId; /// The operation input. type Input; /// The operation output. type Output; /// The operation error. [`Infallible`](std::convert::Infallible) in the case where no error /// exists. type Error;\n}\n# use aws_smithy_http_server::operation::OperationShape as OpS;\n# impl OperationShape for T {\n# const ID: ShapeId = ::ID;\n# type Input = ::Input;\n# type Output = ::Output;\n# type Error = ::Error;\n# } For each Smithy Operation shape, /// Retrieve information about a Pokémon species.\n@readonly\n@http(uri: \"/pokemon-species/{name}\", method: \"GET\")\noperation GetPokemonSpecies { input: GetPokemonSpeciesInput, output: GetPokemonSpeciesOutput, errors: [ResourceNotFoundException],\n} the following implementation is generated # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{operation::OperationShape, shape_id::ShapeId};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n/// Retrieve information about a Pokémon species.\npub struct GetPokemonSpecies; impl OperationShape for GetPokemonSpecies { const ID: ShapeId = ShapeId::new(\"com.aws.example#GetPokemonSpecies\", \"com.aws.example\", \"GetPokemonSpecies\"); type Input = GetPokemonSpeciesInput; type Output = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError;\n} where GetPokemonSpeciesInput, GetPokemonSpeciesOutput are both generated from the Smithy structures and GetPokemonSpeciesError is an enum generated from the errors: [ResourceNotFoundException]. Note that the GetPokemonSpecies marker structure is a zero-sized type (ZST), and therefore does not exist at runtime - it is a way to attach operation-specific data on an entity within the type system. The following nomenclature will aid us in our survey. We describe a tower::Service as a \"model service\" if its request and response are Smithy structures, as defined by the OperationShape trait - the GetPokemonSpeciesInput, GetPokemonSpeciesOutput, and GetPokemonSpeciesError described above. Similarly, we describe a tower::Service as a \"HTTP service\" if its request and response are http structures - http::Request and http::Response. The constructors exist on the marker ZSTs as an extension trait to OperationShape, namely OperationShapeExt : # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::operation::*;\n/// An extension trait over [`OperationShape`].\npub trait OperationShapeExt: OperationShape { /// Creates a new [`Service`] for well-formed [`Handler`]s. fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized; /// Creates a new [`Service`] for well-formed [`Service`](tower::Service)s. fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized;\n}\n# use aws_smithy_http_server::operation::OperationShapeExt as OpS;\n# impl OperationShapeExt for T {\n# fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized { ::from_handler(handler) }\n# fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized { ::from_service(svc) }\n# } Observe that there are two constructors provided: from_handler which takes a H: Handler and from_service which takes a S: OperationService. In both cases Self is passed as a parameter to the traits - this constrains handler: H and svc: S to the signature given by the implementation of OperationShape on Self. The Handler and OperationService both serve a similar purpose - they provide a common interface for converting to a model service S. The Handler trait covers all async functions taking GetPokemonSpeciesInput and asynchronously returning a Result. The OperationService trait covers all tower::Services with request GetPokemonSpeciesInput, response GetPokemonSpeciesOutput and error GetPokemonSpeciesOutput. The from_handler constructor is used in the following way: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt; async fn get_pokemon_service(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let operation = GetPokemonSpecies::from_handler(get_pokemon_service); Alternatively, from_service constructor: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# extern crate tower;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt;\nuse std::task::{Context, Poll};\nuse tower::Service; struct Svc { /* ... */\n} impl Service for Svc { type Response = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError; type Future = /* Future> */ # std::future::Ready>; fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll> { todo!() } fn call(&mut self, input: GetPokemonSpeciesInput) -> Self::Future { todo!() }\n} let svc: Svc = Svc { /* ... */ };\nlet operation = GetPokemonSpecies::from_service(svc); To summarize a model service constructed can be constructed from a Handler or a OperationService subject to the constraints of an OperationShape. More detailed information on these conversions is provided in the Handler and OperationService section Rust docs.","breadcrumbs":"Server » The Anatomy of a Service » Operations","id":"84","title":"Operations"},"85":{"body":"A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use aws_smithy_http_server::body::BoxBody;\n# use std::future::Future;\n/// Provides a protocol aware extraction from a [`Request`]. This consumes the\n/// [`Request`], in contrast to [`FromParts`].\npub trait FromRequest: Sized { type Rejection: IntoResponse; type Future: Future>; /// Extracts `self` from a [`Request`] asynchronously. fn from_request(request: http::Request) -> Self::Future;\n} /// A protocol aware function taking `self` to [`http::Response`].\npub trait IntoResponse { /// Performs a conversion into a [`http::Response`]. fn into_response(self) -> http::Response;\n}\n# use aws_smithy_http_server::request::FromRequest as FR;\n# impl> FromRequest for T {\n# type Rejection = >::Rejection;\n# type Future = >::Future;\n# fn from_request(request: http::Request) -> Self::Future {\n# >::from_request(request)\n# }\n# }\n# use aws_smithy_http_server::response::IntoResponse as IR;\n# impl> IntoResponse

    for T {\n# fn into_response(self) -> http::Response { >::into_response(self) }\n# } Note that both traits are parameterized by Protocol. These protocols exist as ZST marker structs: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::{\n# aws_json_10::AwsJson1_0 as _,\n# aws_json_11::AwsJson1_1 as _,\n# rest_json_1::RestJson1 as _,\n# rest_xml::RestXml as _,\n# };\n/// [AWS REST JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restjson1-protocol.html).\npub struct RestJson1; /// [AWS REST XML Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restxml-protocol.html).\npub struct RestXml; /// [AWS JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_0-protocol.html).\npub struct AwsJson1_0; /// [AWS JSON 1.1 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_1-protocol.html).\npub struct AwsJson1_1;","breadcrumbs":"Server » The Anatomy of a Service » Serialization and Deserialization","id":"85","title":"Serialization and Deserialization"},"86":{"body":"We can \"upgrade\" a model service to a HTTP service using FromRequest and IntoResponse described in the prior section: stateDiagram-v2 direction LR HttpService: HTTP Service [*] --> from_request: HTTP Request state HttpService { direction LR ModelService: Model Service from_request --> ModelService: Model Input ModelService --> into_response: Model Output } into_response --> [*]: HTTP Response This is formalized by the Upgrade HTTP service. The tower::Service implementation is approximately: impl Service for Upgrade\nwhere Input: FromRequest, S: Service, S::Response: IntoResponse

    , S::Error: IntoResponse

    ,\n{ async fn call(&mut self, request: http::Request) -> http::Response { let model_request = match ::from_request(request).await { Ok(ok) => ok, Err(err) => return err.into_response() }; let model_response = self.model_service.call(model_request).await; model_response.into_response() }\n} When we GetPokemonSpecies::from_handler or GetPokemonSpecies::from_service, the model service produced, S, will meet the constraints above. There is an associated Plugin, UpgradePlugin which constructs Upgrade from a service. The upgrade procedure is finalized by the application of the Layer L, referenced in Operation. In this way the entire upgrade procedure takes an Operation and returns a HTTP service. stateDiagram-v2 direction LR [*] --> UpgradePlugin: HTTP Request state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } UpgradePlugin --> [*]: HTTP Response Note that the S is specified by logic written, in Rust, by the customer, whereas UpgradePlugin is specified entirely by Smithy model via the protocol, HTTP bindings , etc.","breadcrumbs":"Server » The Anatomy of a Service » Upgrading a Model Service","id":"86","title":"Upgrading a Model Service"},"87":{"body":"Different protocols supported by Smithy enjoy different routing mechanisms, for example, AWS JSON 1.0 uses the X-Amz-Target header to select an operation, whereas AWS REST XML uses the HTTP label trait . Despite their differences, all routing mechanisms satisfy a common interface. This is formalized using the Router trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n/// An interface for retrieving an inner [`Service`] given a [`http::Request`].\npub trait Router { type Service; type Error; /// Matches a [`http::Request`] to a target [`Service`]. fn match_route(&self, request: &http::Request) -> Result;\n} which provides the ability to determine an inner HTTP service from a collection using a &http::Request. Types which implement the Router trait are converted to a HTTP service via the RoutingService struct: /// A [`Service`] using a [`Router`] `R` to redirect messages to specific routes.\n///\n/// The `Protocol` parameter is used to determine the serialization of errors.\npub struct RoutingService { router: R, _protocol: PhantomData,\n} impl Service for RoutingService\nwhere R: Router, R::Service: Service, R::Error: IntoResponse

    + Error,\n{ type Response = http::Response; type Error = /* implementation detail */; async fn call(&mut self, req: http::Request) -> Result { match self.router.match_route(&req) { // Successfully routed, use the routes `Service::call`. Ok(ok) => ok.oneshot(req).await, // Failed to route, use the `R::Error`s `IntoResponse

    `. Err(error) => { debug!(%error, \"failed to route\"); Err(Box::new(error.into_response())) } } }\n} The RouterService is the final piece necessary to form a functioning composition - it is used to aggregate together the HTTP services, created via the upgrade procedure, into a single HTTP service which can be presented to the customer. stateDiagram\nstate in <<fork>> direction LR [*] --> in state RouterService { direction LR in --> ServiceA in --> ServiceB in --> ServiceC } ServiceA --> [*] ServiceB --> [*] ServiceC --> [*]","breadcrumbs":"Server » The Anatomy of a Service » Routers","id":"87","title":"Routers"},"88":{"body":"A Plugin is a [tower::Layer] with two extra type parameters, Service and Operation, corresponding to Smithy Service and Smithy Operation . This allows the middleware to be parameterized them and change behavior depending on the context in which it's applied. # extern crate aws_smithy_http_server;\npub trait Plugin { type Output; fn apply(&self, input: T) -> Self::Output;\n}\n# use aws_smithy_http_server::plugin::Plugin as Pl;\n# impl> Plugin for U {\n# type Output = >::Output;\n# fn apply(&self, input: T) -> Self::Output { >::apply(self, input) }\n# } An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs . Plugins can be applied in two places: HTTP plugins, which are applied pre-deserialization/post-serialization, acting on HTTP requests/responses. Model plugins, which are applied post-deserialization/pre-serialization, acting on model inputs/outputs/errors. stateDiagram-v2 direction LR [*] --> S: HTTP Request state HttpPlugin { state UpgradePlugin { state ModelPlugin { S } } } S --> [*]: HTTP Response The service builder API requires plugins to be specified upfront - they must be registered in the config object, which is passed as an argument to builder. Plugins cannot be modified afterwards. You might find yourself wanting to apply multiple plugins to your service. This can be accommodated via [HttpPlugins] and [ModelPlugins]. # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::HttpPlugins;\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as MetricsPlugin; let http_plugins = HttpPlugins::new().push(LoggingPlugin).push(MetricsPlugin); The plugins' runtime logic is executed in registration order. In the example above, LoggingPlugin would run first, while MetricsPlugin is executed last. If you are vending a plugin, you can leverage HttpPlugins or ModelPlugins as an extension point: you can add custom methods to it using an extension trait. For example: # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack};\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as AuthPlugin; pub trait AuthPluginExt { fn with_auth(self) -> HttpPlugins>;\n} impl AuthPluginExt for HttpPlugins { fn with_auth(self) -> HttpPlugins> { self.push(AuthPlugin) }\n} let http_plugins = HttpPlugins::new() .push(LoggingPlugin) // Our custom method! .with_auth();","breadcrumbs":"Server » The Anatomy of a Service » Plugins","id":"88","title":"Plugins"},"89":{"body":"The service builder is the primary public API, generated for every Smithy Service . At a high-level, the service builder takes as input a function for each Smithy Operation and returns a single HTTP service. The signature of each function, also known as handlers , must match the constraints of the corresponding Smithy model. You can create an instance of a service builder by calling builder on the corresponding service struct. # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::routing::Route;\n/// The service builder for [`PokemonService`].\n///\n/// Constructed via [`PokemonService::builder`].\npub struct PokemonServiceBuilder { capture_pokemon_operation: Option>, empty_operation: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, get_storage: Option>, health_check_operation: Option>, http_plugin: HttpPl, model_plugin: ModelPl,\n} The builder has two setter methods for each Smithy Operation in the Smithy Service : pub fn get_pokemon_species(self, handler: HandlerType) -> Self where HandlerType:Handler, ModelPl: Plugin< PokemonService, GetPokemonSpecies, IntoService >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_handler(handler); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new() .apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_service(self, service: S) -> Self where S: OperationService, ModelPl: Plugin< PokemonService, GetPokemonSpecies, Normalize >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_service(service); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new().apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_custom(mut self, svc: S) -> Self where S: Service, Response = Response, Error = Infallible>, { self.get_pokemon_species = Some(Route::new(svc)); self } Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise. You can transform a builder instance into a complete service (PokemonService) using one of the following methods: build. The transformation fails if one or more operations do not have a registered handler; build_unchecked. The transformation never fails, but we return 500s for all operations that do not have a registered handler. Both builder methods take care of: Pair each handler with the routing information for the corresponding operation; Collect all (routing_info, handler) pairs into a Router; Transform the Router implementation into a HTTP service via RouterService; Wrap the RouterService in a newtype given by the service name, PokemonService. The final outcome, an instance of PokemonService, looks roughly like this: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{routing::RoutingService, protocol::rest_json_1::{router::RestRouter, RestJson1}};\n/// The Pokémon Service allows you to retrieve information about Pokémon species.\n#[derive(Clone)]\npub struct PokemonService { router: RoutingService, RestJson1>,\n} The following schematic summarizes the composition: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradePlugin --> [*]: HTTP Response state PokemonService { state RoutingService { in --> UpgradePlugin: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state C1 { state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } } C2 C3 C4 } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response","breadcrumbs":"Server » The Anatomy of a Service » Builders","id":"89","title":"Builders"},"9":{"body":"APIs evolve in unpredictable ways, and it's crucial that the SDK can evolve without breaking existing customers. This means designing the SDK so that fundamental changes to the internals can be made without altering the external interface we surface to customers: Keeping the shared core as small & opaque as possible. Don’t leak our internal dependencies to customers With every design choice, consider, \"Can I reverse this choice in the future?\" This may not result in DRY code, and that’s OK! Code that is auto generated has different goals and tradeoffs than code that has been written by hand.","breadcrumbs":"Tenets » Design for the Future","id":"9","title":"Design for the Future"},"90":{"body":"An additional omitted detail is that we provide an \"escape hatch\" allowing Handlers and OperationServices to accept data that isn't modelled. In addition to accepting Op::Input they can accept additional arguments which implement the FromParts trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use http::request::Parts;\n# use aws_smithy_http_server::response::IntoResponse;\n/// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n}\n# use aws_smithy_http_server::request::FromParts as FP;\n# impl> FromParts

    for T {\n# type Rejection = >::Rejection;\n# fn from_parts(parts: &mut Parts) -> Result { >::from_parts(parts) }\n# } This differs from FromRequest trait, introduced in Serialization and Deserialization , as it's synchronous and has non-consuming access to Parts , rather than the entire Request . pub struct Parts { pub method: Method, pub uri: Uri, pub version: Version, pub headers: HeaderMap, pub extensions: Extensions, /* private fields */\n} This is commonly used to access types stored within Extensions which have been inserted by a middleware. An Extension struct implements FromParts to support this use case: # extern crate aws_smithy_http_server;\n# extern crate http;\n# extern crate thiserror;\n# use aws_smithy_http_server::{body::BoxBody, request::FromParts, response::IntoResponse};\n# use http::status::StatusCode;\n# use thiserror::Error;\n# fn empty() -> BoxBody { todo!() }\n/// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); impl FromParts for Extension\nwhere T: Clone + Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n}","breadcrumbs":"Server » The Anatomy of a Service » Accessing Unmodelled Data","id":"90","title":"Accessing Unmodelled Data"},"91":{"body":"This document introduces the project and how code is being generated. It is written for developers who want to start contributing to smithy-rs.","breadcrumbs":"Server » Generating Common Service Code » Generating Common Service Code","id":"91","title":"Generating Common Service Code"},"92":{"body":"The project is divided in: /codegen-core: contains common code to be used for both client and server code generation /codegen-client: client code generation. Depends on codegen-core /codegen-server: server code generation. Depends on codegen-core /aws: the AWS Rust SDK, it deals with AWS services specifically. The folder structure reflects the project's, with the rust-runtime and the codegen /rust-runtime: the generated client and server crates may depend on crates in this folder. Crates here are not code generated. The only crate that is not published is inlineable, which contains common functions used by other crates, copied into the source crate Crates in /rust-runtime (informally referred to as \"runtime crates\") are added to a crate's dependency only when used. For example, if a model uses event streams, the generated crates will depend on aws-smithy-eventstream .","breadcrumbs":"Server » Generating Common Service Code » Folder structure","id":"92","title":"Folder structure"},"93":{"body":"smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and inherits from SmithyBuildPlugin in smithy-build . Code generation is in Kotlin and shared common, non-Rust specific code with the smithy Java repository . They plug into the Smithy gradle plugin, which is a gradle plugin. The comment at the beginning of execute describes what a Decorator is and uses the following terms: Context: contains the model being generated, projection and settings for the build Decorator: (also referred to as customizations) customizes how code is being generated. AWS services are required to sign with the SigV4 protocol, and a decorator adds Rust code to sign requests and responses. Decorators are applied in reverse order of being added and have a priority order. Writer: creates files and adds content; it supports templating, using # for substitutions Location: the file where a symbol will be written to The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method. CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor . CodegenVisitor, RustCodegenPlugin, and wherever there are different implementations between client and server, such as in generating error types, have corresponding server versions. Objects used throughout code generation are: Symbol: a node in a graph, an abstraction that represents the qualified name of a type; symbols reference and depend on other symbols, and have some common properties among languages (such as a namespace or a definition file). For Rust, we add properties to include more metadata about a symbol, such as its type RustType : Option, HashMap, ... along with their namespaces of origin such as std::collections RuntimeType : the information to locate a type, plus the crates it depends on ShapeId : an immutable object that identifies a Shape Useful conversions are: SymbolProvider.toSymbol(shape) where SymbolProvider constructs symbols for shapes. Some symbols require to create other symbols and types; event streams and other streaming shapes are an example. Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider , and all other providers will work with this new symbol. Model.expectShape(shapeId) Each model has a shapeId to shape map; this method returns the shape associated with this shapeId. Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape. CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust ; here is how a service is constructed, here a structure and so on. Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis . The complete result is a Rust crate , in which all dependencies are written into their modules and lib.rs is generated ( here ). execute() ends by running cargo fmt , to avoid having to format correctly Rust in Writers and to be sure the generated code follows the styling rules.","breadcrumbs":"Server » Generating Common Service Code » Generating code","id":"93","title":"Generating code"},"94":{"body":"What is an RFC?: An RFC is a document that proposes a change to smithy-rs or the AWS Rust SDK. Request for Comments means a request for discussion and oversight about the future of the project from maintainers, contributors and users. When should I write an RFC?: The AWS Rust SDK team proactively decides to write RFCs for major features or complex changes that we feel require extra scrutiny. However, the process can be used to request feedback on any change. Even changes that seem obvious and simple at first glance can be improved once a group of interested and experienced people have a chance to weigh in. Who can submit an RFC?: An RFC can be submitted by anyone. In most cases, RFCs are authored by SDK maintainers, but everyone is welcome to submit RFCs. Where do I start?: If you're ready to write and submit an RFC, please start a GitHub discussion with a summary of what you're trying to accomplish first. That way, the AWS Rust SDK team can ensure they have the bandwidth to review and shepherd the RFC through the whole process before you've expended effort in writing it. Once you've gotten the go-ahead, start with the RFC template .","breadcrumbs":"RFCs » RFCs","id":"94","title":"RFCs"},"95":{"body":"RFC-0001: AWS Configuration RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream RFC-0003: API for Presigned URLs RFC-0004: Retry Behavior RFC-0005: Service Generation RFC-0006: Service-specific middleware RFC-0007: Split Release Process RFC-0008: Paginators RFC-0009: Example Consolidation RFC-0010: Waiters RFC-0011: Publishing Alpha to Crates.io RFC-0012: Independent Crate Versioning RFC-0013: Body Callback APIs RFC-0014: Fine-grained timeout configuration RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates RFC-0016: Supporting Flexible Checksums RFC-0017: Customizable Client Operations RFC-0018: Logging in the Presence of Sensitive Data RFC-0019: Event Streams Errors RFC-0020: Service Builder Improvements RFC-0021: Dependency Versions RFC-0022: Error Context and Compatibility RFC-0023: Evolving the new service builder API RFC-0024: RequestID RFC-0025: Constraint traits RFC-0026: Client Crate Organization RFC-0027: Endpoints 2.0 RFC-0028: SDK Credential Cache Type Safety RFC-0029: Finding New Home for Credential Types RFC-0030: Serialization And Deserialization RFC-0031: Providing Fallback Credentials on Timeout RFC-0032: Better Constraint Violations RFC-0033: Improving access to request IDs in SDK clients RFC-0034: The Orchestrator Architecture RFC-0035: Sensible Defaults for Collection Values RFC-0036: Enabling HTTP crate upgrades in the future RFC-0037: The HTTP wrapper type","breadcrumbs":"RFCs » Previously Submitted RFCs","id":"95","title":"Previously Submitted RFCs"},"96":{"body":"Status: Implemented. For an ordered list of proposed changes see: Proposed changes . An AWS SDK loads configuration from multiple locations. Some of these locations can be loaded synchronously. Some are async. Others may actually use AWS services such as STS or SSO. This document proposes an overhaul to the configuration design to facilitate three things: Future-proof: It should be easy to add additional sources of region and credentials, sync and async, from many sources, including code-generated AWS services. Ergonomic: There should be one obvious way to create an AWS service client. Customers should be able to easily customize the client to make common changes. It should encourage sharing of things that are expensive to create. Shareable: A config object should be usable to configure multiple AWS services.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » AWS Configuration RFC","id":"96","title":"AWS Configuration RFC"},"97":{"body":"The following is an imagined usage guide if this RFC where implemented.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Usage Guide","id":"97","title":"Usage Guide"},"98":{"body":"Using the SDK requires two crates: aws-sdk-: The service you want to use (e.g. dynamodb, s3, sesv2) aws-config: AWS metaconfiguration. This crate contains all the of logic to load configuration for the SDK (regions, credentials, retry configuration, etc.) Add the following to your Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Let's write a small example project to list tables: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let config = aws_config::load_from_env().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n} Tip: Every AWS service exports a top level Error type (e.g. aws_sdk_dynamodb::Error ). Individual operations return specific error types that contain only the error variants returned by the operation . Because all the individual errors implement Into, you can use dynamodb::Error as the return type along with ?. Next, we'll explore some other ways to configure the SDK. Perhaps you want to override the region loaded from the environment with your region. In this case, we'll want more control over how we load config, using aws_config::from_env() directly: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let region_provider = RegionProviderChain::default_provider().or_else(\"us-west-2\"); let config = aws_config::from_env().region(region_provider).load().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Getting Started","id":"98","title":"Getting Started"},"99":{"body":"The Config produced by aws-config can be used with any AWS service. If we wanted to read our Dynamodb DB tables aloud with Polly, we could create a Polly client as well. First, we'll need to add Polly to our Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-sdk-polly = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Then, we can use the shared configuration to build both service clients. The region override will apply to both clients: use aws_sdk_dynamodb as dynamodb;\nuse aws_sdk_polly as polly; #[tokio::main]\nasync fn main() -> Result<(), Box> { // error type changed to `Box` because we now have dynamo and polly errors let config = aws_config::env_loader().with_region(Region::new(\"us-west-2\")).load().await; let dynamodb = dynamodb::Client::new(&config); let polly = polly::Client::new(&config); let resp = dynamodb.list_tables().send().await; let tables = resp.tables.unwrap_or_default(); let table_sentence = format!(\"my dynamo DB tables are: {}\", tables.join(\", \")); let audio = polly.synthesize_speech() .output_format(OutputFormat::Mp3) .text(table_sentence) .voice_id(VoiceId::Joanna) .send() .await?; // Get MP3 data from the response and save it let mut blob = resp .audio_stream .collect() .await .expect(\"failed to read data\"); let mut file = tokio::fs::File::create(\"tables.mp3\") .await .expect(\"failed to create file\"); file.write_all_buf(&mut blob) .await .expect(\"failed to write to file\"); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sharing configuration between multiple services","id":"99","title":"Sharing configuration between multiple services"}},"length":510,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":2,"docs":{"294":{"tf":1.0},"482":{"tf":1.0}}}},"0":{"0":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":2,"docs":{"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"482":{"tf":1.0},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.4142135623730951},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":7,"docs":{"346":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"426":{"tf":1.0},"482":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.7320508075688772}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":18,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":2.449489742783178},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"c":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":44,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":28,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"505":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"264":{"tf":1.0},"34":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":2.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":77,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.449489742783178},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.0},"292":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":4.358898943540674}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"4":{"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"482":{"tf":1.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":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{".":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"482":{"tf":2.449489742783178},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.0}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"66":{"tf":3.605551275463989}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":11,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"482":{"tf":2.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"169":{"tf":3.605551275463989},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.0},"504":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.449489742783178},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.605551275463989},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"df":20,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.0},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"14":{"tf":3.3166247903554},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":27,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.0},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.0},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":34,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.7320508075688772},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":3.872983346207417},"499":{"tf":1.4142135623730951},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":12,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"482":{"tf":1.7320508075688772},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":7,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"482":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":66,"docs":{"1":{"tf":1.0},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":3.0},"276":{"tf":1.4142135623730951},"278":{"tf":2.449489742783178},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"312":{"tf":2.449489742783178},"313":{"tf":4.242640687119285},"314":{"tf":2.23606797749979},"316":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":2.8284271247461903},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"366":{"tf":3.1622776601683795},"367":{"tf":2.449489742783178},"368":{"tf":4.123105625617661},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":4.47213595499958},"200":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":81,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.0},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":14,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":3.872983346207417},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":7.54983443527075},"227":{"tf":4.242640687119285},"228":{"tf":5.385164807134504},"229":{"tf":3.1622776601683795},"230":{"tf":2.0},"231":{"tf":4.47213595499958},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":2.6457513110645907},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.7320508075688772},"495":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.242640687119285},"490":{"tf":2.0},"491":{"tf":3.7416573867739413},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.449489742783178},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":120,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.4641016151377544},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.449489742783178},"234":{"tf":2.23606797749979},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.6457513110645907},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":3.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.6457513110645907},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":3.1622776601683795},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.0}}}}}}},"t":{"df":37,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.23606797749979},"290":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.6457513110645907},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.0},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":4.123105625617661},"460":{"tf":3.0},"482":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"488":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.6457513110645907},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.4142135623730951},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.0},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":31,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":3.7416573867739413},"324":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":3.3166247903554},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":2.23606797749979},"432":{"tf":2.23606797749979},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":2.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":2.6457513110645907},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":2,"docs":{"482":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.7320508075688772},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.0},"509":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.4142135623730951},"412":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"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":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"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":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"351":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"482":{"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":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":128,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.6457513110645907},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.449489742783178},"188":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":3.872983346207417},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":2.23606797749979},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"337":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":14,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":94,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":2.6457513110645907},"369":{"tf":2.0},"371":{"tf":1.0},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"410":{"tf":2.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":3.3166247903554},"415":{"tf":3.605551275463989},"416":{"tf":2.0},"418":{"tf":4.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.6457513110645907},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":76,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":28,"docs":{"240":{"tf":1.0},"248":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":2,"docs":{"261":{"tf":1.0},"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":66,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.0},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.0},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.0},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":70,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.0},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":25,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.449489742783178},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"405":{"tf":2.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":48,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.4142135623730951},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.0},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":38,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":10,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"482":{"tf":1.0},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"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":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":2.0},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"'":{"/":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"482":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":33,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":2.6457513110645907},"347":{"tf":2.8284271247461903},"349":{"tf":3.4641016151377544},"350":{"tf":4.795831523312719},"351":{"tf":4.47213595499958},"352":{"tf":2.6457513110645907},"353":{"tf":2.0},"354":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":2.449489742783178},"359":{"tf":3.0},"361":{"tf":2.6457513110645907},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":3.7416573867739413},"459":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":3.4641016151377544},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.0},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"313":{"tf":3.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"41":{"tf":2.0},"482":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":124,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":4.795831523312719},"262":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"280":{"tf":1.0},"287":{"tf":3.605551275463989},"289":{"tf":3.872983346207417},"290":{"tf":3.1622776601683795},"291":{"tf":3.0},"293":{"tf":3.0},"294":{"tf":2.6457513110645907},"295":{"tf":3.605551275463989},"296":{"tf":2.8284271247461903},"297":{"tf":4.69041575982343},"298":{"tf":3.0},"299":{"tf":2.6457513110645907},"300":{"tf":1.7320508075688772},"301":{"tf":3.605551275463989},"303":{"tf":1.4142135623730951},"305":{"tf":2.23606797749979},"306":{"tf":2.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"482":{"tf":3.7416573867739413},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.0},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.449489742783178},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":133,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":3.0},"165":{"tf":2.23606797749979},"166":{"tf":3.1622776601683795},"167":{"tf":2.6457513110645907},"169":{"tf":3.605551275463989},"170":{"tf":3.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"482":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.0},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":3.872983346207417},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.23606797749979},"398":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":2.23606797749979},"418":{"tf":2.449489742783178},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":2,"docs":{"10":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":14,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":3.3166247903554},"217":{"tf":2.449489742783178},"218":{"tf":2.6457513110645907},"219":{"tf":2.6457513110645907},"220":{"tf":2.6457513110645907},"221":{"tf":4.47213595499958},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":2.8284271247461903},"381":{"tf":2.6457513110645907},"382":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"508":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.8284271247461903},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":15,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":9,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"204":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.0},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":8.602325267042627},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":5,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":4,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":12,"docs":{"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"382":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.7320508075688772},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":1.7320508075688772},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":45,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"201":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.6457513110645907},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":1.7320508075688772},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":6.855654600401044},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979},"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":7,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"226":{"tf":2.449489742783178},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"236":{"tf":1.0},"482":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":4.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"369":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{"483":{"tf":1.0}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"297":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":111,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.23606797749979},"111":{"tf":2.449489742783178},"112":{"tf":2.449489742783178},"113":{"tf":2.6457513110645907},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":2.0},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":3.1622776601683795},"471":{"tf":3.605551275463989},"472":{"tf":3.0},"475":{"tf":3.4641016151377544},"476":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":2.0},"482":{"tf":3.4641016151377544},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"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":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":5.291502622129181}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.0},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":25,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.1622776601683795},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.23606797749979},"67":{"tf":4.0},"68":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}},"i":{"df":13,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"274":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"361":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":2,"docs":{"112":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0},"482":{"tf":1.7320508075688772}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.449489742783178},"439":{"tf":2.23606797749979},"440":{"tf":1.7320508075688772},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"482":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":54,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":1.7320508075688772},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.23606797749979},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":1,"docs":{"482":{"tf":1.0}}}}}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":2.449489742783178},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":2.449489742783178},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"431":{"tf":1.0},"482":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.23606797749979}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"289":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"482":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":4.795831523312719},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.6457513110645907},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":46,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":38,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.6457513110645907},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":7,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":8,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.23606797749979},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"423":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":1,"docs":{"482":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"<":{"df":0,"docs":{},"u":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.0},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":2.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":44,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":3.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.23606797749979},"141":{"tf":2.8284271247461903},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.1622776601683795},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":3.3166247903554},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.6457513110645907},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.123105625617661},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":1.7320508075688772},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":11,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.242640687119285},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":36,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"482":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":4.47213595499958},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.23606797749979},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"<":{"df":1,"docs":{"482":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":98,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.0},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"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":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":24,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.0},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}},"q":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"236":{"tf":1.7320508075688772},"482":{"tf":2.6457513110645907}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":144,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":2.0},"235":{"tf":1.0},"236":{"tf":2.0},"239":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.4641016151377544},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.1622776601683795},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"445":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.605551275463989},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"482":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"310":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":2.23606797749979},"459":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":3.1622776601683795},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"112":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.0},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":15,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"408":{"tf":1.0},"438":{"tf":3.0},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":37,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"482":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":3.872983346207417},"156":{"tf":3.4641016151377544},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":2.0},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.6457513110645907},"356":{"tf":2.8284271247461903},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":1.7320508075688772},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"482":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.0},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.0},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.449489742783178},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.1622776601683795},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0},"88":{"tf":3.3166247903554},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.0},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"q":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":1.7320508075688772},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.0},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"240":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.4142135623730951},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.605551275463989},"118":{"tf":2.0},"119":{"tf":2.8284271247461903},"120":{"tf":2.23606797749979},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":20,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":38,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.23606797749979},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":2.23606797749979},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.7320508075688772},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.449489742783178},"277":{"tf":3.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":122,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":2.0},"415":{"tf":3.3166247903554},"416":{"tf":2.8284271247461903},"418":{"tf":3.3166247903554},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":21,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"150":{"tf":2.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.0},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":31,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"152":{"tf":2.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.0},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":51,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.0},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":18,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":27,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"a":{"df":1,"docs":{"482":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"457":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":19,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"482":{"tf":3.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"482":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":6,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":2.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"482":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":154,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":3.3166247903554},"213":{"tf":1.0},"214":{"tf":2.6457513110645907},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.1622776601683795},"434":{"tf":1.7320508075688772},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.656854249492381},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.4641016151377544},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"317":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"437":{"tf":2.6457513110645907},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"482":{"tf":2.449489742783178}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"459":{"tf":1.0},"482":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"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":{"<":{"b":{"df":1,"docs":{"482":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":3.1622776601683795},"125":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":3.605551275463989},"131":{"tf":2.8284271247461903},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.4142135623730951},"487":{"tf":3.605551275463989},"488":{"tf":1.4142135623730951},"489":{"tf":4.69041575982343},"490":{"tf":2.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":2.8284271247461903},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":80,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"482":{"tf":5.196152422706632},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":114,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":2.0},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":2.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":3.4641016151377544},"95":{"tf":6.164414002968976},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":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":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"482":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.0},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.0},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.23606797749979},"274":{"tf":2.23606797749979},"275":{"tf":2.0},"276":{"tf":2.8284271247461903},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.6457513110645907},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":80,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.449489742783178},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":5,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":123,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"5":{"tf":2.0},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":1.7320508075688772},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"17":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":162,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.7320508075688772},"169":{"tf":3.872983346207417},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"d":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":54,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.7320508075688772},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"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":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"y":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":5.477225575051661},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":65,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"247":{"tf":2.449489742783178},"248":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":2.23606797749979},"252":{"tf":1.4142135623730951},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":3.1622776601683795},"257":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":3.4641016151377544},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":39,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"386":{"tf":2.23606797749979},"387":{"tf":2.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"402":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772},"409":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":46,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":160,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":3.0},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":1.0},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":3.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"274":{"tf":4.242640687119285},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":3.1622776601683795},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.3166247903554},"84":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":2.8284271247461903},"88":{"tf":2.0},"89":{"tf":3.7416573867739413},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"<":{"df":0,"docs":{},"u":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":113,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"351":{"tf":1.0},"40":{"tf":1.4142135623730951},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":3.1622776601683795},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":22,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"482":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":175,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":4.0},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":2.0},"36":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"447":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"482":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":89,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":35,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"482":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"119":{"tf":1.0},"145":{"tf":1.4142135623730951},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"482":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"{":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"475":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.7320508075688772},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.7320508075688772},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":4.58257569495584},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":2.6457513110645907},"261":{"tf":3.1622776601683795},"262":{"tf":1.4142135623730951},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"504":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":4.358898943540674},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.0},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"482":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.0},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.8284271247461903},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":30,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":25,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"482":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":35,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.6457513110645907},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":17,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":3.872983346207417},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":25,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.0},"205":{"tf":3.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"209":{"tf":2.449489742783178},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.6457513110645907},"213":{"tf":1.0},"214":{"tf":3.1622776601683795},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":2.6457513110645907},"412":{"tf":1.4142135623730951},"413":{"tf":2.8284271247461903},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":3.605551275463989},"418":{"tf":1.4142135623730951},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.0}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.23606797749979},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.0},"506":{"tf":2.0},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":118,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":3.7416573867739413},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.23606797749979},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"363":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"135":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":1.0},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"&":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":171,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.3166247903554},"310":{"tf":3.872983346207417},"312":{"tf":1.0},"313":{"tf":5.477225575051661},"319":{"tf":2.8284271247461903},"32":{"tf":2.23606797749979},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"390":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.0},"397":{"tf":2.6457513110645907},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.23606797749979},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":5.0},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":2,"docs":{"482":{"tf":1.7320508075688772},"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0},"482":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":2.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":54,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":4.795831523312719},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":11,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":247,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":2.8284271247461903},"222":{"tf":1.0},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":101,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.23606797749979},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.0},"485":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":2.0},"492":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":5,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}}}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.449489742783178},"49":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":6.48074069840786},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.449489742783178},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":71,"docs":{"105":{"tf":2.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":2.6457513110645907},"188":{"tf":3.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":3.4641016151377544},"193":{"tf":3.7416573867739413},"194":{"tf":4.47213595499958},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":2.6457513110645907},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":3.1622776601683795},"432":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":6,"docs":{"171":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"!":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":5,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":2.8284271247461903},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"195":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":2,"docs":{"294":{"tf":1.0},"482":{"tf":1.0}}}},"0":{"0":{"1":{"df":13,"docs":{"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},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"2":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":10,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":10,"docs":{"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},"130":{"tf":1.0},"131":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":10,"docs":{"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},"140":{"tf":1.0},"95":{"tf":1.0}}},"6":{"df":5,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":11,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":9,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"95":{"tf":1.0}}},"9":{"df":9,"docs":{"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},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"2":{"df":14,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":15,"docs":{"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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.0},"233":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":20,"docs":{"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},"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},"95":{"tf":1.0}}},"9":{"df":5,"docs":{"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":19,"docs":{"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},"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},"280":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":7,"docs":{"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":16,"docs":{"287":{"tf":1.0},"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},"300":{"tf":1.0},"301":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":16,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":6,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":11,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"7":{"df":17,"docs":{"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},"95":{"tf":1.0}}},"8":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"9":{"df":7,"docs":{"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":36,"docs":{"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},"408":{"tf":1.0},"409":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":10,"docs":{"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},"418":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":17,"docs":{"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":14,"docs":{"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},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":12,"docs":{"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"482":{"tf":1.0},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.7320508075688772},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":19,"docs":{"346":{"tf":2.449489742783178},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"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},"426":{"tf":1.0},"482":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.7320508075688772}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":18,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":2.449489742783178},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"c":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":44,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":40,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"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},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":2.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"415":{"tf":1.4142135623730951},"430":{"tf":1.0},"465":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"504":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":2.0},"505":{"tf":1.4142135623730951},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"264":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":10,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"331":{"tf":2.0},"350":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":2.0},"368":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.7320508075688772},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":9,"docs":{"69":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":87,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.6457513110645907},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":4.358898943540674}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"4":{"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"482":{"tf":1.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":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{".":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"482":{"tf":2.449489742783178},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.4142135623730951}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.7416573867739413},"67":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":11,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"482":{"tf":2.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"169":{"tf":3.7416573867739413},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.23606797749979},"504":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}}},"df":20,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.4142135623730951},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":35,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.23606797749979},"14":{"tf":3.4641016151377544},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":2.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.7320508075688772},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.7320508075688772},"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},"482":{"tf":1.0},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":38,"docs":{"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},"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.4142135623730951},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":3.872983346207417},"499":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":12,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"482":{"tf":1.7320508075688772},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":7,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"482":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":66,"docs":{"1":{"tf":1.0},"104":{"tf":2.0},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":111,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.6457513110645907},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":2.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":2.23606797749979},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.0},"303":{"tf":2.0},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.6457513110645907},"311":{"tf":2.23606797749979},"312":{"tf":2.8284271247461903},"313":{"tf":4.358898943540674},"314":{"tf":2.6457513110645907},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":3.0},"336":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.449489742783178},"397":{"tf":2.23606797749979},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.8284271247461903},"364":{"tf":2.0},"365":{"tf":1.0},"366":{"tf":3.3166247903554},"367":{"tf":2.6457513110645907},"368":{"tf":4.242640687119285},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":2.23606797749979},"199":{"tf":4.58257569495584},"200":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":81,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.7320508075688772},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":14,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.4142135623730951},"482":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"251":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.0},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":1.0},"432":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.449489742783178}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":4.0},"223":{"tf":2.0},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":7.681145747868608},"227":{"tf":4.358898943540674},"228":{"tf":5.477225575051661},"229":{"tf":3.3166247903554},"230":{"tf":2.23606797749979},"231":{"tf":4.58257569495584},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":15,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.358898943540674},"490":{"tf":2.23606797749979},"491":{"tf":3.872983346207417},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.6457513110645907},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":157,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.605551275463989},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.7320508075688772},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":2.23606797749979},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":2.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.449489742783178},"434":{"tf":2.6457513110645907},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.7320508075688772},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":3.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":2.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.0},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":32,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":2.0},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}}}},"t":{"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.449489742783178},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.8284271247461903},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.4142135623730951},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.4142135623730951},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":2.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":93,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.23606797749979},"458":{"tf":4.242640687119285},"460":{"tf":3.0},"482":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.8284271247461903},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.449489742783178},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.7320508075688772},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.4142135623730951},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":34,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":4.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":2.23606797749979},"331":{"tf":2.0},"419":{"tf":2.8284271247461903},"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"425":{"tf":1.7320508075688772},"426":{"tf":2.6457513110645907},"427":{"tf":2.449489742783178},"428":{"tf":3.4641016151377544},"429":{"tf":1.7320508075688772},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":2.449489742783178},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"21":{"tf":1.7320508075688772},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":2.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":2.6457513110645907},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":2,"docs":{"482":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":2.23606797749979},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"301":{"tf":2.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":2.0},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.4142135623730951},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.7320508075688772},"412":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"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":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"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":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"351":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"345":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"482":{"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":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.0},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":140,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.6457513110645907},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.8284271247461903},"153":{"tf":2.8284271247461903},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.6457513110645907},"187":{"tf":1.0},"188":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":4.123105625617661},"195":{"tf":1.7320508075688772},"196":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.449489742783178},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":2.8284271247461903},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":18,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":94,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.8284271247461903},"364":{"tf":1.4142135623730951},"368":{"tf":2.6457513110645907},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":39,"docs":{"0":{"tf":1.0},"100":{"tf":2.449489742783178},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":2.0},"368":{"tf":2.8284271247461903},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"410":{"tf":2.449489742783178},"411":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":3.4641016151377544},"415":{"tf":3.7416573867739413},"416":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":4.123105625617661},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.8284271247461903},"238":{"tf":2.23606797749979},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":80,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":2.23606797749979},"241":{"tf":2.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.449489742783178},"396":{"tf":2.449489742783178},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.449489742783178},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.23606797749979},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"240":{"tf":1.0},"248":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.4142135623730951},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":2,"docs":{"261":{"tf":1.0},"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":71,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.242640687119285},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.1622776601683795},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.23606797749979},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":73,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":25,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.6457513110645907},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":2.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"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":2.23606797749979},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":2.0},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":53,"docs":{"0":{"tf":2.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.4142135623730951},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.4142135623730951},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.23606797749979},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.8284271247461903},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.4142135623730951},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":38,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":10,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"482":{"tf":1.0},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.4142135623730951},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":2.0},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.449489742783178},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"'":{"/":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"482":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":37,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":3.0},"347":{"tf":3.0},"348":{"tf":1.0},"349":{"tf":3.605551275463989},"350":{"tf":5.0},"351":{"tf":4.69041575982343},"352":{"tf":3.0},"353":{"tf":2.449489742783178},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":3.0},"358":{"tf":1.0},"359":{"tf":3.1622776601683795},"360":{"tf":1.0},"361":{"tf":3.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.7416573867739413},"44":{"tf":3.872983346207417},"459":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":3.4641016151377544},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.7320508075688772},"313":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.7320508075688772},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"41":{"tf":2.0},"482":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":126,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":2.449489742783178},"261":{"tf":4.898979485566356},"262":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":3.0},"280":{"tf":1.0},"287":{"tf":3.872983346207417},"288":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":3.3166247903554},"291":{"tf":3.3166247903554},"292":{"tf":1.0},"293":{"tf":3.1622776601683795},"294":{"tf":2.8284271247461903},"295":{"tf":3.872983346207417},"296":{"tf":3.1622776601683795},"297":{"tf":4.898979485566356},"298":{"tf":3.3166247903554},"299":{"tf":3.0},"300":{"tf":2.0},"301":{"tf":3.872983346207417},"303":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"306":{"tf":2.23606797749979},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"482":{"tf":3.7416573867739413},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":33,"docs":{"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":2.0},"260":{"tf":1.7320508075688772},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":24,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.7320508075688772},"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},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":134,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.3166247903554},"164":{"tf":3.1622776601683795},"165":{"tf":2.6457513110645907},"166":{"tf":3.3166247903554},"167":{"tf":2.8284271247461903},"168":{"tf":1.0},"169":{"tf":3.7416573867739413},"170":{"tf":3.1622776601683795},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.4142135623730951},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":64,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"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.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"482":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":3.872983346207417},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.449489742783178},"398":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":2.6457513110645907},"415":{"tf":2.449489742783178},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":14,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":3.605551275463989},"217":{"tf":2.8284271247461903},"218":{"tf":2.8284271247461903},"219":{"tf":3.1622776601683795},"220":{"tf":3.0},"221":{"tf":4.69041575982343},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":3.0},"381":{"tf":2.8284271247461903},"382":{"tf":2.8284271247461903},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":2.23606797749979},"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.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":3.0},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":19,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":22,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"204":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":8.602325267042627},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":2.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":5,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":4,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":16,"docs":{"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.449489742783178},"382":{"tf":2.0},"383":{"tf":1.7320508075688772},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":2.0},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.0},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.6457513110645907},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":2.6457513110645907},"93":{"tf":3.7416573867739413},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":45,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"247":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":2.0},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":6.855654600401044},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979},"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":7,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"226":{"tf":2.449489742783178},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"236":{"tf":1.0},"482":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":4.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{"483":{"tf":1.0}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"297":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":125,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":2.23606797749979},"470":{"tf":3.3166247903554},"471":{"tf":3.7416573867739413},"472":{"tf":3.1622776601683795},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":3.7416573867739413},"476":{"tf":2.0},"477":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":3.605551275463989},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"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":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":5.291502622129181}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.23606797749979},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.4641016151377544},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":4.123105625617661},"68":{"tf":3.4641016151377544}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.4142135623730951}},"i":{"df":13,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"274":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"361":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":2,"docs":{"112":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0},"482":{"tf":1.7320508075688772}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":2.0},"324":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.6457513110645907},"439":{"tf":2.449489742783178},"440":{"tf":2.0},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"478":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":2.23606797749979},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":50,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.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},"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},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"482":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":54,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":2.0},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"12":{"tf":1.0},"185":{"tf":1.7320508075688772},"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},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":2.0},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.449489742783178},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":1,"docs":{"482":{"tf":1.0}}}}}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":2.449489742783178},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":2.6457513110645907},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"431":{"tf":1.0},"482":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.449489742783178}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"289":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"482":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":2.0},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":4.795831523312719},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":2.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.6457513110645907},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":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":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":2.0},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":42,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.8284271247461903},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.6457513110645907},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":2.0},"248":{"tf":3.0},"249":{"tf":2.23606797749979},"250":{"tf":2.0},"251":{"tf":2.6457513110645907},"252":{"tf":2.8284271247461903},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":17,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":8,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.449489742783178},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"423":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":1,"docs":{"482":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"<":{"df":0,"docs":{},"u":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.23606797749979},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":2.0},"465":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":2.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":44,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":3.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":3.1622776601683795},"142":{"tf":2.23606797749979},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.4641016151377544},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":1.0},"251":{"tf":3.4641016151377544},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.8284271247461903},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.242640687119285},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.23606797749979},"75":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":2.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":11,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":2.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.358898943540674},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":49,"docs":{"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.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.7320508075688772},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"482":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":4.47213595499958},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":2.0},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":2.0},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.449489742783178},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"<":{"df":1,"docs":{"482":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":108,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"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":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":24,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.0},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":2.0},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.4142135623730951},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}},"q":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"236":{"tf":1.7320508075688772},"482":{"tf":2.6457513110645907}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.7320508075688772},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":146,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":2.0},"212":{"tf":1.4142135623730951},"22":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.605551275463989},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.3166247903554},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.449489742783178},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"482":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"310":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":2.6457513110645907},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":2.6457513110645907},"458":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":3.4641016151377544},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":16,"docs":{"112":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"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":2.0},"345":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.4142135623730951},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":15,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"397":{"tf":1.7320508075688772},"408":{"tf":1.0},"438":{"tf":3.1622776601683795},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":2.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":37,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"482":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":4.0},"156":{"tf":3.605551275463989},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.449489742783178},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.8284271247461903},"356":{"tf":3.0},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"482":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.7320508075688772},"331":{"tf":1.0},"335":{"tf":1.7320508075688772},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.23606797749979},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.6457513110645907},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.3166247903554},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.8284271247461903},"86":{"tf":1.0},"88":{"tf":3.4641016151377544},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":2.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"q":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":2.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":20,"docs":{"101":{"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},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.4142135623730951},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":21,"docs":{"240":{"tf":1.7320508075688772},"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},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.4142135623730951},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":3.7416573867739413},"118":{"tf":2.23606797749979},"119":{"tf":2.8284271247461903},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":20,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.4142135623730951},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.23606797749979},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":42,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.449489742783178},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"279":{"tf":2.0},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":2.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.6457513110645907},"277":{"tf":3.1622776601683795},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":124,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":2.23606797749979},"415":{"tf":3.4641016151377544},"416":{"tf":3.0},"417":{"tf":1.0},"418":{"tf":3.4641016151377544},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.4641016151377544}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":24,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.449489742783178},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"152":{"tf":2.6457513110645907},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.7320508075688772},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.4142135623730951},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.6457513110645907},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.4142135623730951},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":33,"docs":{"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":28,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":51,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":18,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":27,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"a":{"df":1,"docs":{"482":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"457":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":19,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"482":{"tf":3.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"482":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":6,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":2.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"482":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":159,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":3.4641016151377544},"213":{"tf":1.0},"214":{"tf":2.8284271247461903},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.8284271247461903},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.4641016151377544},"434":{"tf":2.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.656854249492381},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.605551275463989},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":13,"docs":{"317":{"tf":1.7320508075688772},"318":{"tf":3.1622776601683795},"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":3.0},"439":{"tf":2.0},"440":{"tf":2.0},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":2.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"458":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.23606797749979},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.4641016151377544},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"482":{"tf":2.449489742783178}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"459":{"tf":1.0},"482":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"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":{"<":{"b":{"df":1,"docs":{"482":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":3.3166247903554},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":3.7416573867739413},"131":{"tf":3.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.449489742783178},"486":{"tf":1.7320508075688772},"487":{"tf":3.872983346207417},"488":{"tf":1.7320508075688772},"489":{"tf":4.795831523312719},"490":{"tf":2.23606797749979},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":3.0},"494":{"tf":2.0},"495":{"tf":2.0},"496":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":80,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"482":{"tf":5.196152422706632},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":404,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"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},"259":{"tf":2.23606797749979},"260":{"tf":2.23606797749979},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.8284271247461903},"303":{"tf":1.7320508075688772},"304":{"tf":2.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":2.23606797749979},"322":{"tf":2.23606797749979},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":2.23606797749979},"333":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"370":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"378":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":2.23606797749979},"411":{"tf":1.4142135623730951},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"433":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.23606797749979},"465":{"tf":2.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"473":{"tf":2.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":2.6457513110645907},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":2.23606797749979},"483":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"94":{"tf":3.7416573867739413},"95":{"tf":6.324555320336759},"96":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":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":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"482":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.23606797749979},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.23606797749979},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.6457513110645907},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":2.23606797749979},"275":{"tf":2.23606797749979},"276":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":2.8284271247461903},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":85,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.6457513110645907},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.6457513110645907},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":5,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":131,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":2.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},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.0},"169":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":2.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.4142135623730951}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"17":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":182,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"169":{"tf":4.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"d":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":54,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"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":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"y":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":5.477225575051661},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":65,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.449489742783178},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"240":{"tf":2.8284271247461903},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":1.4142135623730951},"247":{"tf":2.6457513110645907},"248":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.7320508075688772},"255":{"tf":2.8284271247461903},"256":{"tf":3.4641016151377544},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.7320508075688772},"67":{"tf":1.0},"81":{"tf":3.605551275463989},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.7320508075688772}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":52,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":2.8284271247461903},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":2.23606797749979},"396":{"tf":2.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":2.8284271247461903},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":2.23606797749979},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":62,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":2.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951},"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},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":175,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.4142135623730951},"141":{"tf":3.3166247903554},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":4.358898943540674},"275":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":3.4641016151377544},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":3.1622776601683795},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.605551275463989},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":2.23606797749979},"89":{"tf":3.872983346207417},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"<":{"df":0,"docs":{},"u":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":113,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":2.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.449489742783178},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.23606797749979},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":44,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":22,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"482":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":2.0},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":196,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.605551275463989},"153":{"tf":4.242640687119285},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":3.1622776601683795},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.449489742783178},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"44":{"tf":1.0},"449":{"tf":2.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"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.7320508075688772},"459":{"tf":1.7320508075688772},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"482":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":90,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":35,"docs":{"100":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"482":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"482":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"{":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"475":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.7320508075688772},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":4.58257569495584},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":2.23606797749979},"260":{"tf":2.8284271247461903},"261":{"tf":3.3166247903554},"262":{"tf":1.7320508075688772},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":2.0},"502":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.4641016151377544},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":4.358898943540674},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.1622776601683795},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"482":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.4142135623730951},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.8284271247461903},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":30,"docs":{"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":25,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"482":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.4142135623730951},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"5":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":35,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.6457513110645907},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":17,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.4142135623730951},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":4.0},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":30,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.6457513110645907},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"214":{"tf":3.4641016151377544},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":2.8284271247461903},"412":{"tf":1.7320508075688772},"413":{"tf":3.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":3.7416573867739413},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.449489742783178},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.23606797749979},"506":{"tf":2.23606797749979},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":119,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":4.0},"323":{"tf":2.0},"324":{"tf":2.6457513110645907},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":2.0},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.449489742783178},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":2.0},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.6457513110645907},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"470":{"tf":1.0},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"135":{"tf":1.0},"15":{"tf":2.0},"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.4142135623730951},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"&":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":176,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.4641016151377544},"310":{"tf":4.0},"312":{"tf":1.0},"313":{"tf":5.5677643628300215},"319":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.6457513110645907},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"386":{"tf":1.4142135623730951},"390":{"tf":2.449489742783178},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":2.8284271247461903},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":5.0},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":2,"docs":{"482":{"tf":1.7320508075688772},"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":3.0},"41":{"tf":2.0},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.7320508075688772},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0},"482":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":2.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":54,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":2.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":4.795831523312719},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":14,"docs":{"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.449489742783178},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":249,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":2.449489742783178},"221":{"tf":3.0},"222":{"tf":1.4142135623730951},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":2.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":107,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.449489742783178},"468":{"tf":1.0},"472":{"tf":1.7320508075688772},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"485":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":5,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}}}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":6.48074069840786},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.6457513110645907},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":77,"docs":{"105":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":3.3166247903554},"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":3.7416573867739413},"193":{"tf":4.0},"194":{"tf":4.69041575982343},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":3.0},"285":{"tf":3.1622776601683795},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.6457513110645907},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":1.7320508075688772},"425":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":2.449489742783178},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":3.3166247903554},"432":{"tf":2.449489742783178},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":7,"docs":{"171":{"tf":2.6457513110645907},"172":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":2.449489742783178},"175":{"tf":2.449489742783178},"176":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"!":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":2.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":5,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":62,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":2.0},"509":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":3.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"title":{"root":{"1":{".":{"0":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":1,"docs":{"191":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"346":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"197":{"tf":1.0},"311":{"tf":1.0}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"433":{"tf":1.0},"447":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"261":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":5,"docs":{"448":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0}},"j":{"a":{"c":{"df":1,"docs":{"394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"312":{"tf":1.0},"398":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}},"n":{"df":14,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"447":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"174":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"302":{"tf":1.0},"474":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":1,"docs":{"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"288":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"412":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":11,"docs":{"127":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"357":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"96":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"df":3,"docs":{"367":{"tf":1.0},"448":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"123":{"tf":1.0},"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"382":{"tf":1.0}}},"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":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"419":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"382":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"271":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"390":{"tf":1.4142135623730951},"397":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"362":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"215":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"378":{"tf":1.0},"408":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}}}}},"df":2,"docs":{"368":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"436":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"200":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"502":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"150":{"tf":1.0},"165":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"485":{"tf":1.0}},"i":{"df":4,"docs":{"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"110":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"291":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"433":{"tf":1.0},"453":{"tf":1.0},"477":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"134":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"301":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"425":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"8":{"tf":1.0},"91":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"287":{"tf":1.0},"45":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"305":{"tf":1.0},"405":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"368":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"399":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":11,"docs":{"125":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"437":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"287":{"tf":1.0},"299":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"497":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"306":{"tf":1.0},"56":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"459":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"339":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"312":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"410":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"240":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"387":{"tf":1.0}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"248":{"tf":1.0},"498":{"tf":1.0}}}}},"df":1,"docs":{"381":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"208":{"tf":1.0},"221":{"tf":1.4142135623730951},"353":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"489":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"281":{"tf":1.0},"284":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"325":{"tf":1.0},"375":{"tf":1.0},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.4142135623730951}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"158":{"tf":1.0},"403":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}},"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":3,"docs":{"32":{"tf":1.0},"388":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"507":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"380":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"502":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.0},"42":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"259":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"437":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"259":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"400":{"tf":1.0},"474":{"tf":1.0}}}},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.0},"255":{"tf":1.0},"314":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0}}}}}}}},"f":{".":{"a":{".":{"df":0,"docs":{},"q":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"498":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"401":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}},"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"398":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"310":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"483":{"tf":1.0},"9":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.0},"477":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"o":{"df":2,"docs":{"17":{"tf":1.0},"311":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"244":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"304":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.0},"317":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":15,"docs":{"108":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"479":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"75":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"294":{"tf":1.0},"506":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"433":{"tf":1.0},"437":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"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":35,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"397":{"tf":1.0},"415":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"263":{"tf":1.0},"433":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"298":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"20":{"tf":1.0},"398":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"441":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"393":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"401":{"tf":1.0},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"467":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"502":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"153":{"tf":1.0},"382":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"257":{"tf":1.0},"458":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"324":{"tf":1.0},"326":{"tf":1.0},"504":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"240":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"498":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"237":{"tf":1.0},"437":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":2,"docs":{"37":{"tf":1.0},"458":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"272":{"tf":1.0},"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"400":{"tf":1.0},"448":{"tf":1.0},"487":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"454":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"285":{"tf":1.0},"494":{"tf":1.0},"99":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"121":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"14":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"390":{"tf":1.0}}},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"29":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"219":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"295":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":16,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":10,"docs":{"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"397":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"275":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"312":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"418":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"296":{"tf":1.0},"334":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"307":{"tf":1.0},"410":{"tf":1.0}},"e":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"330":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"310":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"219":{"tf":1.0},"498":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"237":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}},"df":15,"docs":{"14":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"255":{"tf":1.0},"325":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"475":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"317":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"133":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":2,"docs":{"353":{"tf":1.0},"494":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"406":{"tf":1.0},"440":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"437":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"301":{"tf":1.0}}}}}}},"f":{"c":{"df":56,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"61":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"252":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}}}}},"s":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"288":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"284":{"tf":1.0},"358":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"306":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"3":{"df":1,"docs":{"504":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"382":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":14,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"362":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"500":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"240":{"tf":1.0},"256":{"tf":1.0},"404":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"397":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"375":{"tf":1.0},"381":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"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":1,"docs":{"69":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"302":{"tf":1.0},"453":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"126":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"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":{"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"4":{"df":2,"docs":{"230":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"505":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"395":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":19,"docs":{"11":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"449":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.0},"372":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}}},"v":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"169":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"208":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"197":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"458":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"448":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"329":{"tf":1.0},"368":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"443":{"tf":1.0},"447":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"155":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"223":{"tf":1.0},"283":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"184":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"410":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"110":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":14,"docs":{"243":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"397":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"504":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"329":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"271":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"13":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"504":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"392":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":9,"docs":{"108":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"378":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"398":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"59":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"257":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":1.0},"148":{"tf":1.0},"483":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"250":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":1.0},"498":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["overview.html#design-overview","overview.html#acknowledgments","overview.html#external-api-overview","overview.html#internals","overview.html#code-generation","tenets.html#rust-sdk-design-tenets","tenets.html#details-justifications-and-ramifications","tenets.html#batteries-included-but-replaceable","tenets.html#make-common-problems-easy-to-solve","tenets.html#design-for-the-future","faq.html#design-faq","faq.html#what-is-smithy","faq.html#why-is-there-one-crate-per-service","faq.html#why-dont-the-sdk-service-crates-implement-serdeserialize-or-serdedeserialize-for-any-types","faq.html#i-want-to-add-new-request-building-behavior-should-i-add-that-functionality-to-the-make_operation-codegen-or-write-a-request-altering-middleware","transport/overview.html#transport","transport/overview.html#where-we-are-today","transport/overview.html#where-we-want-to-go","transport/operation.html#http-based-operations","transport/operation.html#operation-phases","transport/operation.html#input-construction","transport/operation.html#operation-construction","transport/operation.html#operation-dispatch-and-middleware","transport/operation.html#operation-parsing-and-response-loading","transport/middleware.html#http-middleware","transport/connector.html","smithy/overview.html#smithy","smithy/overview.html#internals","smithy/simple_shapes.html#simple-shapes","smithy/simple_shapes.html#big-numbers","smithy/simple_shapes.html#timestamps","smithy/simple_shapes.html#strings","smithy/simple_shapes.html#document-types","smithy/recursive_shapes.html#recursive-shapes","smithy/aggregate_shapes.html#aggregate-shapes","smithy/aggregate_shapes.html#list","smithy/aggregate_shapes.html#set","smithy/aggregate_shapes.html#map","smithy/aggregate_shapes.html#structure","smithy/aggregate_shapes.html#example-structure-output","smithy/aggregate_shapes.html#union","smithy/aggregate_shapes.html#generated-union-example","smithy/endpoint.html#endpoint-resolution","smithy/endpoint.html#requirements","smithy/endpoint.html#design","smithy/backwards-compat.html#backwards-compatibility","smithy/backwards-compat.html#new-operation-added","smithy/backwards-compat.html#new-member-added-to-structure","smithy/backwards-compat.html#summary","smithy/backwards-compat.html#validation--required-members","smithy/backwards-compat.html#new-union-variant-added","client/overview.html#smithy-client","client/orchestrator.html#what-is-the-orchestrator","client/orchestrator.html#how-is-an-orchestrator-configured","client/orchestrator.html#what-does-the-orchestrator-do","client/orchestrator.html#how-is-the-orchestrator-implemented-in-rust","client/orchestrator.html#avoiding-generics-at-all-costs","client/orchestrator.html#the-actual-code","client/orchestrator.html#frequently-asked-questions","client/orchestrator.html#why-cant-users-create-and-use-their-own-runtime-plugins","client/orchestrator.html#why-does-the-orchestrator-exist","client/orchestrator.html#why-does-this-document-exist-when-theres-already-an-orchestrator-rfc","client/identity_and_auth.html#identity-and-auth-in-clients","client/identity_and_auth.html#terminology","client/identity_and_auth.html#overview-of-smithy-client-auth","client/identity_and_auth.html#the-configuration-stage","client/identity_and_auth.html#the-execution-stage","client/identity_and_auth.html#how-this-looks-in-rust","client/identity_and_auth.html#challenges-with-this-identity-design","server/overview.html#smithy-server","server/middleware.html#middleware","server/middleware.html#introduction-to-tower","server/middleware.html#applying-middleware","server/middleware.html#a-outer-middleware","server/middleware.html#b-route-middleware","server/middleware.html#c-operation-specific-http-middleware","server/middleware.html#d-operation-specific-model-middleware","server/middleware.html#plugin-system","server/instrumentation.html#instrumentation","server/instrumentation.html#spans-over-the-requestresponse-lifecycle","server/instrumentation.html#example","server/instrumentation.html#interactions-with-sensitivity","server/from_parts.html#accessing-un-modelled-data","server/anatomy.html#the-anatomy-of-a-service","server/anatomy.html#operations","server/anatomy.html#serialization-and-deserialization","server/anatomy.html#upgrading-a-model-service","server/anatomy.html#routers","server/anatomy.html#plugins","server/anatomy.html#builders","server/anatomy.html#accessing-unmodelled-data","server/code_generation.html#generating-common-service-code","server/code_generation.html#folder-structure","server/code_generation.html#generating-code","rfcs/overview.html#rfcs","rfcs/overview.html#previously-submitted-rfcs","rfcs/rfc0001_shared_config.html#aws-configuration-rfc","rfcs/rfc0001_shared_config.html#usage-guide","rfcs/rfc0001_shared_config.html#getting-started","rfcs/rfc0001_shared_config.html#sharing-configuration-between-multiple-services","rfcs/rfc0001_shared_config.html#specifying-a-custom-credential-provider","rfcs/rfc0001_shared_config.html#proposed-design","rfcs/rfc0001_shared_config.html#shared-config-implementation","rfcs/rfc0001_shared_config.html#sleep--connectors","rfcs/rfc0001_shared_config.html#the-build-method-on-config","rfcs/rfc0001_shared_config.html#stability-and-versioning","rfcs/rfc0001_shared_config.html#changes-checklist","rfcs/rfc0001_shared_config.html#open-issues","rfcs/rfc0002_http_versions.html#rfc-supporting-multiple-http-versions-for-sdks-that-use-event-stream","rfcs/rfc0002_http_versions.html#terminology","rfcs/rfc0002_http_versions.html#how-clients-work-today","rfcs/rfc0002_http_versions.html#solving-the-connector-creation-problem","rfcs/rfc0002_http_versions.html#solving-the-connector-selection-problem","rfcs/rfc0002_http_versions.html#changes-checklist","rfcs/rfc0003_presigning_api.html#rfc-api-for-presigned-urls","rfcs/rfc0003_presigning_api.html#terminology","rfcs/rfc0003_presigning_api.html#presigned-url-config","rfcs/rfc0003_presigning_api.html#fluent-presigned-url-api","rfcs/rfc0003_presigning_api.html#input-presigned-url-api","rfcs/rfc0003_presigning_api.html#behind-the-scenes","rfcs/rfc0003_presigning_api.html#modeling-presigning","rfcs/rfc0003_presigning_api.html#avoiding-name-collision","rfcs/rfc0003_presigning_api.html#changes-checklist","rfcs/rfc0004_retry_behavior.html#rfc-retry-behavior","rfcs/rfc0004_retry_behavior.html#terminology","rfcs/rfc0004_retry_behavior.html#configuring-the-maximum-number-of-retries","rfcs/rfc0004_retry_behavior.html#setting-an-environment-variable","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-an-aws-shared-config","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-service-specific-config","rfcs/rfc0004_retry_behavior.html#disabling-retries","rfcs/rfc0004_retry_behavior.html#behind-the-scenes","rfcs/rfc0004_retry_behavior.html#changes-checklist","rfcs/rfc0005_service_generation.html#rfc-smithy-rust-service-framework","rfcs/rfc0005_service_generation.html#requirements","rfcs/rfc0005_service_generation.html#smithy-model-driven-code-generation","rfcs/rfc0005_service_generation.html#performance","rfcs/rfc0005_service_generation.html#extensibility","rfcs/rfc0005_service_generation.html#observability","rfcs/rfc0005_service_generation.html#client-generation","rfcs/rfc0005_service_generation.html#benchmarking","rfcs/rfc0005_service_generation.html#model-validation","rfcs/rfc0006_service_specific_middleware.html#rfc-service-specific-middleware","rfcs/rfc0006_service_specific_middleware.html#terminology","rfcs/rfc0006_service_specific_middleware.html#detailed-design","rfcs/rfc0006_service_specific_middleware.html#changes-checklist","rfcs/rfc0007_split_release_process.html#rfc-split-release-process","rfcs/rfc0007_split_release_process.html#terminology","rfcs/rfc0007_split_release_process.html#requirements","rfcs/rfc0007_split_release_process.html#background-how-publishing-worked-before","rfcs/rfc0007_split_release_process.html#proposed-solution","rfcs/rfc0007_split_release_process.html#avoiding-mistakes-by-disallowing-creation-of-publish-ready-bundles-outside-of-ci","rfcs/rfc0007_split_release_process.html#alternatives-considered","rfcs/rfc0007_split_release_process.html#publish-smithy-runtime-crates-from-smithy-rs-build-artifacts","rfcs/rfc0007_split_release_process.html#keep-smithy-runtime-crates-in-smithy-rs","rfcs/rfc0007_split_release_process.html#changes-checklist","rfcs/rfc0008_paginators.html#summary","rfcs/rfc0008_paginators.html#details","rfcs/rfc0008_paginators.html#updates-to-ergonomic-clients","rfcs/rfc0008_paginators.html#discussion-areas","rfcs/rfc0008_paginators.html#on-sendawait","rfcs/rfc0008_paginators.html#on-tokio_streamstream","rfcs/rfc0008_paginators.html#on-generics","rfcs/rfc0008_paginators.html#changes-checklist","rfcs/rfc0009_example_consolidation.html#rfc-examples-consolidation","rfcs/rfc0009_example_consolidation.html#requirements","rfcs/rfc0009_example_consolidation.html#example-ci-in-smithy-rs","rfcs/rfc0009_example_consolidation.html#auto-sync-to-aws-sdk-rust-from-smithy-rs-changes","rfcs/rfc0009_example_consolidation.html#process-risks","rfcs/rfc0009_example_consolidation.html#alternatives","rfcs/rfc0009_example_consolidation.html#aws-sdk-rust-as-the-source-of-truth","rfcs/rfc0009_example_consolidation.html#changes-checklist","rfcs/rfc0010_waiters.html#rfc-waiters","rfcs/rfc0010_waiters.html#terminology","rfcs/rfc0010_waiters.html#requirements","rfcs/rfc0010_waiters.html#waiter-api","rfcs/rfc0010_waiters.html#waiter-implementation","rfcs/rfc0010_waiters.html#changes-checklist","rfcs/rfc0011_crates_io_alpha_publishing.html#rfc-publishing-the-alpha-sdk-to-cratesio","rfcs/rfc0011_crates_io_alpha_publishing.html#terminology","rfcs/rfc0011_crates_io_alpha_publishing.html#requirements","rfcs/rfc0011_crates_io_alpha_publishing.html#versioning","rfcs/rfc0011_crates_io_alpha_publishing.html#yanking","rfcs/rfc0011_crates_io_alpha_publishing.html#concrete-scenarios","rfcs/rfc0011_crates_io_alpha_publishing.html#proposal","rfcs/rfc0011_crates_io_alpha_publishing.html#short-term-changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#rfc-independent-crate-versioning","rfcs/rfc0012_independent_crate_versioning.html#terminology","rfcs/rfc0012_independent_crate_versioning.html#requirements","rfcs/rfc0012_independent_crate_versioning.html#versioning","rfcs/rfc0012_independent_crate_versioning.html#release-identification","rfcs/rfc0012_independent_crate_versioning.html#yanking","rfcs/rfc0012_independent_crate_versioning.html#phase-1-dev-preview","rfcs/rfc0012_independent_crate_versioning.html#version-tracking","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-code-generated-sdk-service-crates","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-runtime-crates","rfcs/rfc0012_independent_crate_versioning.html#yanking-1","rfcs/rfc0012_independent_crate_versioning.html#changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#phase-2-stability-and-1x","rfcs/rfc0013_body_callback_apis.html#rfc-callback-apis-for-bytestream-and-sdkbody","rfcs/rfc0013_body_callback_apis.html#the-implementation","rfcs/rfc0013_body_callback_apis.html#implementing-checksums","rfcs/rfc0014_timeout_config.html#rfc-fine-grained-timeout-configuration","rfcs/rfc0014_timeout_config.html#terminology","rfcs/rfc0014_timeout_config.html#general-terms","rfcs/rfc0014_timeout_config.html#http-stack-terms","rfcs/rfc0014_timeout_config.html#timeout-terms","rfcs/rfc0014_timeout_config.html#configuring-timeouts","rfcs/rfc0014_timeout_config.html#configuration-options","rfcs/rfc0014_timeout_config.html#sdk-specific-defaults-set-by-aws-service-teams","rfcs/rfc0014_timeout_config.html#prior-art","rfcs/rfc0014_timeout_config.html#behind-the-scenes","rfcs/rfc0014_timeout_config.html#middlewares-for-aws-client-requests","rfcs/rfc0014_timeout_config.html#middlewares-for-smithy-client-requests","rfcs/rfc0014_timeout_config.html#changes-checklist","rfcs/rfc0014_timeout_config.html#implementing-http-request-timeouts","rfcs/rfc0015_using_features_responsibly.html#rfc-how-cargo-features-should-be-used-in-the-sdk-and-runtime-crates","rfcs/rfc0015_using_features_responsibly.html#some-background-on-features","rfcs/rfc0015_using_features_responsibly.html#features-should-be-additive","rfcs/rfc0015_using_features_responsibly.html#what-does-this-mean-for-the-sdk","rfcs/rfc0015_using_features_responsibly.html#avoid-writing-code-that-relies-on-only-activating-one-feature-from-a-set-of-mutually-exclusive-features","rfcs/rfc0015_using_features_responsibly.html#we-should-avoid-using-cfgnotfeature--some-feature","rfcs/rfc0015_using_features_responsibly.html#dont-default-to-defining-default-features","rfcs/rfc0015_using_features_responsibly.html#further-reading","rfcs/rfc0016_flexible_checksum_support.html#rfc-supporting-flexible-checksums","rfcs/rfc0016_flexible_checksum_support.html#what-is-the-flexible-checksums-feature","rfcs/rfc0016_flexible_checksum_support.html#implementing-checksums","rfcs/rfc0016_flexible_checksum_support.html#refactoring-aws-smithy-checksums","rfcs/rfc0016_flexible_checksum_support.html#checksumbody","rfcs/rfc0016_flexible_checksum_support.html#checksumvalidatedbody","rfcs/rfc0016_flexible_checksum_support.html#awschunkedbody-and-awschunkedbodyoptions","rfcs/rfc0016_flexible_checksum_support.html#sigv4-update","rfcs/rfc0016_flexible_checksum_support.html#inlineables","rfcs/rfc0016_flexible_checksum_support.html#codegen","rfcs/rfc0016_flexible_checksum_support.html#implementation-checklist","rfcs/rfc0017_customizable_client_operations.html#rfc-customizable-client-operations","rfcs/rfc0017_customizable_client_operations.html#terminology","rfcs/rfc0017_customizable_client_operations.html#proposal","rfcs/rfc0017_customizable_client_operations.html#why-not-remove-async-from-customize-to-make-this-more-ergonomic","rfcs/rfc0017_customizable_client_operations.html#why-the-name-customize","rfcs/rfc0017_customizable_client_operations.html#changes-checklist","rfcs/rfc0018_logging_sensitive.html#rfc-logging-in-the-presence-of-sensitive-data","rfcs/rfc0018_logging_sensitive.html#terminology","rfcs/rfc0018_logging_sensitive.html#background","rfcs/rfc0018_logging_sensitive.html#http-binding-traits","rfcs/rfc0018_logging_sensitive.html#scope-and-guidelines","rfcs/rfc0018_logging_sensitive.html#routing","rfcs/rfc0018_logging_sensitive.html#runtime-crates","rfcs/rfc0018_logging_sensitive.html#proposal","rfcs/rfc0018_logging_sensitive.html#debug-logging","rfcs/rfc0018_logging_sensitive.html#code-generated-logging-middleware","rfcs/rfc0018_logging_sensitive.html#http-debugdisplay-wrappers","rfcs/rfc0018_logging_sensitive.html#middleware-position","rfcs/rfc0018_logging_sensitive.html#logging-within-the-router","rfcs/rfc0018_logging_sensitive.html#developer-guideline","rfcs/rfc0018_logging_sensitive.html#alternative-proposals","rfcs/rfc0018_logging_sensitive.html#use-request-extensions","rfcs/rfc0018_logging_sensitive.html#accommodate-the-sensitivity-in-middleware-api","rfcs/rfc0018_logging_sensitive.html#redact-values-using-a-tracing-layer","rfcs/rfc0018_logging_sensitive.html#changes-checklist","rfcs/rfc0019_event_streams_errors.html#rfc-errors-for-event-streams","rfcs/rfc0019_event_streams_errors.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0019_event_streams_errors.html#how-to-actually-implement-this-rfc","rfcs/rfc0019_event_streams_errors.html#changes-checklist","rfcs/rfc0020_service_builder.html#rfc-service-builder-improvements","rfcs/rfc0020_service_builder.html#terminology","rfcs/rfc0020_service_builder.html#background","rfcs/rfc0020_service_builder.html#handlers","rfcs/rfc0020_service_builder.html#builder","rfcs/rfc0020_service_builder.html#router","rfcs/rfc0020_service_builder.html#comparison-to-axum","rfcs/rfc0020_service_builder.html#proposal","rfcs/rfc0020_service_builder.html#remove-two-step-build-procedure","rfcs/rfc0020_service_builder.html#statically-check-for-missing-handlers","rfcs/rfc0020_service_builder.html#switch-from-for-router-to-an-operationregistrybuild-method","rfcs/rfc0020_service_builder.html#operations-as-middleware-constructors","rfcs/rfc0020_service_builder.html#service-parameterized-routers","rfcs/rfc0020_service_builder.html#protocol-specific-routers","rfcs/rfc0020_service_builder.html#protocol-specific-errors","rfcs/rfc0020_service_builder.html#type-erasure-with-the-name-of-the-smithy-service","rfcs/rfc0020_service_builder.html#combined-proposal","rfcs/rfc0020_service_builder.html#changes-checklist","rfcs/rfc0021_dependency_versions.html#rfc-dependency-versions","rfcs/rfc0021_dependency_versions.html#categorization-of-crates","rfcs/rfc0021_dependency_versions.html#support-crates-for-applications","rfcs/rfc0021_dependency_versions.html#dependency-version-rules","rfcs/rfc0021_dependency_versions.html#what-is-a-minimum-secure-version-when-there-are-multiple-major-versions","rfcs/rfc0021_dependency_versions.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#rfc-error-context-and-compatibility","rfcs/rfc0022_error_context_and_compatibility.html#past-approaches-in-smithy-rs","rfcs/rfc0022_error_context_and_compatibility.html#case-study-invalidfullurierror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-profileparseerror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-code-generated-client-errors","rfcs/rfc0022_error_context_and_compatibility.html#approaches-from-other-projects","rfcs/rfc0022_error_context_and_compatibility.html#stdioerror","rfcs/rfc0022_error_context_and_compatibility.html#hyper-10","rfcs/rfc0022_error_context_and_compatibility.html#opaque-error-sources","rfcs/rfc0022_error_context_and_compatibility.html#error-proposal","rfcs/rfc0022_error_context_and_compatibility.html#actionable-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#informative-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#displaying-full-error-context","rfcs/rfc0022_error_context_and_compatibility.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#error-code-review-checklist","rfcs/rfc0023_refine_builder.html#rfc-evolving-the-new-service-builder-api","rfcs/rfc0023_refine_builder.html#overview","rfcs/rfc0023_refine_builder.html#handling-missing-operations","rfcs/rfc0023_refine_builder.html#compiler-errors-cannot-be-tuned","rfcs/rfc0023_refine_builder.html#the-cost-of-a-runtime-error","rfcs/rfc0023_refine_builder.html#providing-clear-feedback","rfcs/rfc0023_refine_builder.html#simplifying-pokemonservicebuilders-signature","rfcs/rfc0023_refine_builder.html#branching---incompatible-types","rfcs/rfc0023_refine_builder.html#refactoring-into-smaller-functions---prepare-for-some-type-juggling","rfcs/rfc0023_refine_builder.html#cut-them-down-going-from-2n1-to-2-generic-parameters","rfcs/rfc0023_refine_builder.html#alternatives-allow-new-plugins-to-be-registered-after-builder-creation","rfcs/rfc0023_refine_builder.html#alternatives-lazy-and-eager-on-demand-type-erasure","rfcs/rfc0023_refine_builder.html#builder-extensions-what-now","rfcs/rfc0023_refine_builder.html#playing-around-with-the-design","rfcs/rfc0023_refine_builder.html#changes-checklist","rfcs/rfc0024_request_id.html#rfc-requestid-in-business-logic-handlers","rfcs/rfc0024_request_id.html#terminology","rfcs/rfc0024_request_id.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0024_request_id.html#changes-checklist","rfcs/rfc0024_request_id.html#changes-since-the-rfc-has-been-approved","rfcs/rfc0025_constraint_traits.html#rfc-constraint-traits","rfcs/rfc0025_constraint_traits.html#implementation","rfcs/rfc0025_constraint_traits.html#example-implementation-for-the-length-trait","rfcs/rfc0025_constraint_traits.html#request-deserialization","rfcs/rfc0025_constraint_traits.html#length-trait","rfcs/rfc0025_constraint_traits.html#pattern-trait","rfcs/rfc0025_constraint_traits.html#uniqueitems-trait","rfcs/rfc0025_constraint_traits.html#trait-precedence-and-naming-of-the-tuple-struct","rfcs/rfc0025_constraint_traits.html#unresolved-questions","rfcs/rfc0025_constraint_traits.html#alternative-design","rfcs/rfc0026_client_crate_organization.html#rfc-client-crate-organization","rfcs/rfc0026_client_crate_organization.html#previous-organization","rfcs/rfc0026_client_crate_organization.html#proposed-changes","rfcs/rfc0026_client_crate_organization.html#establish-a-pattern-for-builder-organization","rfcs/rfc0026_client_crate_organization.html#organize-code-generated-types-by-operation","rfcs/rfc0026_client_crate_organization.html#reorganize-the-crate-root","rfcs/rfc0026_client_crate_organization.html#conditionally-remove-builder-from-crateclient","rfcs/rfc0026_client_crate_organization.html#create-a-primitives-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-types-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-original-crateerror-module","rfcs/rfc0026_client_crate_organization.html#flatten-the-presigning-module","rfcs/rfc0026_client_crate_organization.html#remove-the-empty-modules","rfcs/rfc0026_client_crate_organization.html#new-organization","rfcs/rfc0026_client_crate_organization.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#rfc-endpoints-20","rfcs/rfc0027_endpoints_20.html#terminology","rfcs/rfc0027_endpoints_20.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0027_endpoints_20.html#overview","rfcs/rfc0027_endpoints_20.html#overriding-endpoints","rfcs/rfc0027_endpoints_20.html#new-endpoint-traits","rfcs/rfc0027_endpoints_20.html#endpoint-params","rfcs/rfc0027_endpoints_20.html#the-default-endpoint-resolver","rfcs/rfc0027_endpoints_20.html#how-to-actually-implement-this-rfc","rfcs/rfc0027_endpoints_20.html#code-generating-client-context-params","rfcs/rfc0027_endpoints_20.html#creating-params","rfcs/rfc0027_endpoints_20.html#converting-a-smithy-endpoint-to-an-aws-endpoint","rfcs/rfc0027_endpoints_20.html#implementing-the-rules-engine","rfcs/rfc0027_endpoints_20.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#alternative-designs","rfcs/rfc0027_endpoints_20.html#context-aware-endpoint-traits","rfcs/rfc0028_sdk_credential_cache_type_safety.html#rfc-sdk-credential-cache-type-safety","rfcs/rfc0028_sdk_credential_cache_type_safety.html#credentialscache-and-configloadercredentials_cache","rfcs/rfc0028_sdk_credential_cache_type_safety.html#changes-checklist","rfcs/rfc0028_sdk_credential_cache_type_safety.html#appendix-alternatives-considered","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-a-providecachedcredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-b-cachecredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-c-credentialscache-struct-with-composition","rfcs/rfc0029_new_home_for_cred_types.html#rfc-finding-new-home-for-credential-types","rfcs/rfc0029_new_home_for_cred_types.html#assumptions","rfcs/rfc0029_new_home_for_cred_types.html#problems","rfcs/rfc0029_new_home_for_cred_types.html#proposed-solution","rfcs/rfc0029_new_home_for_cred_types.html#rejected-alternative","rfcs/rfc0029_new_home_for_cred_types.html#changes-checklist","rfcs/rfc0030_serialization_and_deserialization.html#rfc-serialization-and-deserialization","rfcs/rfc0030_serialization_and_deserialization.html#terminology","rfcs/rfc0030_serialization_and_deserialization.html#overview","rfcs/rfc0030_serialization_and_deserialization.html#use-case","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#enabling-feature","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate-for-serialization-and-de-serialization","rfcs/rfc0030_serialization_and_deserialization.html#keeping-both-features-behind-the-same-feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#different-feature-gates-for-different-data-types","rfcs/rfc0030_serialization_and_deserialization.html#implementation","rfcs/rfc0030_serialization_and_deserialization.html#smithy-types","rfcs/rfc0030_serialization_and_deserialization.html#blob","rfcs/rfc0030_serialization_and_deserialization.html#datetime","rfcs/rfc0030_serialization_and_deserialization.html#document","rfcs/rfc0030_serialization_and_deserialization.html#number","rfcs/rfc0030_serialization_and_deserialization.html#builder-types-and-non-builder-types","rfcs/rfc0030_serialization_and_deserialization.html#enum-representation","rfcs/rfc0030_serialization_and_deserialization.html#untagged","rfcs/rfc0030_serialization_and_deserialization.html#internal","rfcs/rfc0030_serialization_and_deserialization.html#external-and-adjacent","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-skip-serializationdeserialization","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-exclude-from-serde-code-generation","rfcs/rfc0030_serialization_and_deserialization.html#serde-traits-implemented-on-builder-of-output-types","rfcs/rfc0030_serialization_and_deserialization.html#fn-set_fields-to-allow-users-to-use-externally-created-input","rfcs/rfc0030_serialization_and_deserialization.html#other-concerns","rfcs/rfc0030_serialization_and_deserialization.html#model-evolution","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-fields","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-data-type","rfcs/rfc0030_serialization_and_deserialization.html#discussions","rfcs/rfc0030_serialization_and_deserialization.html#sensitive-information","rfcs/rfc0030_serialization_and_deserialization.html#compile-time","rfcs/rfc0030_serialization_and_deserialization.html#misleading-results","rfcs/rfc0030_serialization_and_deserialization.html#appendix","rfcs/rfc0030_serialization_and_deserialization.html#use-case-examples","rfcs/rfc0030_serialization_and_deserialization.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#rfc-providing-fallback-credentials-on-external-timeout","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#terminology","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#assumption","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#problem","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#proposal","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#how-to-actually-implement-this-rfc","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#alternative","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#possible-enhancement","rfcs/rfc0032_better_constraint_violations.html#rfc-better-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#terminology","rfcs/rfc0032_better_constraint_violations.html#impossible-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background","rfcs/rfc0032_better_constraint_violations.html#problem","rfcs/rfc0032_better_constraint_violations.html#solution-proposal","rfcs/rfc0032_better_constraint_violations.html#collecting-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background-1","rfcs/rfc0032_better_constraint_violations.html#problem-1","rfcs/rfc0032_better_constraint_violations.html#solution-proposal-1","rfcs/rfc0032_better_constraint_violations.html#tightness-of-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#problem-2","rfcs/rfc0032_better_constraint_violations.html#final-solution-proposal","rfcs/rfc0032_better_constraint_violations.html#checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#rfc-improving-access-to-request-ids-in-sdk-clients","rfcs/rfc0033_improve_sdk_request_id_access.html#terminology","rfcs/rfc0033_improve_sdk_request_id_access.html#sdksmithy-purity","rfcs/rfc0033_improve_sdk_request_id_access.html#proposed-changes","rfcs/rfc0033_improve_sdk_request_id_access.html#make-request-id-retrieval-on-errors-consistent","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-outputs","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-operation-and-operationresponse","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-result","rfcs/rfc0033_improve_sdk_request_id_access.html#example-interactions","rfcs/rfc0033_improve_sdk_request_id_access.html#generic-handling-case","rfcs/rfc0033_improve_sdk_request_id_access.html#success-case","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-sdkerror","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-operation-error","rfcs/rfc0033_improve_sdk_request_id_access.html#changes-checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-a-alternate-solution-for-access-on-successful-responses","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-b-adding-requestid-as-a-string-to-outputs-via-model-transform","rfcs/rfc0034_smithy_orchestrator.html#smithy-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#tldr","rfcs/rfc0034_smithy_orchestrator.html#terminology","rfcs/rfc0034_smithy_orchestrator.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0034_smithy_orchestrator.html#service-clients-and-operations-are-configured-with-runtime-plugins","rfcs/rfc0034_smithy_orchestrator.html#requests-and-responses-are-modified-by-interceptors","rfcs/rfc0034_smithy_orchestrator.html#interceptor-context","rfcs/rfc0034_smithy_orchestrator.html#how-to-implement-this-rfc","rfcs/rfc0034_smithy_orchestrator.html#integrating-with-the-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#layered-configuration-stored-in-type-maps","rfcs/rfc0034_smithy_orchestrator.html#the-aws-smithy-orchestrator-crate","rfcs/rfc0034_smithy_orchestrator.html#faq","rfcs/rfc0034_smithy_orchestrator.html#changes-checklist","rfcs/rfc0035_collection_defaults.html#rfc-collection-defaults","rfcs/rfc0035_collection_defaults.html#terminology","rfcs/rfc0035_collection_defaults.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0035_collection_defaults.html#how-to-actually-implement-this-rfc","rfcs/rfc0035_collection_defaults.html#could-this-be-implemented-for-hashmap","rfcs/rfc0035_collection_defaults.html#isnt-this-handled-by-the-default-trait","rfcs/rfc0035_collection_defaults.html#changes-checklist","rfcs/rfc0036_http_dep_elimination.html#rfc-eliminating-public-http-dependencies","rfcs/rfc0036_http_dep_elimination.html#terminology","rfcs/rfc0036_http_dep_elimination.html#why-is-this-important","rfcs/rfc0036_http_dep_elimination.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0036_http_dep_elimination.html#how-to-actually-implement-this-rfc","rfcs/rfc0036_http_dep_elimination.html#enabling-api-evolution","rfcs/rfc0036_http_dep_elimination.html#http-request-wrapper","rfcs/rfc0036_http_dep_elimination.html#removing-the-sigv4-http-dependency","rfcs/rfc0036_http_dep_elimination.html#removing-the-http-dependency-from-generated-clients","rfcs/rfc0036_http_dep_elimination.html#changes-checklist","rfcs/rfc0037_http_wrapper.html#rfc-the-http-wrapper-type","rfcs/rfc0037_http_wrapper.html#terminology","rfcs/rfc0037_http_wrapper.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0037_http_wrapper.html#how-to-actually-implement-this-rfc","rfcs/rfc0037_http_wrapper.html#future-work","rfcs/rfc0037_http_wrapper.html#changes-checklist","rfcs/rfc0038_retry_classifier_customization.html#rfc-user-configurable-retry-classification","rfcs/rfc0038_retry_classifier_customization.html#terminology","rfcs/rfc0038_retry_classifier_customization.html#how-the-orchestrator-should-model-retries","rfcs/rfc0038_retry_classifier_customization.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0038_retry_classifier_customization.html#defining-a-custom-classifier","rfcs/rfc0038_retry_classifier_customization.html#setting-classifiers","rfcs/rfc0038_retry_classifier_customization.html#default-classifiers","rfcs/rfc0038_retry_classifier_customization.html#how-to-actually-implement-this-rfc","rfcs/rfc0038_retry_classifier_customization.html#the-retryclassifier-trait","rfcs/rfc0038_retry_classifier_customization.html#resolving-the-correct-order-of-multiple-retry-classifiers","rfcs/rfc0038_retry_classifier_customization.html#questions-and-answers","rfcs/rfc0038_retry_classifier_customization.html#changes-checklist","contributing/overview.html#contributing","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#writing-and-debugging-a-low-level-feature-that-relies-on-http","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#background","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-streaming-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-issues-i-encountered-while-implementing-checksums-for-streaming-request-bodies","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#s3-requires-a-content-length-unless-you-also-set-transfer-encoding-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#adding-trailers-to-a-request-changes-the-size-of-that-request","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#hyper-supports-http-request-trailers-but-isnt-compatible-with-content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-stream-is-closing-early-and-i-dont-know-why","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#what-helped-me-to-understand-the-problems-and-their-solutions","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#"],"index":{"documentStore":{"docInfo":{"0":{"body":42,"breadcrumbs":4,"title":2},"1":{"body":18,"breadcrumbs":3,"title":1},"10":{"body":0,"breadcrumbs":4,"title":2},"100":{"body":74,"breadcrumbs":12,"title":4},"101":{"body":126,"breadcrumbs":10,"title":2},"102":{"body":53,"breadcrumbs":11,"title":3},"103":{"body":40,"breadcrumbs":10,"title":2},"104":{"body":27,"breadcrumbs":11,"title":3},"105":{"body":107,"breadcrumbs":10,"title":2},"106":{"body":67,"breadcrumbs":10,"title":2},"107":{"body":10,"breadcrumbs":10,"title":2},"108":{"body":82,"breadcrumbs":20,"title":9},"109":{"body":81,"breadcrumbs":12,"title":1},"11":{"body":24,"breadcrumbs":3,"title":1},"110":{"body":165,"breadcrumbs":14,"title":3},"111":{"body":134,"breadcrumbs":15,"title":4},"112":{"body":315,"breadcrumbs":15,"title":4},"113":{"body":79,"breadcrumbs":13,"title":2},"114":{"body":40,"breadcrumbs":11,"title":4},"115":{"body":49,"breadcrumbs":8,"title":1},"116":{"body":159,"breadcrumbs":10,"title":3},"117":{"body":151,"breadcrumbs":11,"title":4},"118":{"body":53,"breadcrumbs":11,"title":4},"119":{"body":240,"breadcrumbs":9,"title":2},"12":{"body":80,"breadcrumbs":6,"title":4},"120":{"body":36,"breadcrumbs":9,"title":2},"121":{"body":22,"breadcrumbs":10,"title":3},"122":{"body":59,"breadcrumbs":9,"title":2},"123":{"body":45,"breadcrumbs":8,"title":3},"124":{"body":154,"breadcrumbs":6,"title":1},"125":{"body":57,"breadcrumbs":9,"title":4},"126":{"body":42,"breadcrumbs":8,"title":3},"127":{"body":37,"breadcrumbs":10,"title":5},"128":{"body":40,"breadcrumbs":10,"title":5},"129":{"body":70,"breadcrumbs":7,"title":2},"13":{"body":96,"breadcrumbs":10,"title":8},"130":{"body":182,"breadcrumbs":7,"title":2},"131":{"body":157,"breadcrumbs":7,"title":2},"132":{"body":33,"breadcrumbs":12,"title":5},"133":{"body":0,"breadcrumbs":8,"title":1},"134":{"body":15,"breadcrumbs":12,"title":5},"135":{"body":109,"breadcrumbs":8,"title":1},"136":{"body":24,"breadcrumbs":8,"title":1},"137":{"body":34,"breadcrumbs":8,"title":1},"138":{"body":6,"breadcrumbs":9,"title":2},"139":{"body":13,"breadcrumbs":8,"title":1},"14":{"body":97,"breadcrumbs":16,"title":14},"140":{"body":9,"breadcrumbs":9,"title":2},"141":{"body":91,"breadcrumbs":10,"title":4},"142":{"body":112,"breadcrumbs":7,"title":1},"143":{"body":64,"breadcrumbs":8,"title":2},"144":{"body":49,"breadcrumbs":8,"title":2},"145":{"body":68,"breadcrumbs":10,"title":4},"146":{"body":80,"breadcrumbs":7,"title":1},"147":{"body":79,"breadcrumbs":7,"title":1},"148":{"body":69,"breadcrumbs":10,"title":4},"149":{"body":142,"breadcrumbs":8,"title":2},"15":{"body":13,"breadcrumbs":2,"title":1},"150":{"body":44,"breadcrumbs":15,"title":9},"151":{"body":0,"breadcrumbs":8,"title":2},"152":{"body":137,"breadcrumbs":14,"title":8},"153":{"body":179,"breadcrumbs":12,"title":6},"154":{"body":69,"breadcrumbs":8,"title":2},"155":{"body":131,"breadcrumbs":5,"title":1},"156":{"body":321,"breadcrumbs":5,"title":1},"157":{"body":29,"breadcrumbs":7,"title":3},"158":{"body":0,"breadcrumbs":6,"title":2},"159":{"body":19,"breadcrumbs":5,"title":1},"16":{"body":24,"breadcrumbs":2,"title":1},"160":{"body":18,"breadcrumbs":5,"title":1},"161":{"body":29,"breadcrumbs":5,"title":1},"162":{"body":33,"breadcrumbs":6,"title":2},"163":{"body":73,"breadcrumbs":8,"title":3},"164":{"body":58,"breadcrumbs":6,"title":1},"165":{"body":46,"breadcrumbs":9,"title":4},"166":{"body":85,"breadcrumbs":13,"title":8},"167":{"body":87,"breadcrumbs":7,"title":2},"168":{"body":0,"breadcrumbs":6,"title":1},"169":{"body":144,"breadcrumbs":10,"title":5},"17":{"body":55,"breadcrumbs":3,"title":2},"170":{"body":48,"breadcrumbs":7,"title":2},"171":{"body":118,"breadcrumbs":6,"title":2},"172":{"body":81,"breadcrumbs":5,"title":1},"173":{"body":55,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":169,"breadcrumbs":6,"title":2},"176":{"body":34,"breadcrumbs":6,"title":2},"177":{"body":41,"breadcrumbs":11,"title":5},"178":{"body":42,"breadcrumbs":7,"title":1},"179":{"body":0,"breadcrumbs":7,"title":1},"18":{"body":45,"breadcrumbs":6,"title":3},"180":{"body":117,"breadcrumbs":7,"title":1},"181":{"body":50,"breadcrumbs":7,"title":1},"182":{"body":73,"breadcrumbs":8,"title":2},"183":{"body":229,"breadcrumbs":7,"title":1},"184":{"body":35,"breadcrumbs":10,"title":4},"185":{"body":68,"breadcrumbs":10,"title":4},"186":{"body":42,"breadcrumbs":7,"title":1},"187":{"body":0,"breadcrumbs":7,"title":1},"188":{"body":138,"breadcrumbs":7,"title":1},"189":{"body":27,"breadcrumbs":8,"title":2},"19":{"body":10,"breadcrumbs":5,"title":2},"190":{"body":20,"breadcrumbs":7,"title":1},"191":{"body":32,"breadcrumbs":10,"title":4},"192":{"body":104,"breadcrumbs":8,"title":2},"193":{"body":163,"breadcrumbs":12,"title":6},"194":{"body":268,"breadcrumbs":9,"title":3},"195":{"body":40,"breadcrumbs":7,"title":1},"196":{"body":69,"breadcrumbs":8,"title":2},"197":{"body":34,"breadcrumbs":10,"title":4},"198":{"body":18,"breadcrumbs":11,"title":5},"199":{"body":547,"breadcrumbs":7,"title":1},"2":{"body":88,"breadcrumbs":5,"title":3},"20":{"body":66,"breadcrumbs":5,"title":2},"200":{"body":198,"breadcrumbs":8,"title":2},"201":{"body":38,"breadcrumbs":12,"title":5},"202":{"body":9,"breadcrumbs":8,"title":1},"203":{"body":99,"breadcrumbs":9,"title":2},"204":{"body":220,"breadcrumbs":10,"title":3},"205":{"body":128,"breadcrumbs":9,"title":2},"206":{"body":40,"breadcrumbs":9,"title":2},"207":{"body":56,"breadcrumbs":9,"title":2},"208":{"body":5,"breadcrumbs":14,"title":7},"209":{"body":33,"breadcrumbs":9,"title":2},"21":{"body":53,"breadcrumbs":5,"title":2},"210":{"body":36,"breadcrumbs":9,"title":2},"211":{"body":49,"breadcrumbs":11,"title":4},"212":{"body":321,"breadcrumbs":11,"title":4},"213":{"body":18,"breadcrumbs":9,"title":2},"214":{"body":88,"breadcrumbs":11,"title":4},"215":{"body":2,"breadcrumbs":16,"title":7},"216":{"body":75,"breadcrumbs":11,"title":2},"217":{"body":36,"breadcrumbs":11,"title":2},"218":{"body":66,"breadcrumbs":11,"title":2},"219":{"body":162,"breadcrumbs":20,"title":11},"22":{"body":59,"breadcrumbs":6,"title":3},"220":{"body":76,"breadcrumbs":13,"title":4},"221":{"body":209,"breadcrumbs":14,"title":5},"222":{"body":47,"breadcrumbs":11,"title":2},"223":{"body":21,"breadcrumbs":10,"title":4},"224":{"body":32,"breadcrumbs":9,"title":3},"225":{"body":19,"breadcrumbs":8,"title":2},"226":{"body":1039,"breadcrumbs":10,"title":4},"227":{"body":385,"breadcrumbs":7,"title":1},"228":{"body":320,"breadcrumbs":7,"title":1},"229":{"body":944,"breadcrumbs":8,"title":2},"23":{"body":6,"breadcrumbs":7,"title":4},"230":{"body":167,"breadcrumbs":8,"title":2},"231":{"body":232,"breadcrumbs":7,"title":1},"232":{"body":44,"breadcrumbs":7,"title":1},"233":{"body":24,"breadcrumbs":8,"title":2},"234":{"body":85,"breadcrumbs":10,"title":4},"235":{"body":29,"breadcrumbs":7,"title":1},"236":{"body":202,"breadcrumbs":7,"title":1},"237":{"body":50,"breadcrumbs":12,"title":6},"238":{"body":46,"breadcrumbs":8,"title":2},"239":{"body":35,"breadcrumbs":8,"title":2},"24":{"body":61,"breadcrumbs":5,"title":2},"240":{"body":89,"breadcrumbs":12,"title":5},"241":{"body":71,"breadcrumbs":8,"title":1},"242":{"body":0,"breadcrumbs":8,"title":1},"243":{"body":47,"breadcrumbs":10,"title":3},"244":{"body":91,"breadcrumbs":9,"title":2},"245":{"body":73,"breadcrumbs":8,"title":1},"246":{"body":32,"breadcrumbs":9,"title":2},"247":{"body":54,"breadcrumbs":8,"title":1},"248":{"body":80,"breadcrumbs":9,"title":2},"249":{"body":158,"breadcrumbs":11,"title":4},"25":{"body":43,"breadcrumbs":3,"title":1},"250":{"body":59,"breadcrumbs":10,"title":3},"251":{"body":106,"breadcrumbs":9,"title":2},"252":{"body":54,"breadcrumbs":10,"title":3},"253":{"body":48,"breadcrumbs":9,"title":2},"254":{"body":42,"breadcrumbs":9,"title":2},"255":{"body":128,"breadcrumbs":10,"title":3},"256":{"body":90,"breadcrumbs":11,"title":4},"257":{"body":105,"breadcrumbs":12,"title":5},"258":{"body":39,"breadcrumbs":9,"title":2},"259":{"body":21,"breadcrumbs":10,"title":4},"26":{"body":51,"breadcrumbs":2,"title":1},"260":{"body":65,"breadcrumbs":10,"title":4},"261":{"body":265,"breadcrumbs":9,"title":3},"262":{"body":20,"breadcrumbs":8,"title":2},"263":{"body":51,"breadcrumbs":10,"title":4},"264":{"body":75,"breadcrumbs":7,"title":1},"265":{"body":112,"breadcrumbs":7,"title":1},"266":{"body":246,"breadcrumbs":7,"title":1},"267":{"body":156,"breadcrumbs":7,"title":1},"268":{"body":124,"breadcrumbs":7,"title":1},"269":{"body":380,"breadcrumbs":8,"title":2},"27":{"body":133,"breadcrumbs":2,"title":1},"270":{"body":53,"breadcrumbs":7,"title":1},"271":{"body":23,"breadcrumbs":11,"title":5},"272":{"body":119,"breadcrumbs":10,"title":4},"273":{"body":48,"breadcrumbs":11,"title":5},"274":{"body":717,"breadcrumbs":9,"title":3},"275":{"body":56,"breadcrumbs":9,"title":3},"276":{"body":101,"breadcrumbs":9,"title":3},"277":{"body":90,"breadcrumbs":9,"title":3},"278":{"body":123,"breadcrumbs":11,"title":5},"279":{"body":91,"breadcrumbs":8,"title":2},"28":{"body":38,"breadcrumbs":5,"title":2},"280":{"body":45,"breadcrumbs":8,"title":2},"281":{"body":39,"breadcrumbs":8,"title":3},"282":{"body":57,"breadcrumbs":7,"title":2},"283":{"body":36,"breadcrumbs":8,"title":3},"284":{"body":47,"breadcrumbs":8,"title":3},"285":{"body":39,"breadcrumbs":11,"title":6},"286":{"body":15,"breadcrumbs":7,"title":2},"287":{"body":91,"breadcrumbs":10,"title":4},"288":{"body":18,"breadcrumbs":10,"title":4},"289":{"body":227,"breadcrumbs":9,"title":3},"29":{"body":44,"breadcrumbs":5,"title":2},"290":{"body":110,"breadcrumbs":9,"title":3},"291":{"body":61,"breadcrumbs":12,"title":6},"292":{"body":0,"breadcrumbs":8,"title":2},"293":{"body":65,"breadcrumbs":7,"title":1},"294":{"body":40,"breadcrumbs":8,"title":2},"295":{"body":97,"breadcrumbs":9,"title":3},"296":{"body":55,"breadcrumbs":8,"title":2},"297":{"body":271,"breadcrumbs":9,"title":3},"298":{"body":69,"breadcrumbs":9,"title":3},"299":{"body":69,"breadcrumbs":10,"title":4},"3":{"body":38,"breadcrumbs":3,"title":1},"30":{"body":114,"breadcrumbs":4,"title":1},"300":{"body":22,"breadcrumbs":8,"title":2},"301":{"body":73,"breadcrumbs":10,"title":4},"302":{"body":68,"breadcrumbs":14,"title":6},"303":{"body":91,"breadcrumbs":9,"title":1},"304":{"body":56,"breadcrumbs":11,"title":3},"305":{"body":138,"breadcrumbs":11,"title":3},"306":{"body":141,"breadcrumbs":11,"title":3},"307":{"body":212,"breadcrumbs":11,"title":3},"308":{"body":112,"breadcrumbs":11,"title":3},"309":{"body":306,"breadcrumbs":11,"title":3},"31":{"body":71,"breadcrumbs":4,"title":1},"310":{"body":331,"breadcrumbs":14,"title":6},"311":{"body":189,"breadcrumbs":15,"title":7},"312":{"body":176,"breadcrumbs":15,"title":7},"313":{"body":634,"breadcrumbs":14,"title":6},"314":{"body":87,"breadcrumbs":11,"title":3},"315":{"body":10,"breadcrumbs":11,"title":3},"316":{"body":51,"breadcrumbs":10,"title":2},"317":{"body":12,"breadcrumbs":9,"title":5},"318":{"body":146,"breadcrumbs":5,"title":1},"319":{"body":235,"breadcrumbs":8,"title":4},"32":{"body":60,"breadcrumbs":5,"title":2},"320":{"body":30,"breadcrumbs":6,"title":2},"321":{"body":4,"breadcrumbs":7,"title":3},"322":{"body":241,"breadcrumbs":8,"title":3},"323":{"body":23,"breadcrumbs":6,"title":1},"324":{"body":213,"breadcrumbs":9,"title":4},"325":{"body":134,"breadcrumbs":7,"title":2},"326":{"body":25,"breadcrumbs":7,"title":2},"327":{"body":21,"breadcrumbs":7,"title":2},"328":{"body":26,"breadcrumbs":7,"title":2},"329":{"body":62,"breadcrumbs":10,"title":5},"33":{"body":208,"breadcrumbs":5,"title":2},"330":{"body":153,"breadcrumbs":7,"title":2},"331":{"body":143,"breadcrumbs":7,"title":2},"332":{"body":41,"breadcrumbs":10,"title":4},"333":{"body":161,"breadcrumbs":8,"title":2},"334":{"body":13,"breadcrumbs":8,"title":2},"335":{"body":81,"breadcrumbs":10,"title":4},"336":{"body":93,"breadcrumbs":11,"title":5},"337":{"body":102,"breadcrumbs":9,"title":3},"338":{"body":55,"breadcrumbs":10,"title":4},"339":{"body":21,"breadcrumbs":9,"title":3},"34":{"body":19,"breadcrumbs":5,"title":2},"340":{"body":100,"breadcrumbs":9,"title":3},"341":{"body":28,"breadcrumbs":10,"title":4},"342":{"body":34,"breadcrumbs":9,"title":3},"343":{"body":33,"breadcrumbs":9,"title":3},"344":{"body":109,"breadcrumbs":8,"title":2},"345":{"body":112,"breadcrumbs":8,"title":2},"346":{"body":53,"breadcrumbs":8,"title":3},"347":{"body":75,"breadcrumbs":6,"title":1},"348":{"body":0,"breadcrumbs":9,"title":4},"349":{"body":157,"breadcrumbs":6,"title":1},"35":{"body":13,"breadcrumbs":4,"title":1},"350":{"body":329,"breadcrumbs":7,"title":2},"351":{"body":178,"breadcrumbs":8,"title":3},"352":{"body":122,"breadcrumbs":7,"title":2},"353":{"body":53,"breadcrumbs":8,"title":3},"354":{"body":88,"breadcrumbs":8,"title":3},"355":{"body":134,"breadcrumbs":10,"title":5},"356":{"body":179,"breadcrumbs":7,"title":2},"357":{"body":47,"breadcrumbs":10,"title":5},"358":{"body":8,"breadcrumbs":8,"title":3},"359":{"body":94,"breadcrumbs":7,"title":2},"36":{"body":21,"breadcrumbs":4,"title":1},"360":{"body":0,"breadcrumbs":7,"title":2},"361":{"body":68,"breadcrumbs":9,"title":4},"362":{"body":93,"breadcrumbs":14,"title":6},"363":{"body":213,"breadcrumbs":10,"title":2},"364":{"body":51,"breadcrumbs":10,"title":2},"365":{"body":0,"breadcrumbs":11,"title":3},"366":{"body":154,"breadcrumbs":11,"title":3},"367":{"body":105,"breadcrumbs":12,"title":4},"368":{"body":314,"breadcrumbs":13,"title":5},"369":{"body":34,"breadcrumbs":14,"title":6},"37":{"body":25,"breadcrumbs":4,"title":1},"370":{"body":35,"breadcrumbs":9,"title":1},"371":{"body":168,"breadcrumbs":9,"title":1},"372":{"body":103,"breadcrumbs":10,"title":2},"373":{"body":90,"breadcrumbs":10,"title":2},"374":{"body":40,"breadcrumbs":10,"title":2},"375":{"body":15,"breadcrumbs":8,"title":3},"376":{"body":34,"breadcrumbs":6,"title":1},"377":{"body":83,"breadcrumbs":6,"title":1},"378":{"body":28,"breadcrumbs":7,"title":2},"379":{"body":0,"breadcrumbs":7,"title":2},"38":{"body":92,"breadcrumbs":4,"title":1},"380":{"body":77,"breadcrumbs":7,"title":2},"381":{"body":81,"breadcrumbs":10,"title":5},"382":{"body":26,"breadcrumbs":12,"title":7},"383":{"body":25,"breadcrumbs":11,"title":6},"384":{"body":0,"breadcrumbs":6,"title":1},"385":{"body":16,"breadcrumbs":7,"title":2},"386":{"body":211,"breadcrumbs":6,"title":1},"387":{"body":86,"breadcrumbs":6,"title":1},"388":{"body":21,"breadcrumbs":6,"title":1},"389":{"body":20,"breadcrumbs":6,"title":1},"39":{"body":186,"breadcrumbs":6,"title":3},"390":{"body":31,"breadcrumbs":10,"title":5},"391":{"body":14,"breadcrumbs":7,"title":2},"392":{"body":13,"breadcrumbs":6,"title":1},"393":{"body":14,"breadcrumbs":6,"title":1},"394":{"body":32,"breadcrumbs":7,"title":2},"395":{"body":84,"breadcrumbs":9,"title":4},"396":{"body":103,"breadcrumbs":11,"title":6},"397":{"body":38,"breadcrumbs":11,"title":6},"398":{"body":55,"breadcrumbs":13,"title":8},"399":{"body":0,"breadcrumbs":6,"title":1},"4":{"body":19,"breadcrumbs":4,"title":2},"40":{"body":66,"breadcrumbs":4,"title":1},"400":{"body":11,"breadcrumbs":7,"title":2},"401":{"body":62,"breadcrumbs":8,"title":3},"402":{"body":103,"breadcrumbs":9,"title":4},"403":{"body":0,"breadcrumbs":6,"title":1},"404":{"body":16,"breadcrumbs":7,"title":2},"405":{"body":198,"breadcrumbs":7,"title":2},"406":{"body":30,"breadcrumbs":7,"title":2},"407":{"body":0,"breadcrumbs":6,"title":1},"408":{"body":73,"breadcrumbs":8,"title":3},"409":{"body":45,"breadcrumbs":7,"title":2},"41":{"body":104,"breadcrumbs":6,"title":3},"410":{"body":46,"breadcrumbs":13,"title":6},"411":{"body":60,"breadcrumbs":8,"title":1},"412":{"body":31,"breadcrumbs":8,"title":1},"413":{"body":317,"breadcrumbs":8,"title":1},"414":{"body":215,"breadcrumbs":8,"title":1},"415":{"body":205,"breadcrumbs":10,"title":3},"416":{"body":189,"breadcrumbs":8,"title":1},"417":{"body":18,"breadcrumbs":9,"title":2},"418":{"body":265,"breadcrumbs":9,"title":2},"419":{"body":76,"breadcrumbs":10,"title":4},"42":{"body":0,"breadcrumbs":5,"title":2},"420":{"body":88,"breadcrumbs":7,"title":1},"421":{"body":0,"breadcrumbs":9,"title":3},"422":{"body":94,"breadcrumbs":7,"title":1},"423":{"body":250,"breadcrumbs":7,"title":1},"424":{"body":98,"breadcrumbs":8,"title":2},"425":{"body":0,"breadcrumbs":9,"title":3},"426":{"body":124,"breadcrumbs":7,"title":1},"427":{"body":192,"breadcrumbs":7,"title":1},"428":{"body":352,"breadcrumbs":8,"title":2},"429":{"body":0,"breadcrumbs":9,"title":3},"43":{"body":109,"breadcrumbs":4,"title":1},"430":{"body":194,"breadcrumbs":7,"title":1},"431":{"body":369,"breadcrumbs":9,"title":3},"432":{"body":101,"breadcrumbs":7,"title":1},"433":{"body":139,"breadcrumbs":16,"title":7},"434":{"body":75,"breadcrumbs":10,"title":1},"435":{"body":44,"breadcrumbs":11,"title":2},"436":{"body":24,"breadcrumbs":11,"title":2},"437":{"body":166,"breadcrumbs":15,"title":6},"438":{"body":207,"breadcrumbs":12,"title":3},"439":{"body":24,"breadcrumbs":13,"title":4},"44":{"body":121,"breadcrumbs":4,"title":1},"440":{"body":23,"breadcrumbs":12,"title":3},"441":{"body":0,"breadcrumbs":11,"title":2},"442":{"body":16,"breadcrumbs":12,"title":3},"443":{"body":7,"breadcrumbs":11,"title":2},"444":{"body":11,"breadcrumbs":12,"title":3},"445":{"body":18,"breadcrumbs":13,"title":4},"446":{"body":90,"breadcrumbs":11,"title":2},"447":{"body":28,"breadcrumbs":15,"title":6},"448":{"body":28,"breadcrumbs":18,"title":9},"449":{"body":83,"breadcrumbs":7,"title":2},"45":{"body":66,"breadcrumbs":5,"title":2},"450":{"body":38,"breadcrumbs":6,"title":1},"451":{"body":191,"breadcrumbs":6,"title":1},"452":{"body":55,"breadcrumbs":9,"title":4},"453":{"body":84,"breadcrumbs":11,"title":6},"454":{"body":329,"breadcrumbs":9,"title":4},"455":{"body":62,"breadcrumbs":7,"title":2},"456":{"body":0,"breadcrumbs":7,"title":2},"457":{"body":159,"breadcrumbs":7,"title":2},"458":{"body":325,"breadcrumbs":10,"title":5},"459":{"body":415,"breadcrumbs":9,"title":4},"46":{"body":43,"breadcrumbs":6,"title":3},"460":{"body":122,"breadcrumbs":6,"title":1},"461":{"body":58,"breadcrumbs":7,"title":2},"462":{"body":72,"breadcrumbs":8,"title":3},"463":{"body":21,"breadcrumbs":6,"title":1},"464":{"body":38,"breadcrumbs":9,"title":4},"465":{"body":20,"breadcrumbs":8,"title":3},"466":{"body":26,"breadcrumbs":7,"title":2},"467":{"body":6,"breadcrumbs":9,"title":4},"468":{"body":21,"breadcrumbs":7,"title":2},"469":{"body":49,"breadcrumbs":11,"title":5},"47":{"body":0,"breadcrumbs":7,"title":4},"470":{"body":98,"breadcrumbs":7,"title":1},"471":{"body":192,"breadcrumbs":7,"title":1},"472":{"body":97,"breadcrumbs":10,"title":4},"473":{"body":0,"breadcrumbs":9,"title":3},"474":{"body":15,"breadcrumbs":9,"title":3},"475":{"body":163,"breadcrumbs":9,"title":3},"476":{"body":14,"breadcrumbs":10,"title":4},"477":{"body":26,"breadcrumbs":11,"title":5},"478":{"body":75,"breadcrumbs":8,"title":2},"479":{"body":29,"breadcrumbs":9,"title":4},"48":{"body":116,"breadcrumbs":4,"title":1},"480":{"body":16,"breadcrumbs":6,"title":1},"481":{"body":58,"breadcrumbs":9,"title":4},"482":{"body":280,"breadcrumbs":8,"title":3},"483":{"body":8,"breadcrumbs":7,"title":2},"484":{"body":29,"breadcrumbs":7,"title":2},"485":{"body":37,"breadcrumbs":12,"title":5},"486":{"body":131,"breadcrumbs":8,"title":1},"487":{"body":138,"breadcrumbs":10,"title":3},"488":{"body":20,"breadcrumbs":11,"title":4},"489":{"body":385,"breadcrumbs":10,"title":3},"49":{"body":43,"breadcrumbs":6,"title":3},"490":{"body":88,"breadcrumbs":9,"title":2},"491":{"body":177,"breadcrumbs":9,"title":2},"492":{"body":40,"breadcrumbs":10,"title":3},"493":{"body":104,"breadcrumbs":9,"title":2},"494":{"body":38,"breadcrumbs":13,"title":6},"495":{"body":41,"breadcrumbs":9,"title":2},"496":{"body":80,"breadcrumbs":9,"title":2},"497":{"body":14,"breadcrumbs":2,"title":1},"498":{"body":0,"breadcrumbs":15,"title":7},"499":{"body":51,"breadcrumbs":9,"title":1},"5":{"body":100,"breadcrumbs":5,"title":4},"50":{"body":75,"breadcrumbs":7,"title":4},"500":{"body":106,"breadcrumbs":12,"title":4},"501":{"body":72,"breadcrumbs":13,"title":5},"502":{"body":0,"breadcrumbs":15,"title":7},"503":{"body":112,"breadcrumbs":12,"title":4},"504":{"body":112,"breadcrumbs":17,"title":9},"505":{"body":55,"breadcrumbs":14,"title":6},"506":{"body":134,"breadcrumbs":19,"title":11},"507":{"body":42,"breadcrumbs":13,"title":5},"508":{"body":340,"breadcrumbs":12,"title":4},"509":{"body":2,"breadcrumbs":8,"title":1},"51":{"body":23,"breadcrumbs":3,"title":2},"52":{"body":111,"breadcrumbs":4,"title":1},"53":{"body":98,"breadcrumbs":5,"title":2},"54":{"body":264,"breadcrumbs":4,"title":1},"55":{"body":0,"breadcrumbs":6,"title":3},"56":{"body":391,"breadcrumbs":6,"title":3},"57":{"body":17,"breadcrumbs":5,"title":2},"58":{"body":0,"breadcrumbs":6,"title":3},"59":{"body":44,"breadcrumbs":9,"title":6},"6":{"body":0,"breadcrumbs":4,"title":3},"60":{"body":12,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":9,"title":6},"62":{"body":58,"breadcrumbs":6,"title":3},"63":{"body":47,"breadcrumbs":4,"title":1},"64":{"body":6,"breadcrumbs":7,"title":4},"65":{"body":136,"breadcrumbs":5,"title":2},"66":{"body":117,"breadcrumbs":5,"title":2},"67":{"body":200,"breadcrumbs":5,"title":2},"68":{"body":134,"breadcrumbs":6,"title":3},"69":{"body":22,"breadcrumbs":3,"title":2},"7":{"body":51,"breadcrumbs":4,"title":3},"70":{"body":67,"breadcrumbs":3,"title":1},"71":{"body":122,"breadcrumbs":4,"title":2},"72":{"body":121,"breadcrumbs":4,"title":2},"73":{"body":92,"breadcrumbs":4,"title":2},"74":{"body":111,"breadcrumbs":5,"title":3},"75":{"body":99,"breadcrumbs":7,"title":5},"76":{"body":99,"breadcrumbs":7,"title":5},"77":{"body":319,"breadcrumbs":4,"title":2},"78":{"body":171,"breadcrumbs":3,"title":1},"79":{"body":106,"breadcrumbs":6,"title":4},"8":{"body":42,"breadcrumbs":6,"title":5},"80":{"body":165,"breadcrumbs":3,"title":1},"81":{"body":155,"breadcrumbs":4,"title":2},"82":{"body":260,"breadcrumbs":9,"title":4},"83":{"body":185,"breadcrumbs":5,"title":2},"84":{"body":462,"breadcrumbs":4,"title":1},"85":{"body":177,"breadcrumbs":5,"title":2},"86":{"body":168,"breadcrumbs":6,"title":3},"87":{"body":199,"breadcrumbs":4,"title":1},"88":{"body":215,"breadcrumbs":4,"title":1},"89":{"body":351,"breadcrumbs":4,"title":1},"9":{"body":56,"breadcrumbs":3,"title":2},"90":{"body":229,"breadcrumbs":6,"title":3},"91":{"body":13,"breadcrumbs":9,"title":4},"92":{"body":90,"breadcrumbs":7,"title":2},"93":{"body":288,"breadcrumbs":7,"title":2},"94":{"body":114,"breadcrumbs":2,"title":1},"95":{"body":193,"breadcrumbs":4,"title":3},"96":{"body":80,"breadcrumbs":11,"title":3},"97":{"body":6,"breadcrumbs":10,"title":2},"98":{"body":149,"breadcrumbs":10,"title":2},"99":{"body":127,"breadcrumbs":13,"title":5}},"docs":{"0":{"body":"The AWS Rust SDK aims to provide an official, high quality & complete interface to AWS services. We plan to eventually use the CRT to provide signing & credential management. The Rust SDK will provide first-class support for the CRT as well as Tokio & Hyper . The Rust SDK empowers advanced customers to bring their own HTTP/IO implementations. Our design choices are guided by our Tenets .","breadcrumbs":"Design Overview » Design Overview","id":"0","title":"Design Overview"},"1":{"body":"The design builds on the learnings, ideas, hard work, and GitHub issues of the 142 Rusoto contributors & thousands of users who built this first and learned the hard way.","breadcrumbs":"Design Overview » Acknowledgments","id":"1","title":"Acknowledgments"},"10":{"body":"","breadcrumbs":"Design FAQ » Design FAQ","id":"10","title":"Design FAQ"},"100":{"body":"If you have your own source of credentials, you may opt-out of the standard credential provider chain. To do this, implement the ProvideCredentials trait. NOTE: aws_types::Credentials already implements ProvideCredentials. If you want to use the SDK with static credentials, you're already done! use aws_types::credentials::{ProvideCredentials, provide_credentials::future, Result}; struct MyCustomProvider; impl MyCustomProvider { pub async fn load_credentials(&self) -> Result { todo!() // A regular async function }\n} impl ProvideCredentials for MyCustomProvider { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.load_credentials()) }\n} Hint: If your credential provider is not asynchronous, you can use ProvideCredentials::ready instead to save an allocation. After writing your custom provider, you'll use it in when constructing the configuration: #[tokio::main]\nasync fn main() { let config = aws_config::from_env().credentials_provider(MyCustomProvider).load().await; let dynamodb = dynamodb::new(&config);\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Specifying a custom credential provider","id":"100","title":"Specifying a custom credential provider"},"101":{"body":"Achieving this design consists of three major changes: Add a Config struct to aws-types. This contains a config, but with no logic to construct it. This represents what configuration SDKS need, but not how to load the information from the environment. Create the aws-config crate. aws-config contains the logic to load configuration from the environment. No generated service clients will depend on aws-config. This is critical to avoid circular dependencies and to allow aws-config to depend on other AWS services. aws-config contains individual providers as well as a pre-assembled default provider chain for region and credentials. It will also contain crate features to automatically bring in HTTPS and async-sleep implementations. Remove all \"business logic\" from aws-types. aws-types should be an interface-only crate that is extremely stable. The ProvideCredentials trait should move into aws-types. The region provider trait which only exists to support region-chaining will move out of aws-types into aws-config. Services will continue to generate their own Config structs. These will continue to be customizable as they are today, however, they won't have any default resolvers built in. Each AWS config will implement From<&aws_types::SharedConfig> . A convenience method to new() a fluent client directly from a shared config will also be generated.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Proposed Design","id":"101","title":"Proposed Design"},"102":{"body":"This RFC proposes adding region and credentials providers support to the shared config. A future RFC will propose integration with HTTP settings, HTTPs connectors, and async sleep. struct Config { // private fields ...\n} impl Config { pub fn region(&self) -> Option<&Region> { self.region.as_ref() } pub fn credentials_provider(&self) -> Option { self.credentials_provider.clone() } pub fn builder() -> Builder { Builder::default() }\n} The Builder for Config allows customers to provide individual overrides and handles the insertion of the default chain for regions and credentials.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Shared Config Implementation","id":"102","title":"Shared Config Implementation"},"103":{"body":"Sleep and Connector are both runtime dependent features. aws-config will define rt-tokio and rustls and native-tls optional features. This centralizes the Tokio/Hyper dependency eventually removing the need for each service to maintain their own Tokio/Hyper features. Although not proposed in this RFC, shared config will eventually gain support for creating an HTTPs client from HTTP settings.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sleep + Connectors","id":"103","title":"Sleep + Connectors"},"104":{"body":"Currently, the .build() method on service config will fill in defaults. As part of this change, .build() called on the service config with missing properties will fill in \"empty\" defaults. If no credentials provider is given, a NoCredentials provider will be set, and Region will remain as None.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » The .build() method on ::Config","id":"104","title":"The .build() method on ::Config"},"105":{"body":"The introduction of Config to aws-types is not without risks. If a customer depends on a version aws-config that uses Config that is incompatible, they will get confusing compiler errors. An example of a problematic set of dependent versions: ┌─────────────────┐ ┌───────────────┐\n│ aws-types = 0.1 │ │aws-types= 0.2 │\n└─────────────────┘ └───────────────┘ ▲ ▲ │ │ │ │ │ │ ┌─────────┴─────────────┐ ┌────────┴───────┐ │aws-sdk-dynamodb = 0.5 │ │aws-config = 0.6│ └───────────┬───────────┘ └───────┬────────┘ │ │ │ │ │ │ │ │ │ │ ├─────────────────────┬────────┘ │ my-lambda-function │ └─────────────────────┘ To mitigate this risk, we will need to make aws-types essentially permanently stable. Changes to aws-types need to be made with extreme care. This will ensure that two versions of aws-types never end up in a customer's dependency tree. We will dramatically reduce the surface area of aws-types to contain only interfaces. Several breaking changes will be made as part of this, notably, the profile file parsing will be moved out of aws-types. Finally, to mitigate this risk even further, services will pub use items from aws-types directly which means that even if a dependency mismatch exists, it is still possible for customers to work around it.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Stability and Versioning","id":"105","title":"Stability and Versioning"},"106":{"body":"ProvideRegion becomes async using a newtype'd future. AsyncProvideCredentials is removed. ProvideCredentials becomes async using a newtype'd future. ProvideCredentials moved into aws-types. Credentials moved into aws-types Create aws-config. Profile-file parsing moved into aws-config, region chain & region environment loaders moved to aws-config. os_shim_internal moved to ??? aws-smithy-types? Add Config to aws-types. Ensure that it's set up to add new members while remaining backwards compatible. Code generate From<&SharedConfig> for ::Config Code generate ::Client::new(&shared_config) Remove ::from_env","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Changes Checklist","id":"106","title":"Changes Checklist"},"107":{"body":"Connector construction needs to be a function of HTTP settings An AsyncSleep should be added to aws-types::Config","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Open Issues","id":"107","title":"Open Issues"},"108":{"body":"Status: Accepted For a summarized list of proposed changes, see the Changes Checklist section. Most AWS SDK operations use HTTP/1.1, but bi-directional streaming operations that use the Event Stream message framing format need to use HTTP/2 (h2). Smithy models can also customize which HTTP versions are used in each individual protocol trait. For example, @restJson1 has attributes http and eventStreamHttp to list out the versions that should be used in a priority order. There are two problems in play that this doc attempts to solve: Connector Creation : Customers need to be able to create connectors with the HTTP settings they desire, and these custom connectors must align with what the Smithy model requires. Connector Selection : The generated code must be able to select the connector that best matches the requirements from the Smithy model.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » RFC: Supporting multiple HTTP versions for SDKs that use Event Stream","id":"108","title":"RFC: Supporting multiple HTTP versions for SDKs that use Event Stream"},"109":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Terminology","id":"109","title":"Terminology"},"11":{"body":"Smithy is the interface design language used by AWS services. smithy-rs allows users to generate a Rust client for any Smithy based service (pending protocol support), including those outside of AWS.","breadcrumbs":"Design FAQ » What is Smithy?","id":"11","title":"What is Smithy?"},"110":{"body":"Fluent clients currently keep a handle to a single Smithy client, which is a wrapper around the underlying connector. When constructing operation builders, this handle is Arc cloned and given to the new builder instances so that their send() calls can initiate a request. The generated fluent client code ends up looking like this: struct Handle { client: aws_smithy_client::Client, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} Functions are generated per operation on the fluent client to gain access to the individual operation builders. For example: pub fn assume_role(&self) -> fluent_builders::AssumeRole { fluent_builders::AssumeRole::new(self.handle.clone())\n} The fluent operation builders ultimately implement send(), which chooses the one and only Smithy client out of the handle to make the request with: pub struct AssumeRole { handle: std::sync::Arc>, inner: crate::input::assume_role_input::Builder,\n} impl AssumeRole where ...{ pub async fn send(self) -> Result> where ... { // Setup code omitted ... // Make the actual request self.handle.client.call(op).await }\n} Smithy clients are constructed from a connector, as shown: let connector = Builder::new() .https() .middleware(...) .build();\nlet client = Client::with_config(connector, Config::builder().build()); The https() method on the Builder constructs the actual Hyper client, and is driven off Cargo features to select the correct TLS implementation. For example: #[cfg(feature = \"rustls\")]\npub fn https() -> Https { let https = hyper_rustls::HttpsConnector::with_native_roots(); let client = hyper::Client::builder().build::<_, SdkBody>(https); // HyperAdapter is a Tower `Service` request -> response connector that just calls the Hyper client crate::hyper_impls::HyperAdapter::from(client)\n}","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » How Clients Work Today","id":"110","title":"How Clients Work Today"},"111":{"body":"Customers need to be able to provide HTTP settings, such as timeouts, for all connectors that the clients use. These should come out of the SharedConfig when it is used. Connector creation also needs to be customizable so that alternate HTTP implementations can be used, or so that a fake implementation can be used for tests. To accomplish this, SharedConfig will have a make_connector member. A customer would configure it as such: let config = some_shared_config_loader() .with_http_settings(my_http_settings) .with_make_connector(|reqs: &MakeConnectorRequirements| { Some(MyCustomConnector::new(reqs)) }) .await; The passed in MakeConnectorRequirements will hold the customer-provided HttpSettings as well as any Smithy-modeled requirements, which will just be HttpVersion for now. The MakeConnectorRequirements struct will be marked non_exhaustive so that new requirements can be added to it as the SDK evolves. A default make_connector implementation would be provided that creates a Hyper connector based on the Cargo feature flags. This might look something like this: #[cfg(feature = \"rustls\")]\npub fn default_connector(reqs: &HttpRequirements) -> HyperAdapter { let https = hyper_rustls::HttpsConnector::with_native_roots(); let mut builder = hyper::Client::builder(); builder = configure_settings(builder, &reqs.http_settings); if let Http2 = &reqs.http_version { builder = builder.http2_only(true); } HyperAdapter::from(builder.build::<_, SdkBody>(https))\n} For any given service, make_connector could be called multiple times to create connectors for all required HTTP versions and settings. Note: the make_connector returns an Option since an HTTP version may not be required, but rather, preferred according to a Smithy model. For operations that list out [\"h2\", \"HTTP/1.1\"] as the desired versions, a customer could choose to provide only an HTTP 1 connector, and the operation should still succeed.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Creation Problem","id":"111","title":"Solving the Connector Creation Problem"},"112":{"body":"Each service operation needs to be able to select a connector that meets its requirements best from the customer provided connectors. Initially, the only selection criteria will be the HTTP version, but later when per-operation HTTP settings are implemented, the connector will also need to be keyed off of those settings. Since connector creation is not a cheap process, connectors will need to be cached after they are created. This caching is currently handled by the Handle in the fluent client, which holds on to the Smithy client. This cache needs to be adjusted to: Support multiple connectors, keyed off of the customer provided HttpSettings, and also off of the Smithy modeled requirements. Be lazy initialized. Services that have a mix of Event Stream and non-streaming operations shouldn't create an HTTP/2 client if the customer doesn't intend to use the Event Stream operations that require it. To accomplish this, the Handle will hold a cache that is optimized for many reads and few writes: #[derive(Debug, Hash, Eq, PartialEq)]\nstruct ConnectorKey { http_settings: HttpSettings, http_version: HttpVersion,\n} struct Handle { clients: RwLock, aws_smithy_client::Client>>, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} With how the generics are organized, the connector type will have to be the same between HTTP implementations, but this should be fine since it is generally a thin wrapper around a separate HTTP implementor. For cases where it is not, the custom connector type can host its own dyn Trait solution. The HttpRequirements struct will hold HttpSettings as copy-on-write so that it can be used for cache lookup without having to clone HttpSettings: struct HttpRequirements<'a> { http_settings: Cow<'a, HttpSettings>, http_version: HttpVersion,\n} impl<'a> HttpRequirements<'a> { // Needed for converting a borrowed HttpRequirements into an owned cache key for cache population pub fn into_owned(self) -> HttpRequirements<'static> { Self { http_settings: Cow::Owned(self.http_settings.into_owned()), http_version: self.http_version, } }\n} With the cache established, each operation needs to be aware of its requirements. The code generator will be updated to store a prioritized list of HttpVersion in the property bag in an input's make_operation() method. This prioritized list will come from the Smithy protocol trait's http or eventStreamHttp attribute, depending on the operation. The fluent client will then pull this list out of the property bag so that it can determine which connector to use. This indirection is necessary so that an operation still holds all information needed to make a service call from the Smithy client directly. Note: This may be extended in the future to be more than just HttpVersion, for example, when per-operation HTTP setting overrides are implemented. This doc is not attempting to solve that problem. In the fluent client, this will look as follows: impl AssumeRole where ... { pub async fn send(self) -> Result> where ... { let input = self.create_input()?; let op = input.make_operation(&self.handle.conf)?; // Grab the `make_connector` implementation let make_connector = self.config.make_connector(); // Acquire the prioritized HttpVersion list let http_versions = op.properties().get::(); // Make the actual request (using default HttpSettings until modifying those is implemented) let client = self.handle .get_or_create_client(make_connector, &default_http_settings(), &http_versions) .await?; client.call(op).await }\n} If an operation requires a specific protocol version, and if the make_connection implementation can't provide that it, then the get_or_create_client() function will return SdkError::ConstructionFailure indicating the error.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Selection Problem","id":"112","title":"Solving the Connector Selection Problem"},"113":{"body":"Create HttpVersion in aws-smithy-http with Http1_1 and Http2 Refactor existing https() connector creation functions to take HttpVersion Add make_connector to SharedConfig, and wire up the https() functions as a default Create HttpRequirements in aws-smithy-http Implement the connector cache on Handle Implement function to calculate a minimum required set of HTTP versions from a Smithy model in the code generator Update the make_operation code gen to put an HttpVersionList into the operation property bag Update the fluent client send() function code gen grab the HTTP version list and acquire the correct connector with it Add required defaulting for models that don't set the optional http and eventStreamHttp protocol trait attributes","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Changes Checklist","id":"113","title":"Changes Checklist"},"114":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Several AWS services allow for presigned requests in URL form, which is described well by S3's documentation on authenticating requests using query parameters . This doc establishes the customer-facing API for creating these presigned URLs and how they will be implemented in a generic fashion in the SDK codegen.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » RFC: API for Presigned URLs","id":"114","title":"RFC: API for Presigned URLs"},"115":{"body":"To differentiate between the clients that are present in the generated SDK today, the following terms will be used throughout this doc: Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Terminology","id":"115","title":"Terminology"},"116":{"body":"Today, presigned URLs take an expiration time that's not part of the service API. The SDK will make this configurable as a separate struct so that there's no chance of name collisions, and so that additional fields can be added in the future. Fields added later will require defaulting for backwards compatibility. Customers should also be able to set a start time on the presigned URL's expiration so that they can generate URLs that become active in the future. An optional start_time option will be available and default to SystemTime::now(). Construction PresigningConfig can be done with a builder, but a PresigningConfig::expires_in convenience function will be provided to bypass the builder for the most frequent use-case. #[non_exhaustive]\n#[derive(Debug, Clone)]\npub struct PresigningConfig { start_time: SystemTime, expires_in: Duration,\n} #[non_exhaustive]\n#[derive(Debug)]\npub struct Builder { start_time: Option, expires_in: Option,\n} impl Builder { pub fn start_time(self, start_time: SystemTime) -> Self { ... } pub fn set_start_time(&mut self, start_time: Option) { ... } pub fn expires_in(self, expires_in: Duration) -> Self { ... } pub fn set_expires_in(&mut self, expires_in: Option) { ... } // Validates `expires_in` is no greater than one week pub fn build(self) -> Result { ... }\n} impl PresigningConfig { pub fn expires_in(expires_in: Duration) -> PresigningConfig { Self::builder().expires(expires).build().unwrap() } pub fn builder() -> Builder { ... }\n} Construction of PresigningConfig will validate that expires_in is no greater than one week, as this is the longest supported expiration time for SigV4. This validation will result in a panic. It's not inconceivable that PresigningConfig will need additional service-specific parameters as customizations, so it will be code generated with each service rather than living a shared location.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Presigned URL config","id":"116","title":"Presigned URL config"},"117":{"body":"The generated fluent builders for operations that support presigning will have a presigned() method in addition to send() that will return a presigned URL rather than sending the request. For S3's GetObject, the usage of this will look as follows: let config = aws_config::load_config_from_environment().await;\nlet client = s3::Client::new(&config);\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = client.get_object() .bucket(\"example-bucket\") .key(\"example-object\") .presigned(presigning_config) .await?; This API requires a client, and for use-cases where no actual service calls need to be made, customers should be able to create presigned URLs without the overhead of an HTTP client. Once the HTTP Versions RFC is implemented, the underlying HTTP client won't be created until the first service call, so there will be no HTTP client overhead to this approach. In a step away from the general pattern of keeping fluent client capabilities in line with Smithy client capabilities, creating presigned URLs directly from the Smithy client will not be supported. This is for two reasons: The Smithy client is not code generated, so adding a method to do presigning would apply to all operations, but not all operations can be presigned. Presigned URLs are not currently a Smithy concept ( although this may change soon ). The result of calling presigned() is a PresignedRequest, which is a wrapper with delegating functions around http::Request<()> so that the request method and additional signing headers are also made available. This is necessary since there are some presignable POST operations that require the signature to be in the headers rather than the query. Note: Presigning needs to be async because the underlying credentials provider used to sign the request may need to make service calls to acquire the credentials.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Fluent Presigned URL API","id":"117","title":"Fluent Presigned URL API"},"118":{"body":"Even though generating a presigned URL through the fluent client doesn't necessitate an HTTP client, it will be clearer that this is the case by allowing the creation of presigned URLs directly from an input. This would look as follows: let config = aws_config::load_config_from_environment().await;\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = GetObjectInput::builder() .bucket(\"example-bucket\") .key(\"example-bucket\") .presigned(&config, presigning_config) .await?; Creating the URL through the input will exercise the same code path as creating it through the client, but it will be more apparent that the overhead of a client isn't present.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Input Presigned URL API","id":"118","title":"Input Presigned URL API"},"119":{"body":"From an SDK's perspective, the following are required to make a presigned URL: Valid request input Endpoint Credentials to sign with Signing implementation The AWS middleware provides everything except the request, and the request is provided as part of the fluent builder API. The generated code needs to be able to run the middleware to fully populate a request property bag, but not actually dispatch it. The expires_in value from the presigning config needs to be piped all the way through to the signer. Additionally, the SigV4 signing needs to adjusted to do query param signing, which is slightly different than its header signing. Today, request dispatch looks as follows: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls send(). send(): Builds the final input struct, and then calls its make_operation() method with the stored config to create a Smithy Operation. Calls the underlying Smithy client with the operation. The Smithy client constructs a Tower Service with AWS middleware and a dispatcher at the bottom, and then executes it. The middleware acquire and add required signing parameters (region, credentials, endpoint, etc) to the request property bag. The SigV4 signing middleware signs the request by adding HTTP headers to it. The dispatcher makes the actual HTTP request and returns the response all the way back up the Tower. Presigning will take advantage of a lot of these same steps, but will cut out the Operation and replace the dispatcher with a presigned URL generator: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls presigned(). presigned(): Builds the final input struct, calls the make_operation() method with the stored config, and then extracts the request from the operation (discarding the rest). Mutates the OperationSigningConfig in the property bag to: Change the signature_type to HttpRequestQueryParams so that the signer runs the correct signing logic. Set expires_in to the value given by the customer in the presigning config. Constructs a Tower Service with AwsMiddleware layered in, and a PresignedUrlGeneratorLayer at the bottom. Calls the Tower Service and returns its result The AwsMiddleware will sign the request. The PresignedUrlGeneratorLayer directly returns the request since all of the work is done by the middleware. It should be noted that the presigned() function above is on the generated input struct, so implementing this for the input API is identical to implementing it for the fluent client. All the code for the new make_request() is already in the existing make_operation() and will just need to be split out.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Behind the scenes","id":"119","title":"Behind the scenes"},"12":{"body":"Compilation time: Although it's possible to use cargo features to conditionally compile individual services, we decided that this added significant complexity to the generated code. In Rust the \"unit of compilation\" is a Crate, so by using smaller crates we can get better compilation parallelism. Furthermore, ecosystem services like docs.rs have an upper limit on the maximum amount of time required to build an individual crate—if we packaged the entire SDK as a single crate, we would quickly exceed this limit. Versioning: It is expected that over time we may major-version-bump individual services. New updates will be pushed for some AWS service nearly every day. Maintaining separate crates allows us to only increment versions for the relevant pieces that change. See Independent Crate Versioning for more info.","breadcrumbs":"Design FAQ » Why is there one crate per service?","id":"12","title":"Why is there one crate per service?"},"120":{"body":"AWS models don't currently have any information about which operations can be presigned. To work around this, the Rust SDK will create a synthetic trait to model presigning with, and apply this trait to known presigned operations via customization. The code generator will look for this synthetic trait when creating the fluent builders and inputs to know if a presigned() method should be added.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Modeling Presigning","id":"120","title":"Modeling Presigning"},"121":{"body":"If a presignable operation input has a member named presigned, then there will be a name collision with the function to generate a presigned URL. To mitigate this, RustReservedWords will be updated to rename the presigned member to presigned_value similar to how send is renamed .","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Avoiding name collision","id":"121","title":"Avoiding name collision"},"122":{"body":"Update aws-sigv4 to support query param signing Create PresignedOperationSyntheticTrait Customize models for known presigned operations Create PresigningConfig and its builder Implement PresignedUrlGeneratorLayer Create new AWS codegen decorator to: Add new presigned() method to input code generator Add new presigned() method to fluent client generator Update RustReservedWords to reserve presigned() Add integration test to S3 Add integration test to Polly Add examples for using presigning for: S3 GetObject and PutObject Polly SynthesizeSpeech","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Changes Checklist","id":"122","title":"Changes Checklist"},"123":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. It is not currently possible for users of the SDK to configure a client's maximum number of retry attempts. This RFC establishes a method for users to set the number of retries to attempt when calling a service and would allow users to disable retries entirely. This RFC would introduce breaking changes to the retry module of the aws-smithy-client crate.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » RFC: Retry Behavior","id":"123","title":"RFC: Retry Behavior"},"124":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. Standard retry behavior : The standard set of retry rules across AWS SDKs. This mode includes a standard set of errors that are retried, and support for retry quotas. The default maximum number of attempts with this mode is three, unless max_attempts is explicitly configured. Adaptive retry behavior : Adaptive retry mode dynamically limits the rate of AWS requests to maximize success rate. This may be at the expense of request latency. Adaptive retry mode is not recommended when predictable latency is important. Note: supporting the \"adaptive\" retry behavior is considered outside the scope of this RFC","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Terminology","id":"124","title":"Terminology"},"125":{"body":"This RFC will demonstrate (with examples) the following ways that Users can set the maximum number of retry attempts: By calling the Config::retry_config(..) or Config::disable_retries() methods when building a service-specific config By calling the Config::retry_config(..) or Config::disable_retries() methods when building a shared config By setting the AWS_MAX_ATTEMPTS environment variable The above list is in order of decreasing precedence e.g. setting maximum retry attempts with the max_attempts builder method will override a value set by AWS_MAX_ATTEMPTS. The default number of retries is 3 as specified in the AWS SDKs and Tools Reference Guide .","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Configuring the maximum number of retries","id":"125","title":"Configuring the maximum number of retries"},"126":{"body":"Here's an example app that logs your AWS user's identity use aws_sdk_sts as sts; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Then, in your terminal: # Set the env var before running the example program\nexport AWS_MAX_ATTEMPTS=5\n# Run the example program\ncargo run","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Setting an environment variable","id":"126","title":"Setting an environment variable"},"127":{"body":"Here's an example app that creates a shared config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let config = aws_config::from_env().retry_config(retry_config).load().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on an AWS shared config","id":"127","title":"Calling a method on an AWS shared config"},"128":{"body":"Here's an example app that creates a service-specific config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let sts_config = sts::config::Config::from(&config).retry_config(retry_config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on service-specific config","id":"128","title":"Calling a method on service-specific config"},"129":{"body":"Here's an example app that creates a shared config that disables retries and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::config::Config; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::from_env().disable_retries().load().await; let sts_config = sts::config::Config::from(&config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Retries can also be disabled by explicitly passing the RetryConfig::NoRetries enum variant to the retry_config builder method: use aws_sdk_sts as sts;\nuse aws_types::retry_config::RetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts_config = sts::config::Config::from(&config).retry_config(RetryConfig::NoRetries).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Disabling retries","id":"129","title":"Disabling retries"},"13":{"body":"Compilation time: serde makes heavy use of several crates (proc-macro2, quote, and syn) that are very expensive to compile. Several service crates are already quite large and adding a serde dependency would increase compile times beyond what we consider acceptable. When we last checked, adding serde derives made compilation 23% slower. Misleading results: We can't use serde for serializing requests to AWS or deserializing responses from AWS because both sides of that process would require too much customization. Adding serialize/deserialize impls for operations has the potential to confuse users when they find it doesn't actually capture all the necessary information (like headers and trailers) sent in a request or received in a response. In the future, we may add serde support behind a feature gate. However, we would only support this for operation Input and Output structs with the aim of making SDK-related tests easier to set up and run.","breadcrumbs":"Design FAQ » Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?","id":"13","title":"Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?"},"130":{"body":"Currently, when users want to send a request, the following occurs: The user creates either a shared config or a service-specific config The user creates a fluent client for the service they want to interact with and passes the config they created. Internally, this creates an AWS client with a default retry policy The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy After this change, the process will work like this: The user creates either a shared config or a service-specific config If AWS_MAX_ATTEMPTS is set to zero, this is invalid and we will log it with tracing::warn. However, this will not error until a request is made If AWS_MAX_ATTEMPTS is 1, retries will be disabled If AWS_MAX_ATTEMPTS is greater than 1, retries will be attempted at most as many times as is specified If the user creates the config with the .disable_retries builder method, retries will be disabled If the user creates the config with the retry_config builder method, retry behavior will be set according to the RetryConfig they passed The user creates a fluent client for the service they want to interact with and passes the config they created Provider precedence will determine what retry behavior is actually set, working like how Region is set The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy These changes will be made in such a way that they enable us to add the \"adaptive\" retry behavior at a later date without introducing a breaking change.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Behind the scenes","id":"130","title":"Behind the scenes"},"131":{"body":"Create new Kotlin decorator RetryConfigDecorator Based on RegionDecorator.kt This decorator will live in the codegen project because it has relevance outside the SDK Breaking changes: Rename aws_smithy_client::retry::Config to StandardRetryConfig Rename aws_smithy_client::retry::Config::with_max_retries method to with_max_attempts in order to follow AWS convention Passing 0 to with_max_attempts will panic with a helpful, descriptive error message Create non-exhaustive aws_types::retry_config::RetryConfig enum wrapping structs that represent specific retry behaviors A NoRetry variant that disables retries. Doesn't wrap a struct since it doesn't need to contain any data A Standard variant that enables the standard retry behavior. Wraps a StandardRetryConfig struct. Create aws_config::meta::retry_config::RetryConfigProviderChain Create aws_config::meta::retry_config::ProvideRetryConfig Create EnvironmentVariableMaxAttemptsProvider struct Setting AWS_MAX_ATTEMPTS=0 and trying to load from env will panic with a helpful, descriptive error message Add retry_config method to aws_config::ConfigLoader Update AwsFluentClientDecorator to correctly configure the max retry attempts of its inner aws_hyper::Client based on the passed-in Config Add tests Test that setting retry_config to 1 disables retries Test that setting retry_config to n limits retries to n where n is a non-zero integer Test that correct precedence is respected when overriding retry behavior in a service-specific config Test that correct precedence is respected when overriding retry behavior in a shared config Test that creating a config from env if AWS_MAX_ATTEMPTS=0 will panic with a helpful, descriptive error message Test that setting invalid max_attempts=0 with a StandardRetryConfig will panic with a helpful, descriptive error message","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Changes checklist","id":"131","title":"Changes checklist"},"132":{"body":"Status: RFC The Rust Smithy Framework is a full-fledged service framework whose main responsibility is to handle request lifecycles from beginning to end. It takes care of input de-serialization, operation execution, output serialization, error handling, and provides facilities to fulfill the requirements below.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » RFC: Smithy Rust Service Framework","id":"132","title":"RFC: Smithy Rust Service Framework"},"133":{"body":"","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Requirements","id":"133","title":"Requirements"},"134":{"body":"Server side code is generated from Smithy models and implements operations, input and output structures, and errors defined in the service model.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Smithy model-driven code generation","id":"134","title":"Smithy model-driven code generation"},"135":{"body":"This new framework is built with performance in mind. It refrains from allocating memory when not needed and tries to use a majority of borrowed types, handling their memory lifetimes so that a request body can be stored in memory only once and not cloned if possible. The code is implemented on solid and widely used foundations. It uses Hyper to handle the HTTP requests, the Tokio ecosystem for asynchronous (non-blocking) operations and Tower to implement middleware such as timeouts, rate limiting, retries, and more. CPU intensive operations are scheduled on a separated thread-pool to avoid blocking the event loop. It uses Tokio axum , an HTTP framework built on top of the technologies mentioned above which handles routing, request extraction, response building, and workers lifecycle. Axum is a relatively thin layer on top of Hyper and adds very little overhead, so its performance is comparable to Hyper. The framework should allow customers to use the built-in HTTP server or select other transport implementations that can be more performant or better suited than HTTP for their use case.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Performance","id":"135","title":"Performance"},"136":{"body":"We want to deliver an extensible framework that can plugin components possibly during code generation and at runtime for specific scenarios that cannot be covered during generation. These components are developed using a standard interface provided by the framework itself.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Extensibility","id":"136","title":"Extensibility"},"137":{"body":"Being able to report and trace the status of the service is vital for the success of any product. The framework is integrated with tracing and allows non-blocking I/O through the asynchronous tracing appender . Metrics and logging are built with extensibility in mind, allowing customers to plug their own handlers following a well defined interface provided by the framework.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Observability","id":"137","title":"Observability"},"138":{"body":"Client generation is deferred to the various Smithy implementations.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Client generation","id":"138","title":"Client generation"},"139":{"body":"Benchmarking the framework is key and customers can't use anything that compromises the fundamental business objectives of latency and performance.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Benchmarking","id":"139","title":"Benchmarking"},"14":{"body":"The main question to ask yourself in this case is \"is this new behavior relevant to all services or is it only relevant to some services?\" If the behavior is relevant to all services: Behavior like this should be defined as a middleware. Behavior like this is often AWS-specific and may not be relevant to non-AWS smithy clients. Middlewares are defined outside of codegen. One example of behavior that should be defined as a middleware is request signing because all requests to AWS services must be signed. If the behavior is only relevant to some services/depends on service model specifics: Behavior like this should be defined within make_operation. Avoid defining AWS-specific behavior within make_operation. One example of behavior that should be defined in make_operation is checksum validation because only some AWS services have APIs that support checksum validation. \"Wait a second\" I hear you say, \"checksum validation is part of the AWS smithy spec, not the core smithy spec. Why is that behavior defined in make_operation?\" The answer is that that feature only applies to some operations and we don't want to codegen a middleware that only supports a subset of operations for a service.","breadcrumbs":"Design FAQ » I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?","id":"14","title":"I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?"},"140":{"body":"The generated service code is responsible for validating the model constraints of input structures.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Model validation","id":"140","title":"Model validation"},"141":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Currently, all services use a centralized AwsMiddleware that is defined in the (poorly named) aws-hyper crate. This poses a number of long term risks and limitations: When creating a Smithy Client directly for a given service, customers are forced to implicitly assume that the service uses stock AwsMiddleware. This prevents us from ever changing the middleware stack for a service in the future. It is impossible / impractical in the current situation to alter the middleware stack for a given service. For services like S3, we will almost certainly want to customize endpoint middleware in a way that is currently impossible. In light of these limitations, this RFC proposes moving middleware into each generated service. aws-inlineable will be used to host and test the middleware stack. Each service will then define a public middleware module containing their middleware stack.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » RFC: Service-specific middleware","id":"141","title":"RFC: Service-specific middleware"},"142":{"body":"Middleware : A tower layer that augments operation::Request -> operation::Response for things like signing and endpoint resolution. Aws Middleware : A specific middleware stack that meets the requirements for AWS services. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Terminology","id":"142","title":"Terminology"},"143":{"body":"Currently, AwsMiddleware is defined in aws-hyper. As part of this change, an aws-inlineable dependency will be added containing code that is largely identical. This will be exposed in a public middleware module in all generated services. At some future point, we could even expose a baseline set of default middleware for whitelabel Smithy services to make them easier to use out-of-the-box. The ClientGenerics parameter of the AwsFluentClientGenerator will be updated to become a RuntimeType, enabling loading the type directly. This has the advantage of making it fairly easy to do per-service middleware stacks since we can easily configure AwsFluentClientGenerator to insert different types based on the service id.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Detailed Design","id":"143","title":"Detailed Design"},"144":{"body":"Move aws-hyper into aws-inlineable. Update comments as needed including with a usage example about how customers can augment it. Refactor ClientGenerics to contain a RuntimeType instead of a string and configure. Update AwsFluentClientDecorator. Update all code and examples that use aws-hyper to use service-specific middleware. Push an updated README to aws-hyper deprecating the package, explaining what happened. Do not yank previous versions since those will be relied on by older SDK versions.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Changes Checklist","id":"144","title":"Changes Checklist"},"145":{"body":"Status: Implemented in smithy-rs#986 and aws-sdk-rust#351 At the time of writing, the aws-sdk-rust repository is used exclusively for the entire release process of both the Rust runtime crates from smithy-rs as well as the AWS runtime crates and the AWS SDK. This worked well when smithy-rs was only used for the AWS SDK, but now that it's also used for server codegen, there are issues around publishing the server-specific runtime crates since they don't belong to the SDK. This RFC proposes a new split-release process so that the entire smithy-rs runtime can be published separately before the AWS SDK is published.","breadcrumbs":"RFCs » RFC-0007: Split release process » RFC: Split Release Process","id":"145","title":"RFC: Split Release Process"},"146":{"body":"Smithy Runtime Crate : A crate that gets published to crates.io and supports the code generated by smithy-rs. These crates don't provide any SDK-only functionality. These crates can support client and/or server code, and clients or servers may use only a subset of them. AWS Runtime Crate : A crate of SDK-specific code that supports the code generated by the aws/codegen module in smithy-rs. These also get published to crates.io. Publish-ready Bundle : A build artifact that is ready to publish to crates.io without additional steps (such as running the publisher tool's fix-manifests subcommand). Publishing one group of crates before another is not considered an additional step for this definition. Releaser : A developer, automated process, or combination of the two that performs the actual release.","breadcrumbs":"RFCs » RFC-0007: Split release process » Terminology","id":"146","title":"Terminology"},"147":{"body":"At a high level, the requirements are: publish from both smithy-rs and aws-sdk-rust while preserving our current level of confidence in the quality of the release. This can be enumerated as: All Smithy runtime crates must be published together from smithy-rs AWS runtime crates and the SDK must be published together from aws-sdk-rust CI on smithy-rs must give confidence that the Smithy runtime crates, AWS runtime crates, and SDK are all at the right quality bar for publish. CI on the aws-sdk-rust repository must give confidence that the AWS SDK and its runtime crates are at the right quality bar for publish. To do this successfully, it must run against the exact versions of the Smithy runtime crates the code was generated against both before AND after they have been published to crates.io .","breadcrumbs":"RFCs » RFC-0007: Split release process » Requirements","id":"147","title":"Requirements"},"148":{"body":"The publish process to crates.io relied on copying all the Smithy runtime crates into the final aws-sdk-rust repository. Overall, the process looked as follows: smithy-rs generates a complete aws-sdk-rust source bundle at CI time The releaser copies the generated bundle over to aws-sdk-rust The releaser runs the publisher fix-manifests subcommand to correct the Cargo.toml files generated by smithy-rs The aws-sdk-rust CI performs one last pass on the code to verify it's sound The releaser runs the publisher publish subcommand to push all the crates up to crates.io","breadcrumbs":"RFCs » RFC-0007: Split release process » Background: How Publishing Worked Before","id":"148","title":"Background: How Publishing Worked Before"},"149":{"body":"CI in smithy-rs will be revised to generate two separate build artifacts where it generates just an SDK artifact previously. Now, it will have two build targets that get executed from CI to generate these artifacts: rust-runtime:assemble - Generates a publish-ready bundle of Smithy runtime crates. aws:sdk:assemble - Generates a publish-ready bundle of AWS runtime crates, SDK crates, and just the Smithy runtime crates that are used by the SDK. The aws-sdk-rust repository will have a new next branch that has its own set of CI workflows and branch protection rules. The releaser will take the aws:sdk:assemble artifact and apply it directly to this next branch as would have previously been done against the main branch. The main branch will continue to have the same CI as next. When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next (this will be automated in the future) Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main Tag release for main Publish SDK with publisher tool The server team can then download the rust-runtime:assemble build artifact for the tagged release in smithy-rs, and publish the aws-smithy-http-server crate from there.","breadcrumbs":"RFCs » RFC-0007: Split release process » Proposed Solution","id":"149","title":"Proposed Solution"},"15":{"body":"The transport layer of smithy-rs and the Rust SDK. Our goal is support customers to bring their own HTTP stack and runtime.","breadcrumbs":"Transport » Transport","id":"15","title":"Transport"},"150":{"body":"It should be difficult to accidentally publish a locally built set of crates. To add friction to this, the smithy-rs build process will look for the existence of the GITHUB_ACTIONS=true environment variable. If this environment variable is not set, then it will pass a flag to the Rust codegen plugin that tells it to emit a publish = false under [package] in the generated Cargo.toml. This could be easily circumvented, but the goal is to reduce the chances of accidentally publishing crates rather than making it impossible.","breadcrumbs":"RFCs » RFC-0007: Split release process » Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI","id":"150","title":"Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI"},"151":{"body":"","breadcrumbs":"RFCs » RFC-0007: Split release process » Alternatives Considered","id":"151","title":"Alternatives Considered"},"152":{"body":"This approach is similar to the proposed solution, except that the SDK would not publish the Smithy runtime crates. The aws-sdk-rust/main branch would have a small tweak to its CI so that the SDK is tested against the Smithy runtime crates that are published to crates.io This CI process would look as follows: Shallow clone aws-sdk-rust with the revision being tested Run a script to remove the path argument for the Smithy runtime crate dependencies for every crate in aws-sdk-rust. For example, aws-smithy-types = { version = \"0.33.0\", path = \"../aws-smithy-types\" } Would become: aws-smithy-types = { version = \"0.33.0\" } Run the tests as usual When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next Wait for successful CI in aws-sdk-rust/next Download the Smithy runtime crates build artifact and publish it to crates.io Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main (this time actually running against the crates.io Smithy runtime crates) Tag release for main Publish SDK with publisher tool","breadcrumbs":"RFCs » RFC-0007: Split release process » Publish Smithy runtime crates from smithy-rs build artifacts","id":"152","title":"Publish Smithy runtime crates from smithy-rs build artifacts"},"153":{"body":"This approach is similar to the previous alternative, except that the aws-sdk-rust repository won't have a snapshot of the Smithy runtime crates, and an additional step needs to be performed during CI for the next branch so that it looks as follows: Make a shallow clone of aws-sdk-rust/next Retrieve the smithy-rs commit hash that was used to generate the SDK from a file that was generated alongside the rest of the build artifacts from smithy-rs and copied into aws-sdk-rust. Make a shallow clone of smithy-rs at the correct commit hash Use a script to add a [patch] section to all the AWS SDK crates to point to the Smithy runtime crates from the local clone of smithy-rs. For example: # The dependencies section is left alone, but is here for context\n[dependencies]\n# Some version of aws-smithy-types that isn't on crates.io yet, referred to as `` below\naws-smithy-types = \"\" # This patch section gets added by the script\n[patch.crates-io]\naws-smithy-types = { version = \"\", path = \"path/to/local/smithy-rs/rust-runtime/aws-smithy-types\"} Run CI as normal. Note: smithy-rs would need to do the same patching in CI as aws-sdk-rust/next since the generated SDK would not have path dependencies for the Smithy runtime crates (since they are a publish-ready bundle intended for landing in aws-sdk-rust). The script that does this patching could live in smithy-rs and be reused by aws-sdk-rust. The disadvantage of this approach is that a customer having an issue with the current release wouldn't be able to get a fix sooner by patching their own project's crate manifest to use the aws-sdk-rust/next branch before a release is cut since their project wouldn't be able to find the unreleased Smithy runtime crates.","breadcrumbs":"RFCs » RFC-0007: Split release process » Keep Smithy runtime crates in smithy-rs","id":"153","title":"Keep Smithy runtime crates in smithy-rs"},"154":{"body":"In smithy-rs: Move publisher tool from aws-sdk-rust into smithy-rs Modify aws:sdk:assemble target to run the publisher fix-manifests subcommand Add rust-runtime:assemble target that generates publish-ready Smithy runtime crates Add CI step to create Smithy runtime bundle artifact Add GITHUB_ACTIONS=true env var check for setting the publish flag in generated AND runtime manifests Revise publisher tool to publish from an arbitrary directory In aws-sdk-rust: Implement CI for the aws-sdk-rust/next branch Remove the publisher tool Update release process documentation","breadcrumbs":"RFCs » RFC-0007: Split release process » Changes Checklist","id":"154","title":"Changes Checklist"},"155":{"body":"Status: Implemented Smithy models paginated responses . Customers of Smithy generated code & the Rust SDK will have an improved user experience if code is generated to support this. Fundamentally, paginators are a way to automatically make a series of requests with the SDK, where subsequent requests automatically forward output from the previous responses. There is nothing a paginator does that a user could not do manually, they merely simplify the common task of interacting with paginated APIs. **Specifically, a paginator will resend the orginal request but with inputToken updated to the value of the previous outputToken. In this RFC, we propose modeling paginated data as a Stream of output shapes. When an output is paginated, a paginate() method will be added to the high level builder An Paginator struct will be generated into the paginator module. If items is modeled, paginate().items() will be added to produce the paginated items. PaginatorItems will be generated into the paginator module. The Stream trait enables customers to use a number of abstractions including simple looping, and collect()ing all data in a single call. A paginator will resend the original input, but with the field marked inputToken to the value of outputToken in the previous output. Usage example: let paginator = client .list_tables() .paginate() .items() .page_size(10) .send() .await;\nlet tables: Result, _ > = paginator.collect().await; Paginators are lazy and only retrieve pages when polled by a client.","breadcrumbs":"RFCs » RFC-0008: Paginators » Summary","id":"155","title":"Summary"},"156":{"body":"Paginators will be generated into the paginator module of service crates. Currently, paginators are not feature gated, but this could be considered in the future. A paginator struct captures 2 pieces of data: // dynamodb/src/paginator.rs\nstruct ListTablesPaginator { // holds the low-level client and configuration handle: Arc>, // input builder to construct the actual input on demand input: ListTablesInputBuilder\n} In addition to the basic usage example above, when pageSize is modeled, customers can specify the page size during pagination: let mut tables = vec![];\nlet mut pages = client .list_tables() .paginate() .page_size(20) .send();\nwhile let Some(next_page) = pages.try_next().await? { // pages of 20 items requested from DynamoDb tables.extend(next_page.table_names.unwrap_or_default().into_iter());\n} Paginators define a public method send(). This method returns impl Stream. This uses FnStream defined in the aws-smithy-async crate which enables demand driven execution of a closure. A rendezvous channel is used which will block on send until demand exists. When modeled by Smithy, page_size which automatically sets the appropriate page_size parameter and items() which returns an automatically flattened paginator are also generated. Note : page_size directly sets the modeled parameter on the internal builder. This means that a value set for page size will override any previously set value for that field. // Generated paginator for ListTables\nimpl ListTablesPaginator\n{ /// Set the page size pub fn page_size(mut self, limit: i32) -> Self { self.builder.limit = Some(limit); self } /// Create a flattened paginator /// /// This paginator automatically flattens results using `table_names`. Queries to the underlying service /// are dispatched lazily. pub fn items(self) -> crate::paginator::ListTablesPaginatorItems { crate::paginator::ListTablesPaginatorItems(self) } /// Create the pagination stream /// /// _Note:_ No requests will be dispatched until the stream is used (eg. with [`.next().await`](tokio_stream::StreamExt::next)). pub async fn send( self, ) -> impl tokio_stream::Stream< Item = std::result::Result< crate::output::ListTablesOutput, aws_smithy_http::result::SdkError, >, > + Unpin { // Move individual fields out of self for the borrow checker let builder = self.builder; let handle = self.handle; fn_stream::FnStream::new(move |tx| { Box::pin(async move { // Build the input for the first time. If required fields are missing, this is where we'll produce an early error. let mut input = match builder.build().map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(input) => input, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; loop { let op = match input.make_operation(&handle.conf).await.map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(op) => op, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; let resp = handle.client.call(op).await; // If the input member is None or it was an error let done = match resp { Ok(ref resp) => { input.exclusive_start_table_name = crate::lens::reflens_structure_crate_output_list_tables_output_last_evaluated_table_name(resp).cloned(); input.exclusive_start_table_name.is_none() } Err(_) => true, }; if let Err(_) = tx.send(resp).await { // receiving end was dropped return; } if done { return; } } }) }) }\n} On Box::pin : The stream returned by AsyncStream does not implement Unpin. Unfortunately, this makes iteration require an invocation of pin_mut! and generates several hundred lines of compiler errors. Box::pin seems a worthwhile trade off to improve the user experience. On the + Unpin bound : Because auto-traits leak across impl Trait boundaries, + Unpin prevents accidental regressions in the generated code which would break users. On the crate::reflens::... : We use LensGenerator.kt to generate potentially complex accessors to deeply nested fields.","breadcrumbs":"RFCs » RFC-0008: Paginators » Details","id":"156","title":"Details"},"157":{"body":"The builders generated by ergonomic clients will gain the following method, if they represent an operation that implements the Paginated trait: /// Create a paginator for this request\n///\n/// Paginators are used by calling [`send().await`](crate::paginator::ListTablesPaginator::send) which returns a [`Stream`](tokio_stream::Stream).\npub fn paginate(self) -> crate::paginator::ListTablesPaginator { crate::paginator::ListTablesPaginator::new(self.handle, self.inner)\n}","breadcrumbs":"RFCs » RFC-0008: Paginators » Updates to ergonomic clients","id":"157","title":"Updates to ergonomic clients"},"158":{"body":"","breadcrumbs":"RFCs » RFC-0008: Paginators » Discussion Areas","id":"158","title":"Discussion Areas"},"159":{"body":"Calling send().await is not necessary from an API perspective—we could have the paginators impl-stream directly. However, it enables using impl Trait syntax and also makes the API consistent with other SDK APIs.","breadcrumbs":"RFCs » RFC-0008: Paginators » On send().await","id":"159","title":"On send().await"},"16":{"body":"aws-hyper assembles a middleware stack with tower. It provides a way to use an HTTP client other than Hyper, however, it currently has a hard dependency on Hyper & Tokio. hyper::Body is being used directly as the body implementation for responses.","breadcrumbs":"Transport » Where we are today","id":"16","title":"Where we are today"},"160":{"body":"Currently, the core trait we use is tokio_stream::Stream. This is a re-export from futures-util. There are a few other choices: Re-export Stream from tokio_stream. Use futures_util directly","breadcrumbs":"RFCs » RFC-0008: Paginators » On tokio_stream::Stream","id":"160","title":"On tokio_stream::Stream"},"161":{"body":"Currently, the paginators forward the generics from the client (C, M, R) along with their fairly annoying bounds. However, if we wanted to we could simplify this and erase all the generics when the paginator was created. Since everything is code generated, there isn't actually much duplicated code in the generator, just in the generated code.","breadcrumbs":"RFCs » RFC-0008: Paginators » On Generics","id":"161","title":"On Generics"},"162":{"body":"Create and test FnStream abstraction Generate page-level paginators Generate .items() paginators Generate doc hints pointing people to paginators Integration test using mocked HTTP traffic against a generated paginator for a real service Integration test using real traffic","breadcrumbs":"RFCs » RFC-0008: Paginators » Changes Checklist","id":"162","title":"Changes Checklist"},"163":{"body":"Status: Implemented Currently, the AWS Rust SDK's examples are duplicated across awslabs/aws-sdk-rust , smithy-lang/smithy-rs , and awsdocs/aws-doc-sdk-examples . The smithy-rs repository was formerly the source of truth for examples, with the examples being copied over to aws-sdk-rust as part of the release process, and examples were manually copied over to aws-doc-sdk-examples so that they could be included in the developer guide. Now that the SDK is more stable with less frequent breaking changes, the aws-doc-sdk-examples repository can become the source of truth so long as the examples are tested against smithy-rs and continue to be copied into aws-sdk-rust.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » RFC: Examples Consolidation","id":"163","title":"RFC: Examples Consolidation"},"164":{"body":"Examples are authored and maintained in aws-doc-sdk-examples Examples are no longer present in smithy-rs CI in smithy-rs checks out examples from aws-doc-sdk-examples and builds them against the generated SDK. Success for this CI job is optional for merging since there can be a time lag between identifying that examples are broken and fixing them. Examples must be copied into aws-sdk-rust so that the examples for a specific version of the SDK can be easily referenced. Examples must be verified in aws-sdk-rust prior to merging into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Requirements","id":"164","title":"Requirements"},"165":{"body":"A CI job will be added to smithy-rs that: Depends on the CI job that generates the full AWS SDK Checks out the aws-doc-sdk-examples repository Modifies example Cargo.toml files to point to the newly generated AWS SDK crates Runs cargo check on each example This job will not be required to pass for branch protection, but will let us know that examples need to be updated before the next release.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Example CI in smithy-rs","id":"165","title":"Example CI in smithy-rs"},"166":{"body":"The auto-sync job that copies generated code from smithy-rs into the aws-sdk-rust/next branch will be updated to check out the aws-doc-sdk-examples repository and copy the examples into aws-sdk-rust. The example Cargo.toml files will also be updated to point to the local crate paths as part of this process. The aws-sdk-rust CI already requires examples to compile, so merging next into main, the step required to perform a release, will be blocked until the examples are fixed. In the event the examples don't work on the next branch, developers and example writers will need to be able to point the examples in aws-doc-sdk-examples to the generated SDK in next so that they can verify their fixes. This can be done by hand, or a tool can be written to automate it if a significant number of examples need to be fixed.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Auto-sync to aws-sdk-rust from smithy-rs changes","id":"166","title":"Auto-sync to aws-sdk-rust from smithy-rs changes"},"167":{"body":"There are a couple of risks with this approach: Risk: Examples are broken and an urgent fix needs to be released. Possible mitigations: Revert the change that broke the examples and then add the urgent fix Create a patch branch in aws-sdk-rust, apply the fix to that based off an older version of smithy-rs with the fix applied, and merge that into main. Risk: A larger project requires changes to examples prior to GA, but multiple releases need to occur before the project completion. Possible mitigations: If the required changes compile against the older SDK, then just make the changes to the examples. Feature gate any incremental new functionality in smithy-rs, and work on example changes on a branch in aws-doc-sdk-examples. When wrapping up the project, remove the feature gating and merge the examples into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Process Risks","id":"167","title":"Process Risks"},"168":{"body":"","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Alternatives","id":"168","title":"Alternatives"},"169":{"body":"Alternatively, the examples could reside in aws-sdk-rust, be referenced from smithy-rs CI, and get copied into aws-doc-sdk-examples for inclusion in the user guide. Pros: Prior to GA, fixing examples after making breaking changes to the SDK would be easier. Otherwise, Cargo.toml files have to be temporarily modified to point to the aws-sdk-rust/next branch in order to make fixes. If a customer discovers examples via the aws-sdk-rust repository rather than via the SDK user guide, then it would be more obvious how to make changes to examples. At time of writing, the examples in the user guide link to the aws-doc-sdk-examples repository, so if the examples are discovered that way, then updating them should already be clear. Cons: Tooling would need to be built to sync examples from aws-sdk-rust into aws-doc-sdk-examples so that they could be incorporated into the user guide. Creates a circular dependency between the aws-sdk-rust and smithy-rs repositories. CI in smithy-rs needs to exercise examples, which would be in aws-sdk-rust, and aws-sdk-rust has its code generated by smithy-rs. This is workable, but may lead to problems later on. The tooling to auto-sync from aws-sdk-rust into aws-doc-sdk-examples will likely cost more than tooling to temporarily update Cargo.toml files to make example fixes (if that tooling is even necessary).","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » aws-sdk-rust as the source of truth","id":"169","title":"aws-sdk-rust as the source of truth"},"17":{"body":"Extend HttpService to add a sleep method. This is required to enable runtimes other than Tokio to define how they should sleep. Replace hyper::Body in responses with SDK Body. For now, SDKBody will probably privately wrap hyper::Body. Merge aws-hyper into aws-http. Tokio becomes an optional feature—When the Tokio feature is opted out the \"fast path\" variants for the connection variants are cfg'd out. By default, customers get a fully baked HTTP stack, but they can opt out of certain features and BYO implementation of HttpService.","breadcrumbs":"Transport » Where we want to go","id":"17","title":"Where we want to go"},"170":{"body":"Add example CI job to smithy-rs Diff examples in smithy-rs and aws-doc-sdk-examples and move desired differences into aws-doc-sdk-examples Apply example fix PRs from aws-sdk-rust into aws-doc-sdk-examples Update smithy-rs CI to copy examples from aws-doc-sdk-examples rather than from smithy-rs Delete examples from smithy-rs","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Changes Checklist","id":"170","title":"Changes Checklist"},"171":{"body":"Status: Accepted Waiters are a convenient polling mechanism to wait for a resource to become available or to be deleted. For example, a waiter could be used to wait for a S3 bucket to be created after a call to the CreateBucket API, and this would only require a small amount of code rather than building out an entire polling mechanism manually. At the highest level, a waiter is a simple polling loop (pseudo-Rust): // Track state that contains the number of attempts made and the previous delay\nlet mut state = initial_state(); loop { // Poll the service let result = poll_service().await; // Classify the action that needs to be taken based on the Smithy model match classify(result) { // If max attempts hasn't been exceeded, then retry after a delay. Otherwise, error. Retry => if state.should_retry() { let delay = state.next_retry(); sleep(delay).await; } else { return error_max_attempts(); } // Otherwise, if the termination condition was met, return the output Terminate(result) => return result, }\n} In the AWS SDK for Rust, waiters can be added without making any backwards breaking changes to the current API. This doc outlines the approach to add them in this fashion, but does NOT examine code generating response classification from JMESPath expressions, which can be left to the implementer without concern for the overall API.","breadcrumbs":"RFCs » RFC-0010: Waiters » RFC: Waiters","id":"171","title":"RFC: Waiters"},"172":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0010: Waiters » Terminology","id":"172","title":"Terminology"},"173":{"body":"Waiters must adhere to the Smithy waiter specification . To summarize: Waiters are specified by the Smithy @waitable trait Retry during polling must be exponential backoff with jitter, with the min/max delay times and max attempts configured by the @waitable trait The SDK's built-in retry needs to be replaced by the waiter's retry since the Smithy model can specify retry conditions that are contrary to the defaults. For example, an error that would otherwise be retried by default might be the termination condition for the waiter. Classification of the response must be code generated based on the JMESPath expression in the model.","breadcrumbs":"RFCs » RFC-0010: Waiters » Requirements","id":"173","title":"Requirements"},"174":{"body":"To invoke a waiter, customers will only need to invoke a single function on the AWS Client. For example, if waiting for a S3 bucket to exist, it would look like the following: // Request bucket creation\nclient.create_bucket() .bucket_name(\"my-bucket\") .send() .await()?; // Wait for it to be created\nclient.wait_until_bucket_exists() .bucket_name(\"my-bucket\") .send() .await?; The call to wait_until_bucket_exists() will return a waiter-specific fluent builder with a send() function that will start the polling and return a future. To avoid name conflicts with other API methods, the waiter functions can be added to the client via trait: pub trait WaitUntilBucketExists { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder;\n} This trait would be implemented for the service's fluent client (which will necessitate making the fluent client's handle field pub(crate)).","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter API","id":"174","title":"Waiter API"},"175":{"body":"A waiter trait implementation will merely return a fluent builder: impl WaitUntilBucketExists for Client { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder { crate::waiter::bucket_exists::Builder::new() }\n} This builder will have a short send() function to kick off the actual waiter implementation: impl Builder { // ... existing fluent builder codegen can be reused to create all the setters and constructor pub async fn send(self) -> Result> { // Builds an input from this builder let input = self.inner.build().map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?; // Passes in the client's handle, which contains a Smithy client and client config crate::waiter::bucket_exists::wait(self.handle, input).await }\n} This wait function needs to, in a loop similar to the pseudo-code in the beginning, convert the given input into an operation, replace the default response classifier on it with a no-retry classifier, and then determine what to do next based on that classification: pub async fn wait( handle: Arc, retry::Standard>>, input: HeadBucketInput,\n) -> Result> { loop { let operation = input .make_operation(&handle.conf) .await .map_err(|err| { aws_smithy_http::result::SdkError::ConstructionFailure(err.into()) })?; // Assume `ClassifyRetry` trait is implemented for `NeverRetry` to always return `RetryKind::Unnecessary` let operation = operation.with_retry_classifier(NeverRetry::new()); let result = handle.client.call(operation).await; match classify_result(&input, result) { AcceptorState::Retry => { // The sleep implementation is available here from `handle.conf.sleep_impl` unimplemented!(\"Check if another attempt should be made and calculate delay time if so\") } AcceptorState::Terminate(output) => return output, } }\n} fn classify_result( input: &HeadBucketInput, result: Result>,\n) -> AcceptorState> { unimplemented!( \"The Smithy model would dictate conditions to check here to produce an `AcceptorState`\" )\n} The retry delay time should be calculated by the same exponential backoff with jitter code that the default RetryHandler uses in aws-smithy-client . This function will need to be split up and made available to the waiter implementations so that just the delay can be calculated.","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter Implementation","id":"175","title":"Waiter Implementation"},"176":{"body":"Codegen fluent builders for waiter input and their send() functions Codegen waiter invocation traits Commonize exponential backoff with jitter delay calculation Codegen wait() functions with delay and max attempts configuration from Smithy model Codegen classify_result() functions based on JMESPath expressions in Smithy model","breadcrumbs":"RFCs » RFC-0010: Waiters » Changes Checklist","id":"176","title":"Changes Checklist"},"177":{"body":"Status: Implemented The AWS SDK for Rust and its supporting Smithy crates need to be published to crates.io so that customers can include them in their projects and also publish crates of their own that depend on them. This doc proposes a short-term solution for publishing to crates.io. This approach is intended to be executed manually by a developer using scripts and an SOP no more than once per week, and should require less than a dev week to implement.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » RFC: Publishing the Alpha SDK to Crates.io","id":"177","title":"RFC: Publishing the Alpha SDK to Crates.io"},"178":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Terminology","id":"178","title":"Terminology"},"179":{"body":"","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Requirements","id":"179","title":"Requirements"},"18":{"body":"The Smithy code generator for Rust (and by extension), the AWS SDK use an Operation abstraction to provide a unified interface for dispatching requests. Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler In the typical case, these configuration options include things like a CredentialsProvider, however, they can also be full middleware layers that will get added by the dispatch stack.","breadcrumbs":"Transport » HTTP Operations » HTTP-based Operations","id":"18","title":"HTTP-based Operations"},"180":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) For now, AWS SDK crates (including aws-config) will maintain a consistent major and minor version number across all services. The latest version of aws-sdk-s3 will always have the same major.minor version as the latest aws-sdk-dynamodb, for example. The patch version is allowed to be different between service crates, but it is unlikely that we will make use of patch versions throughout alpha and dev preview. Smithy runtime crates will have different version numbers from the AWS SDK crates, but will also maintain a consistent major.minor. The pre version tag will be alpha during the Rust SDK alpha, and will be removed once the SDK is in dev preview. During alpha, the major version will always be 0, and the minor will be bumped for all published crates for every release. A later RFC may change the process during dev preview.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Versioning","id":"180","title":"Versioning"},"181":{"body":"Mistakes will inevitably be made, and a mechanism is needed to yank packages while keeping the latest version of the SDK successfully consumable from crates.io. To keep this simple, the entire published batch of crates will be yanked if any crate in that batch needs to be yanked. For example, if 260 crates were published in a batch, and it turns out there's a problem that requires yanking one of them, then all 260 will be yanked. Attempting to do partial yanking will require a lot of effort and be difficult to get right. Yanking should be a last resort.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Yanking","id":"181","title":"Yanking"},"182":{"body":"The following changes will be bundled together as a minor version bump during weekly releases: AWS model updates New features Bug fixes in runtime crates or codegen In exceptional circumstances, a patch version will be issued if the fix doesn't require API breaking changes: CVE discovered in a runtime crate Buggy update to a runtime crate In the event of a CVE being discovered in an external dependency, if the external dependency is internal to a crate, then a patch revision can be issued for that crate to correct it. Otherwise if the CVE is in a dependency that is part of the public API, a minor revision will be issued with an expedited release. For a CVE in generated code, a minor revision will be issued with an expedited release.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Concrete Scenarios","id":"182","title":"Concrete Scenarios"},"183":{"body":"The short-term approach builds off our pre-crates.io weekly release process. That process was the following: Run script to update AWS models Manually update AWS SDK version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for GitHub actions to generate AWS SDK using newly released smithy-rs Check out aws-sdk-rust, delete existing SDK code, unzip generated SDK in place, and update readme Tag aws-sdk-rust To keep things simple: The Smithy runtime crates will have the same smithy-rs version All AWS crates will have the same AWS SDK version patch revisions are exceptional and will be one-off manually published by a developer All runtime crate version numbers in smithy-rs will be locked at 0.0.0-smithy-rs-head. This is a fake version number that gets replaced when generating the SDK. The SDK generator script in smithy-rs will be updated to: Replace Smithy runtime crate versions with the smithy-rs version from aws/sdk/gradle.properties Replace AWS runtime crate versions with AWS SDK version from aws/sdk/gradle.properties Add correct version numbers to all path dependencies in all the final crates that end up in the build artifacts This will result in all the crates having the correct version and manifests when imported into aws-sdk-rust. From there, a script needs to be written to determine crate dependency order, and publish crates (preferably with throttling and retry) in the correct order. This script needs to be able to recover from an interruption part way through publishing all the crates, and it also needs to output a list of all crate versions published together. This crate list will be commented on the release issue so that yanking the batch can be done if necessary. The new release process would be: Run script to update AWS models Manually update both the AWS SDK version and the smithy-rs version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for automation to sync changes to aws-sdk-rust/next Cut a PR to merge aws-sdk-rust/next into aws-sdk-rust/main Tag aws-sdk-rust Run publish script","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Proposal","id":"183","title":"Proposal"},"184":{"body":"Prepare runtime crate manifests for publication to crates.io (https://github.com/smithy-lang/smithy-rs/pull/755) Update SDK generator to set correct crate versions (https://github.com/smithy-lang/smithy-rs/pull/755) Write bulk publish script Write bulk yank script Write automation to sync smithy-rs to aws-sdk-rust","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Short-term Changes Checklist","id":"184","title":"Short-term Changes Checklist"},"185":{"body":"Status: RFC During its alpha and dev preview releases, the AWS SDK for Rust adopted a short-term solution for versioning and publishing to crates.io . This doc proposes a long-term versioning strategy that will carry the SDK from dev preview into general availability. This strategy will be implemented in two phases: Dev Preview : The SDK will break with its current version strategy of maintaining consistent major.minor version numbers. Stability and 1.x : This phase begins when the SDK becomes generally available. The major version will be bumped to 1, and backwards breaking changes will no longer be allowed without a major version bump to all crates in the SDK.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » RFC: Independent Crate Versioning","id":"185","title":"RFC: Independent Crate Versioning"},"186":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Terminology","id":"186","title":"Terminology"},"187":{"body":"","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Requirements","id":"187","title":"Requirements"},"188":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) In the new versioning strategy, the minor version number will no longer be coordinated across all SDK and Smithy runtime crates. During phases 1 and 2, the major version will always be 0, and the following scheme will be used: minor: New features Breaking changes Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3: major: Breaking changes minor: Changes that aren't breaking Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3, bumps to the major version must be coordinated across all SDK and runtime crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning","id":"188","title":"Versioning"},"189":{"body":"Since there will no longer be one SDK \"version\", release tags will be dates in YYYY-MM-DD format rather than version numbers. Additionally, the SDK's user agent string will need to include a separate service version number (this requirement has already been implemented).","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Release Identification","id":"189","title":"Release Identification"},"19":{"body":"This section details the flow of a request through the SDK until a response is returned to the user.","breadcrumbs":"Transport » HTTP Operations » Operation Phases","id":"19","title":"Operation Phases"},"190":{"body":"It must be possible to yank an entire release with a single action. The publisher tool must be updated to understand which crate versions were released with a given release tag, and be able to yank all the crates published from that tag.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"190","title":"Yanking"},"191":{"body":"Phase 1 will address the following challenges introduced by uncoordinating the major.minor versions: Tracking of versions associated with a release tag Creation of version bump process for code generated crates Enforcement of version bump process in runtime crates Yanking of versions associated with a release tag","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 1: Dev Preview","id":"191","title":"Phase 1: Dev Preview"},"192":{"body":"A new manifest file will be introduced in the root of aws-sdk-rust named versions.toml that describes all versioning information for any given commit in the repository. In the main branch, the versions.toml in tagged commits will become the source of truth for which crate versions belong to that release, as well as additional metadata that's required for maintaining version process in the future. The special 0.0.0-smithy-rs-head version that is used prior to Phase 1 for maintaining the runtime crate versions will no longer be used (as detailed in Versioning for Runtime Crates ). This format will look as follows: smithy_rs_version = \"\" [aws-smithy-types]\nversion = \"0.50.1\" [aws-config]\nversion = \"0.40.0\" [aws-sdk-s3]\nversion = \"0.89.0\"\nmodel_hash = \"\" # ... The auto-sync tool is responsible for maintaining this file. When it generates a new SDK, it will take the version numbers from runtime crates directly, and it will use the rules from the next section to determine the version numbers for the generated crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Version Tracking","id":"192","title":"Version Tracking"},"193":{"body":"Code generated crates will have their minor version bumped when the version of smithy-rs used to generate them changes, or when model updates with API changes are made. Three pieces of information are required to handle this process: the previously released version number, the smithy-rs version used to generate the code, and the level of model updates being applied. For this last one, if there are multiple model updates that affect only documentation, but then one model update that affects an API, then as a whole they will be considered as affecting an API and require a minor version bump. The previously released version number will be retrieved from crates.io using its API. The smithy-rs version used during code generation will become a build artifact that is saved to versions.toml in aws-sdk-rust . During phase 1, the tooling required to know if a model is a documentation-only change will not be available, so all model changes will result in a minor version bump during this phase. Overall, determining a generated crate's version number looks as follows: flowchart TD start[Generate crate version] --> smithyrschanged{A. smithy-rs changed?} smithyrschanged -- Yes --> minor1[Minor version bump] smithyrschanged -- No --> modelchanged{B. model changed?} modelchanged -- Yes --> minor2[Minor version bump] modelchanged -- No --> keep[Keep current version] A: smithy-rs changed? : Compare the smithy_rs_version in the previous versions.toml with the next versions.toml file, and if the values are different, consider smithy-rs to have changed. B: model changed? : Similarly, compare the model_hash for the crate in versions.toml.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Code Generated (SDK Service) Crates","id":"193","title":"Versioning for Code Generated (SDK Service) Crates"},"194":{"body":"The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with a build step to replace those with a consistent major.minor will be removed. These runtime crates will begin having their actual next version number in the Cargo.toml file in smithy-rs. This introduces a new problem where a developer can forget to bump a runtime crate version, so a method of process enforcement needs to be introduced. This will be done through CI when merging into smithy-rs/main and repeated when merging into aws-sdk-rust/main. The following checks need to be run for runtime crates: flowchart TD A[Check runtime crate] --> B{A. Crate has changed?} B -- Yes --> C{B. Minor bumped?} B -- No --> H{C. Version changed?} C -- Yes --> K[Pass] C -- No --> E{D. Patch bumped?} E -- Yes --> F{E. Semverver passes?} E -- No --> L[Fail] F -- Yes --> D[Pass] F -- No --> G[Fail] H -- Yes --> I[Fail] H -- No --> J[Pass] A: Crate has changed? The crate's source files and manifest will be hashed for the previous version and the next version. If these hashes match, then the crate is considered unchanged. B: Minor bumped? The previous version is compared against the next version to see if the minor version number was bumped. C: Version changed? The previous version is compared against the next version to see if it changed. D: Patch bumped? The previous version is compared against the next version to see if the patch version number was bumped. E: Semverver passes? Runs rust-semverver against the old and new versions of the crate. If semverver fails to run (for example, if it needs to be updated to the latest nightly to succeed), then fail CI saying that either semverver needs maintenance, or that a minor version bump is required. If semverver results in errors, fail CI indicating a minor version bump is required. If semverver passes, then pass CI. When running semverver, the path dependencies of the crate under examination should be updated to be crates.io references if there were no changes in those crates since the last public to crates.io. Otherwise, the types referenced from those crates in the public API will always result in breaking changes since, as far as the Rust compiler is concerned, they are different types originating from separate path-dependency crates. For CI, the aws-sdk-rust/main branch's versions.toml file is the source of truth for the previous release's crate versions and source code.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Runtime Crates","id":"194","title":"Versioning for Runtime Crates"},"195":{"body":"The publisher tool will be updated to read the versions.toml to yank all versions published in a release. This process will look as follows: Take a path to a local clone of the aws-sdk-rust repository Confirm the working tree is currently unmodified and on a release tag. Read versions.toml and print out summary of crates to yank Confirm with user before proceeding Yank crates","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"195","title":"Yanking"},"196":{"body":"Update rust-semverver to a newer nightly that can compile aws-smithy-client Establish initial versions.toml in aws-sdk-rust/main Set version numbers in runtime crates in smithy-rs Update the auto-sync tool to generate versions.toml Create CI tool to check runtime crate version Integrate with smithy-rs/main CI Integrate with aws-sdk-rust/main CI Update CI to verify no older runtime crates are used. For example, if aws-smithy-client is bumped to 0.50.0, then verify no crates (generated or runtime) depend on 0.49.0 or lower. Estimate: 2-4 dev weeks","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Changes Checklist","id":"196","title":"Changes Checklist"},"197":{"body":"When stabilizing to 1.x, the version process will stay the same, but the minor version bumps caused by version bumping runtime crates, updating models, or changing the code generator will be candidate for automatic upgrade per semver. At that point, no further API breaking changes can be made without a major version bump.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 2: Stability and 1.x","id":"197","title":"Phase 2: Stability and 1.x"},"198":{"body":"Status: RFC Adding a callback API to ByteStream and SdkBody will enable developers using the SDK to implement things like checksum validations and 'read progress' callbacks.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » RFC: Callback APIs for ByteStream and SdkBody","id":"198","title":"RFC: Callback APIs for ByteStream and SdkBody"},"199":{"body":"Note that comments starting with '//' are not necessarily going to be included in the actual implementation and are intended as clarifying comments for the purposes of this RFC. // in aws_smithy_http::callbacks... /// A callback that, when inserted into a request body, will be called for corresponding lifecycle events.\ntrait BodyCallback: Send { /// This lifecycle function is called for each chunk **successfully** read. If an error occurs while reading a chunk, /// this method will not be called. This method takes `&mut self` so that implementors may modify an implementing /// struct/enum's internal state. Implementors may return an error. fn update(&mut self, #[allow(unused_variables)] bytes: &[u8]) -> Result<(), BoxError> { Ok(()) } /// This callback is called once all chunks have been read. If the callback encountered one or more errors /// while running `update`s, this is how those errors are raised. Implementors may return a [`HeaderMap`][HeaderMap] /// that will be appended to the HTTP body as a trailer. This is only useful to do for streaming requests. fn trailers(&self) -> Result>, BoxError> { Ok(None) } /// Create a new `BodyCallback` from an existing one. This is called when a `BodyCallback` needs to be /// re-initialized with default state. For example: when a request has a body that needs to be /// rebuilt, all callbacks for that body need to be run again but with a fresh internal state. fn make_new(&self) -> Box;\n} impl BodyCallback for Box { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { BodyCallback::update(self, bytes) } fn trailers(&self) -> Result>, BoxError> { BodyCallback::trailers(self) } fn make_new(&self) -> Box { BodyCallback::make_new(self) }\n} The changes we need to make to ByteStream: (The current version of ByteStream and Inner can be seen here .) // in `aws_smithy_http::byte_stream`... // We add a new method to `ByteStream` for inserting callbacks\nimpl ByteStream { // ...other impls omitted // A \"builder-style\" method for setting callbacks pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.inner.with_body_callback(body_callback); self }\n} impl Inner { // `Inner` wraps an `SdkBody` which has a \"builder-style\" function for adding callbacks. pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.body.with_body_callback(body_callback); self }\n} The changes we need to make to SdkBody: (The current version of SdkBody can be seen here .) // In aws_smithy_http::body... #[pin_project]\npub struct SdkBody { #[pin] inner: Inner, rebuild: Option Inner) + Send + Sync>>, // We add a `Vec` to store the callbacks #[pin] callbacks: Vec>,\n} impl SdkBody { // We update the various fns that create `SdkBody`s to create an empty `Vec` to store callbacks. // Those updates are very simple so I've omitted them from this code example. fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let mut this = self.project(); // This block is old. I've included for context. let polling_result = match this.inner.project() { InnerProj::Once(ref mut opt) => { let data = opt.take(); match data { Some(bytes) if bytes.is_empty() => Poll::Ready(None), Some(bytes) => Poll::Ready(Some(Ok(bytes))), None => Poll::Ready(None), } } InnerProj::Streaming(body) => body.poll_data(cx).map_err(|e| e.into()), InnerProj::Dyn(box_body) => box_body.poll_data(cx), InnerProj::Taken => { Poll::Ready(Some(Err(\"A `Taken` body should never be polled\".into()))) } }; // This block is new. match &polling_result { // When we get some bytes back from polling, pass those bytes to each callback in turn Poll::Ready(Some(Ok(bytes))) => { for callback in this.callbacks.iter_mut() { // Callbacks can run into errors when reading bytes. They'll be surfaced here callback.update(bytes)?; } } // When we're done polling for bytes, run each callback's `trailers()` method. If any calls to // `trailers()` return an error, propagate that error up. Otherwise, continue. Poll::Ready(None) => { for callback_result in this.callbacks.iter().map(BodyCallback::trailers) { if let Err(e) = callback_result { return Poll::Ready(Some(Err(e))); } } } _ => (), } // Now that we've inspected the polling result, all that's left to do is to return it. polling_result } // This function now has the added responsibility of cloning callback functions (but with fresh state) // in the case that the `SdkBody` needs to be rebuilt. pub fn try_clone(&self) -> Option { self.rebuild.as_ref().map(|rebuild| { let next = rebuild(); let callbacks = self .callbacks .iter() .map(Callback::make_new) .collect(); Self { inner: next, rebuild: self.rebuild.clone(), callbacks, } }) } pub fn with_callback(&mut self, callback: BodyCallback) -> &mut Self { self.callbacks.push(callback); self }\n} /// Given two [`HeaderMap`][HeaderMap]s, merge them together and return the merged `HeaderMap`. If the\n/// two `HeaderMap`s share any keys, values from the right `HeaderMap` be appended to the left `HeaderMap`.\n///\n/// # Example\n///\n/// ```rust\n/// let header_name = HeaderName::from_static(\"some_key\");\n///\n/// let mut left_hand_side_headers = HeaderMap::new();\n/// left_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"lhs value\").unwrap(),\n/// );\n///\n/// let mut right_hand_side_headers = HeaderMap::new();\n/// right_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"rhs value\").unwrap(),\n/// );\n///\n/// let merged_header_map =\n/// append_merge_header_maps(left_hand_side_headers, right_hand_side_headers);\n/// let merged_values: Vec<_> = merged_header_map\n/// .get_all(header_name.clone())\n/// .into_iter()\n/// .collect();\n///\n/// // Will print 'some_key: [\"lhs value\", \"rhs value\"]'\n/// println!(\"{}: {:?}\", header_name.as_str(), merged_values);\n/// ```\nfn append_merge_header_maps( mut lhs: HeaderMap, rhs: HeaderMap,\n) -> HeaderMap { let mut last_header_name_seen = None; for (header_name, header_value) in rhs.into_iter() { // For each yielded item that has None provided for the `HeaderName`, // then the associated header name is the same as that of the previously // yielded item. The first yielded item will have `HeaderName` set. // https://docs.rs/http/latest/http/header/struct.HeaderMap.html#method.into_iter-2 match (&mut last_header_name_seen, header_name) { (_, Some(header_name)) => { lhs.append(header_name.clone(), header_value); last_header_name_seen = Some(header_name); } (Some(header_name), None) => { lhs.append(header_name.clone(), header_value); } (None, None) => unreachable!(), }; } lhs\n} impl http_body::Body for SdkBody { // The other methods have been omitted because they haven't changed fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let header_map = self .callbacks .iter() .filter_map(|callback| { match callback.trailers() { Ok(optional_header_map) => optional_header_map, // early return if a callback encountered an error Err(e) => { return e }, } }) // Merge any `HeaderMap`s from the last step together, one by one. .reduce(append_merge_header_maps); Poll::Ready(Ok(header_map)) }\n}","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » The Implementation","id":"199","title":"The Implementation"},"2":{"body":"The Rust SDK is \"modular\" meaning that each AWS service is its own crate. Each crate provides two layers to access the service: The \"fluent\" API. For most use cases, a high level API that ties together connection management and serialization will be the quickest path to success. #[tokio::main]\nasync fn main() { let client = dynamodb::Client::from_env(); let tables = client .list_tables() .limit(10) .send() .await.expect(\"failed to load tables\");\n} The \"low-level\" API: It is also possible for customers to assemble the pieces themselves. This offers more control over operation construction & dispatch semantics: #[tokio::main]\nasync fn main() { let conf = dynamodb::Config::builder().build(); let conn = aws_hyper::Client::https(); let operation = dynamodb::ListTables::builder() .limit(10) .build(&conf) .expect(\"invalid operation\"); let tables = conn.call(operation).await.expect(\"failed to list tables\");\n} The Fluent API is implemented as a thin wrapper around the core API to improve ergonomics.","breadcrumbs":"Design Overview » External API Overview","id":"2","title":"External API Overview"},"20":{"body":"A customer interacts with the SDK builders to construct an input. The build() method on an input returns an Operation. This codifies the base HTTP request & all the configuration and middleware layers required to modify and dispatch the request. pub struct Operation { request: Request, response_handler: H, _retry_policy: R,\n} pub struct Request { inner: http::Request, properties: PropertyBag,\n} For most requests, .build() will NOT consume the input. A user can call .build() multiple times to produce multiple operations from the same input. By using a property bag, we can define the Operation in Smithy core. AWS specific configuration can be added later in the stack.","breadcrumbs":"Transport » HTTP Operations » Input Construction","id":"20","title":"Input Construction"},"200":{"body":"What follows is a simplified example of how this API could be used to introduce checksum validation for outgoing request payloads. In this example, the checksum calculation is fallible and no validation takes place. All it does it calculate the checksum of some data and then returns the checksum of that data when trailers is called. This is fine because it's being used to calculate the checksum of a streaming body for a request. #[derive(Default)]\nstruct Crc32cChecksumCallback { state: Option,\n} impl ReadCallback for Crc32cChecksumCallback { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => { self.state = Some(crc32c_append(crc, bytes)) } None => { Some(crc32c(&bytes)) } }; Ok(()) } fn trailers(&self) -> Result>, Box> { let mut header_map = HeaderMap::new(); // This checksum name is an Amazon standard and would be a `const` in the real implementation let key = HeaderName::from_static(\"x-amz-checksum-crc32c\"); // If no data was provided to this callback and no CRC was ever calculated, we return zero as the checksum. let crc = self.state.unwrap_or_default(); // Convert the CRC to a string, base 64 encode it, and then convert it into a `HeaderValue`. let value = HeaderValue::from_str(&base64::encode(crc.to_string())).expect(\"base64 will always produce valid header values\"); header_map.insert(key, value); Some(header_map) } fn make_new(&self) -> Box { Box::new(Crc32cChecksumCallback::default()) }\n} NOTE: If Crc32cChecksumCallback needed to validate a response, then we could modify it to check its internal state against a target checksum value and calling trailers would produce an error if the values didn't match. In order to use this in a request, we'd modify codegen for that request's service. We'd check if the user had requested validation and also check if they'd pre-calculated a checksum. If validation was requested but no pre-calculated checksum was given, we'd create a callback similar to the one above Then, we'd create a new checksum callback and: (if streaming) we'd set the checksum callback on the request body object (if non-streaming) we'd immediately read the body and call BodyCallback::update manually. Once all data was read, we'd get the checksum by calling trailers and insert that data as a request header.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » Implementing Checksums","id":"200","title":"Implementing Checksums"},"201":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. While it is currently possible for users to implement request timeouts by racing operation send futures against timeout futures, this RFC proposes a more ergonomic solution that would also enable users to set timeouts for things like TLS negotiation and \"time to first byte\".","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » RFC: Fine-grained timeout configuration","id":"201","title":"RFC: Fine-grained timeout configuration"},"202":{"body":"There's a lot of terminology to define, so I've broken it up into three sections.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Terminology","id":"202","title":"Terminology"},"203":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. In this case, \"service\" refers to an AWS offering like S3.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » General terms","id":"203","title":"General terms"},"204":{"body":"Service : A trait defined in the tower-service crate . The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Layer : Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code. Middleware : a term with several meanings, Generically speaking, middleware are similar to Services and Layers in that they modify requests and responses. In the SDK, \"Middleware\" refers to a layer that can be wrapped around a DispatchService. In practice, this means that the resulting Service (and the inner service) must meet the bound T: where T: Service. Note: This doesn't apply to the middlewares we use when generating presigned request because those don't wrap a DispatchService. The most notable example of a Middleware is the AwsMiddleware . Other notable examples include MapRequest , AsyncMapRequest , and ParseResponse . DispatchService : The innermost part of a group of nested services. The Service that actually makes an HTTP call on behalf of a request. Responsible for parsing success and error responses. Connector : a term with several meanings, DynConnectors (a struct that implements DynConnect ) are Services with their specific type erased so that we can do dynamic dispatch. A term from hyper for any object that implements the Connect trait. Really just an alias for tower_service::Service . Sometimes referred to as a Connection. Stage : A form of middleware that's not related to tower. These currently function as a way of transforming requests and don't have the ability to transform responses. Stack : higher order abstraction over Layers defined in the tower crate e.g. Layers wrap services in one another and Stacks wrap layers within one another.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » HTTP stack terms","id":"204","title":"HTTP stack terms"},"205":{"body":"Connect Timeout : A limit on the amount of time after making an initial connect attempt on a socket to complete the connect-handshake. TODO: the runtime is based on Hyper which reuses connection and doesn't currently have a way of guaranteeing that a fresh connection will be use for a given request. TLS Negotiation Timeout : A limit on the amount of time a TLS handshake takes from when the CLIENT HELLO message is sent to the time the client and server have fully negotiated ciphers and exchanged keys. Time to First Byte Timeout : Sometimes referred to as a \"read timeout.\" A limit on the amount of time an application takes to attempt to read the first byte over an established, open connection after write request. HTTP Request Timeout For A Single Attempt : A limit on the amount of time it takes for the first byte to be sent over an established, open connection and when the last byte is received from the service. HTTP Request Timeout For Multiple Attempts : This timeout acts like the previous timeout but constrains the total time it takes to make a request plus any retries. NOTE: In a way, this is already possible in that users are free to race requests against timer futures with the futures::future::select macro or to use tokio::time::timeout . See relevant discussion in hyper#1097","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Timeout terms","id":"205","title":"Timeout terms"},"206":{"body":"Just like with Retry Behavior Configuration , these settings can be configured in several places and have the same precedence rules (paraphrased here for clarity) . Service-specific config builders Shared config builders Environment variables Profile config file (e.g., ~/.aws/credentials) The above list is in order of decreasing precedence e.g. configuration set in an app will override values from environment variables.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuring timeouts","id":"206","title":"Configuring timeouts"},"207":{"body":"The table below details the specific ways each timeout can be configured. In all cases, valid values are non-negative floats representing the number of seconds before a timeout is triggered. Timeout Environment Variable AWS Config Variable Builder Method Connect AWS_CONNECT_TIMEOUT connect_timeout connect_timeout TLS Negotiation AWS_TLS_NEGOTIATION_TIMEOUT tls_negotiation_timeout tls_negotiation_timeout Time To First Byte AWS_READ_TIMEOUT read_timeout read_timeout HTTP Request - single attempt AWS_API_CALL_ATTEMPT_TIMEOUT api_call_attempt_timeout api_call_attempt_timeout HTTP Request - all attempts AWS_API_CALL_TIMEOUT api_call_timeout api_call_timeout","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuration options","id":"207","title":"Configuration options"},"208":{"body":"QUESTION: How does the SDK currently handle these defaults?","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » SDK-specific defaults set by AWS service teams","id":"208","title":"SDK-specific defaults set by AWS service teams"},"209":{"body":"hjr3/hyper-timeout is a Connector for hyper that enables setting connect, read, and write timeouts sfackler/tokio-io-timeout provides timeouts for tokio IO operations. Used within hyper-timeout. [tokio::time::sleep_until] creates a Future that completes after some time has elapsed. Used within tokio-io-timeout.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Prior Art","id":"209","title":"Prior Art"},"21":{"body":"In order to construct an operation, the generated code injects appropriate middleware & configuration via the configuration property bag. It does this by reading the configuration properties out of the service config, copying them as necessary, and loading them into the Request: // This is approximately the generated code, I've cleaned a few things up for readability.\npub fn build(self, config: &dynamodb::config::Config) -> Operation { let op = BatchExecuteStatement::new(BatchExecuteStatementInput { statements: self.statements, }); let req = op.build_http_request().map(SdkBody::from); let mut req = operation::Request::new(req); let mut props = req.properties_mut(); props.insert_signing_config(config.signing_service()); props.insert_endpoint_resolver(config.endpoint_resolver.clone()); Operation::new(req)\n}","breadcrumbs":"Transport » HTTP Operations » Operation Construction","id":"21","title":"Operation Construction"},"210":{"body":"Timeouts are achieved by racing a future against a tokio::time::Sleep future. The question, then, is \"how can I create a future that represents a condition I want to watch for?\". For example, in the case of a ConnectTimeout, how do we watch an ongoing request to see if it's completed the connect-handshake? Our current stack of Middleware acts on requests at different levels of granularity. The timeout Middlewares will be no different.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Behind the scenes","id":"210","title":"Behind the scenes"},"211":{"body":"View AwsMiddleware in GitHub #[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsMiddleware;\nimpl tower::Layer for AwsMiddleware { type Service = >::Service; fn layer(&self, inner: S) -> Self::Service { let credential_provider = AsyncMapRequestLayer::for_mapper(CredentialsStage::new()); let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); let endpoint_resolver = MapRequestLayer::for_mapper(AwsAuthStage); let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); ServiceBuilder::new() .layer(endpoint_resolver) .layer(user_agent) .layer(credential_provider) .layer(signer) .service(inner) }\n} The above code is only included for context. This RFC doesn't define any timeouts specific to AWS so AwsMiddleware won't require any changes.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for AWS Client requests","id":"211","title":"Middlewares for AWS Client requests"},"212":{"body":"View aws_smithy_client::Client::call_raw in GitHub impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let mut svc = ServiceBuilder::new() // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} The Smithy Client creates a new Stack of services to handle each request it sends. Specifically: A method retry is used set the retry handler. The configuration for this was set during creation of the Client. ParseResponseLayer inserts a service for transforming responses into operation-specific outputs or errors. The O generic parameter of input is what decides exactly how the transformation is implemented. A middleware stack that was included during Client creation is inserted into the stack. In the case of the AWS SDK, this would be AwsMiddleware. DispatchLayer inserts a service for transforming an http::Request into an operation::Request. It's also responsible for re-attaching the property bag from the Operation that triggered the request. The innermost Service is a DynConnector wrapping a hyper client (which one depends on the TLS implementation was enabled by cargo features.) The HTTP Request Timeout For A Single Attempt and HTTP Request Timeout For Multiple Attempts can be implemented at this level. The same Layer can be used to create both TimeoutServices. The TimeoutLayer would require two inputs: sleep_fn: A runtime-specific implementation of sleep. The SDK is currently tokio-based and would default to tokio::time::sleep (this default is set in the aws_smithy_async::rt::sleep module.) The duration of the timeout as a std::time::Duration The resulting code would look like this: impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let sleep_fn = aws_smithy_async::rt::sleep::default_async_sleep(); let mut svc = ServiceBuilder::new() .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_timeout(), )) // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_attempt_timeout(), )) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} Note: Our HTTP client supports multiple TLS implementations. We'll likely have to implement this feature once per library. Timeouts will be implemented in the following places: HTTP request timeout for multiple requests will be implemented as the outermost Layer in Client::call_raw. HTTP request timeout for a single request will be implemented within RetryHandler::retry. Time to first byte, TLS negotiation, and connect timeouts will be implemented within the central hyper connector.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for Smithy Client requests","id":"212","title":"Middlewares for Smithy Client requests"},"213":{"body":"Changes are broken into to sections: HTTP requests (single or multiple) are implementable as layers within our current stack Other timeouts will require changes to our dependencies and may be slower to implement","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Changes checklist","id":"213","title":"Changes checklist"},"214":{"body":"Add TimeoutConfig to smithy-types Add TimeoutConfigProvider to aws-config Add provider that fetches config from environment variables Add provider that fetches config from profile Add timeout method to aws_types::Config for setting timeout configuration Add timeout method to generated Configs too Create a generic TimeoutService and accompanying Layer TimeoutLayer should accept a sleep function so that it doesn't have a hard dependency on tokio insert a TimeoutLayer before the RetryPolicy to handle timeouts for multiple-attempt requests insert a TimeoutLayer after the RetryPolicy to handle timeouts for single-attempt requests Add tests for timeout behavior test multi-request timeout triggers after 3 slow retries test single-request timeout triggers correctly test single-request timeout doesn't trigger if request completes in time","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Implementing HTTP request timeouts","id":"214","title":"Implementing HTTP request timeouts"},"215":{"body":"Status: Accepted","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » RFC: How Cargo \"features\" should be used in the SDK and runtime crates","id":"215","title":"RFC: How Cargo \"features\" should be used in the SDK and runtime crates"},"216":{"body":"What is a feature? Here's a definition from the Cargo Book section on features : Cargo \"features\" provide a mechanism to express conditional compilation and optional dependencies. A package defines a set of named features in the [features] table of Cargo.toml, and each feature can either be enabled or disabled. Features for the package being built can be enabled on the command-line with flags such as --features. Features for dependencies can be enabled in the dependency declaration in Cargo.toml. We use features in a majority of our runtime crates and in all of our SDK crates. For example, aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Some background on features","id":"216","title":"Some background on features"},"217":{"body":"The Cargo book has this to say: When a dependency is used by multiple packages, Cargo will use the union of all features enabled on that dependency when building it. This helps ensure that only a single copy of the dependency is used. A consequence of this is that features should be additive . That is, enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change .","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Features should be additive","id":"217","title":"Features should be additive"},"218":{"body":"Despite the constraints outlined above, we should use features in the SDKs because of the benefits they bring: Features enable users to avoid compiling code that they won't be using. Additionally, features allow both general and specific control of compiled code, serving the needs of both novice and expert users. A single feature in a crate can activate or deactivate multiple features exposed by that crate's dependencies, freeing the user from having to specifically activate or deactivate them. Features can help users understand what a crate is capable of in the same way that looking at a graph of a crate's modules can. When using features, we should adhere to the guidelines outlined below.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » What does this mean for the SDK?","id":"218","title":"What does this mean for the SDK?"},"219":{"body":"As noted earlier in an excerpt from the Cargo book: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change . #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn tls_adapter(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn tls_adapter( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} When the example code above is compiled with both features enabled, compilation will fail with a \"duplicate definitions with name tls_adapter\" error. Also, note that the return type of the function differs between the two versions. This is a SemVer-incompatible change. Here's an updated version of the example that fixes these issues: #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn rustls(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn native_tls( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} Both features can now be enabled at once without creating a conflict. Since both methods have different names, it's now Ok for them to have different return types. This is real code, see it in context","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Avoid writing code that relies on only activating one feature from a set of mutually exclusive features.","id":"219","title":"Avoid writing code that relies on only activating one feature from a set of mutually exclusive features."},"22":{"body":"The Rust SDK endeavors to behave as predictably as possible. This means that if at all possible we will not dispatch extra HTTP requests during the dispatch of normal operation. Making this work is covered in more detail in the design of credentials providers & endpoint resolution. The upshot is that we will always prefer a design where the user has explicit control of when credentials are loaded and endpoints are resolved. This doesn't mean that users can't use easy-to-use options (We will provide an automatically refreshing credentials provider), however, the credential provider won't load requests during the dispatch of an individual request.","breadcrumbs":"Transport » HTTP Operations » Operation Dispatch and Middleware","id":"22","title":"Operation Dispatch and Middleware"},"220":{"body":"At the risk of seeming repetitive, the Cargo book says: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features Conditionally compiling code when a feature is not activated can make it hard for users and maintainers to reason about what will happen when they activate a feature. This is also a sign that a feature may not be \"additive\". NOTE : It's ok to use #[cfg(not())] to conditionally compile code based on a user's OS. It's also useful when controlling what code gets rendered when testing or when generating docs. One case where using not is acceptable is when providing a fallback when no features are set: #[cfg(feature = \"rt-tokio\")]\npub fn default_async_sleep() -> Option> { Some(sleep_tokio())\n} #[cfg(not(feature = \"rt-tokio\"))]\npub fn default_async_sleep() -> Option> { None\n}","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » We should avoid using #[cfg(not(feature = \"some-feature\"))]","id":"220","title":"We should avoid using #[cfg(not(feature = \"some-feature\"))]"},"221":{"body":"Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users. When a default feature providing some functionality is disabled, active features must not automatically replace that functionality As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example . This RFC proposes that we should have a single default for any configurable functionality and that that functionality depends on a corresponding default feature being active. If default-features are disabled, then so is the corresponding default functionality. In its place would be functionality that fails fast with a message describing why it failed (a default was deactivated but the user didn't set a replacement) , and what the user should do to fix it (with links to documentation and examples where necessary) . We should use compile-time errors to communicate failures with users, or panics for cases that can't be evaluated at compile-time. For an example: Say you have a crate with features a, b, c that all provide some version of functionality foo. Feature a is part of default-features. When no-default-features = true but features b and c are active, don't automatically fall back to b or c. Instead, emit an error with a message like this: \"When default features are disabled, you must manually set foo. Features b and c active; You can use one of those. See an example of setting a custom foo here: link-to-docs.amazon.com/setting-foo \"","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Don't default to defining \"default features\"","id":"221","title":"Don't default to defining \"default features\""},"222":{"body":"How to tell what \"features\" are available per crate? How do I 'pass down' feature flags to subdependencies in Cargo? A small selection of feature-related GitHub issues submitted for popular crates The feature preserve_order is not \"purely additive,\" which makes it impossible to use serde_yaml 0.5.0 and clap in the same program cargo features (verbose-errors may be other?) should be additive Mutually exclusive features are present in profiling-procmacros Clang-sys features not additive","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Further reading","id":"222","title":"Further reading"},"223":{"body":"Status: Implemented We can't currently update the S3 SDK because we don't support the new \"Flexible Checksums\" feature. This RFC describes this new feature and details how we should implement it in smithy-rs.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » RFC: Supporting Flexible Checksums","id":"223","title":"RFC: Supporting Flexible Checksums"},"224":{"body":"S3 has previously supported MD5 checksum validation of data. Now, it supports more checksum algorithms like CRC32, CRC32C, SHA-1, and SHA-256. This validation is available when putting objects to S3 and when getting them from S3. For more information, see this AWS News Blog post .","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » What is the \"Flexible Checksums\" feature?","id":"224","title":"What is the \"Flexible Checksums\" feature?"},"225":{"body":"Checksum callbacks were introduced as a result of the acceptance of RFC0013 and this RFC proposes a refactor to those callbacks, as well as several new wrappers for SdkBody that will provide new functionality.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementing Checksums","id":"225","title":"Implementing Checksums"},"226":{"body":"TLDR; This refactor of aws-smithy-checksums: Removes the \"callback\" terminology: As a word, \"callback\" doesn't carry any useful information, and doesn't aid in understanding. Removes support for the BodyCallback API: Instead of adding checksum callbacks to a body, we're going to use a \"body wrapping\" instead. \"Body wrapping\" is demonstrated in the ChecksumBody , AwsChunkedBody , and ChecksumValidatedBody sections. NOTE: This doesn't remove the BodyCallback trait. That will still exist, we just won't use it. Updates terminology to focus on \"headers\" instead of \"trailers\": Because the types we deal with in this module are named for HTTP headers, I chose to use that terminology instead. My hope is that this will be less strange to people reading this code. Adds fn checksum_algorithm_to_checksum_header_name: a function that's used in generated code to set a checksum request header. Adds fn checksum_header_name_to_checksum_algorithm: a function that's used in generated code when creating a checksum-validating response body. Add new checksum-related \"body wrapping\" HTTP body types : These are defined in the body module and will be shown later in this RFC. // In aws-smithy-checksums/src/lib.rs\n//! Checksum calculation and verification callbacks use aws_smithy_types::base64; use bytes::Bytes;\nuse http::header::{HeaderMap, HeaderName, HeaderValue};\nuse sha1::Digest;\nuse std::io::Write; pub mod body; // Valid checksum algorithm names\npub const CRC_32_NAME: &str = \"crc32\";\npub const CRC_32_C_NAME: &str = \"crc32c\";\npub const SHA_1_NAME: &str = \"sha1\";\npub const SHA_256_NAME: &str = \"sha256\"; pub const CRC_32_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32\");\npub const CRC_32_C_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32c\");\npub const SHA_1_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha1\");\npub const SHA_256_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha256\"); // Preserved for compatibility purposes. This should never be used by users, only within smithy-rs\nconst MD5_NAME: &str = \"md5\";\nconst MD5_HEADER_NAME: HeaderName = HeaderName::from_static(\"content-md5\"); /// Given a `&str` representing a checksum algorithm, return the corresponding `HeaderName`\n/// for that checksum algorithm.\npub fn checksum_algorithm_to_checksum_header_name(checksum_algorithm: &str) -> HeaderName { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { CRC_32_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { CRC_32_C_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { SHA_1_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { SHA_256_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { MD5_HEADER_NAME } else { // TODO what's the best way to handle this case? HeaderName::from_static(\"x-amz-checksum-unknown\") }\n} /// Given a `HeaderName` representing a checksum algorithm, return the name of that algorithm\n/// as a `&'static str`.\npub fn checksum_header_name_to_checksum_algorithm( checksum_header_name: &HeaderName,\n) -> &'static str { if checksum_header_name == CRC_32_HEADER_NAME { CRC_32_NAME } else if checksum_header_name == CRC_32_C_HEADER_NAME { CRC_32_C_NAME } else if checksum_header_name == SHA_1_HEADER_NAME { SHA_1_NAME } else if checksum_header_name == SHA_256_HEADER_NAME { SHA_256_NAME } else if checksum_header_name == MD5_HEADER_NAME { MD5_NAME } else { // TODO what's the best way to handle this case? \"unknown-checksum-algorithm\" }\n} /// When a response has to be checksum-verified, we have to check possible headers until we find the\n/// header with the precalculated checksum. Because a service may send back multiple headers, we have\n/// to check them in order based on how fast each checksum is to calculate.\npub const CHECKSUM_HEADERS_IN_PRIORITY_ORDER: [HeaderName; 4] = [ CRC_32_C_HEADER_NAME, CRC_32_HEADER_NAME, SHA_1_HEADER_NAME, SHA_256_HEADER_NAME,\n]; type BoxError = Box; /// Checksum algorithms are use to validate the integrity of data. Structs that implement this trait\n/// can be used as checksum calculators. This trait requires Send + Sync because these checksums are\n/// often used in a threaded context.\npub trait Checksum: Send + Sync { /// Given a slice of bytes, update this checksum's internal state. fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError>; /// Either return this checksum as a `HeaderMap` containing one HTTP header, or return an error /// describing why checksum calculation failed. fn headers(&self) -> Result>, BoxError>; /// Return the `HeaderName` used to represent this checksum algorithm fn header_name(&self) -> HeaderName; /// \"Finalize\" this checksum, returning the calculated value as `Bytes` or an error that /// occurred during checksum calculation. To print this value in a human-readable hexadecimal /// format, you can print it using Rust's builtin [formatter]. /// /// _**NOTE:** typically, \"finalizing\" a checksum in Rust will take ownership of the checksum /// struct. In this method, we clone the checksum's state before finalizing because checksums /// may be used in a situation where taking ownership is not possible._ /// /// [formatter]: https://doc.rust-lang.org/std/fmt/trait.UpperHex.html fn finalize(&self) -> Result; /// Return the size of this checksum algorithms resulting checksum, in bytes. For example, the /// CRC32 checksum algorithm calculates a 32 bit checksum, so a CRC32 checksum struct /// implementing this trait method would return 4. fn size(&self) -> u64;\n} /// Create a new `Box` from an algorithm name. Valid algorithm names are defined as\n/// `const`s in this module.\npub fn new_checksum(checksum_algorithm: &str) -> Box { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { Box::new(Crc32::default()) } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { Box::new(Crc32c::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { Box::new(Sha1::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { Box::new(Sha256::default()) } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { // It's possible to create an MD5 and we do this in some situations for compatibility. // We deliberately hide this from users so that they don't go using it. Box::new(Md5::default()) } else { panic!(\"unsupported checksum algorithm '{}'\", checksum_algorithm) }\n} #[derive(Debug, Default)]\nstruct Crc32 { hasher: crc32fast::Hasher,\n} impl Crc32 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.update(bytes); Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.hasher.clone().finalize().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32 checksum\") }\n} impl Checksum for Crc32 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Crc32c { state: Option,\n} impl Crc32c { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => Some(crc32c::crc32c_append(crc, bytes)), None => Some(crc32c::crc32c(bytes)), }; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.state.unwrap_or_default().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_C_HEADER_NAME } fn header_value(&self) -> HeaderValue { // If no data was provided to this callback and no CRC was ever calculated, return zero as the checksum. let hash = self.state.unwrap_or_default(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32C checksum\") }\n} impl Checksum for Crc32c { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha1 { hasher: sha1::Sha1,\n} impl Sha1 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 20 } fn header_name() -> HeaderName { SHA_1_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-1 checksum\") }\n} impl Checksum for Sha1 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha256 { hasher: sha2::Sha256,\n} impl Sha256 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 32 } fn header_name() -> HeaderName { SHA_256_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-256 checksum\") }\n} impl Checksum for Sha256 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Md5 { hasher: md5::Md5,\n} impl Md5 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 16 } fn header_name() -> HeaderName { MD5_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from an MD5 checksum\") }\n} impl Checksum for Md5 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} // We have existing tests for the checksums, those don't require an update","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Refactoring aws-smithy-checksums","id":"226","title":"Refactoring aws-smithy-checksums"},"227":{"body":"When creating a checksum-validated request with an in-memory request body, we can read the body, calculate a checksum, and insert the checksum header, all before sending the request. When creating a checksum-validated request with a streaming request body, we don't have that luxury. Instead, we must calculate a checksum while sending the body, and append that checksum as a trailer . We will accomplish this by wrapping the SdkBody that requires validation within a ChecksumBody. Afterwards, we'll need to wrap the ChecksumBody in yet another layer which we'll discuss in the AwsChunkedBody and AwsChunkedBodyOptions section. // In aws-smithy-checksums/src/body.rs\nuse crate::{new_checksum, Checksum}; use aws_smithy_http::body::SdkBody;\nuse aws_smithy_http::header::append_merge_header_maps;\nuse aws_smithy_types::base64; use bytes::{Buf, Bytes};\nuse http::header::HeaderName;\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::fmt::Display;\nuse std::pin::Pin;\nuse std::task::{Context, Poll}; /// A `ChecksumBody` will read and calculate a request body as it's being sent. Once the body has\n/// been completely read, it'll append a trailer with the calculated checksum.\n#[pin_project]\npub struct ChecksumBody { #[pin] inner: InnerBody, #[pin] checksum: Box,\n} impl ChecksumBody { /// Given an `SdkBody` and the name of a checksum algorithm as a `&str`, create a new /// `ChecksumBody`. Valid checksum algorithm names are defined in this crate's /// [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, } } /// Return the name of the trailer that will be emitted by this `ChecksumBody` pub fn trailer_name(&self) -> HeaderName { self.checksum.header_name() } /// Calculate and return the sum of the: /// - checksum when base64 encoded /// - trailer name /// - trailer separator /// /// This is necessary for calculating the true size of the request body for certain /// content-encodings. pub fn trailer_length(&self) -> u64 { let trailer_name_size_in_bytes = self.checksum.header_name().as_str().len() as u64; let base64_encoded_checksum_size_in_bytes = base64::encoded_length(self.checksum.size()); (trailer_name_size_in_bytes // HTTP trailer names and values may be separated by either a single colon or a single // colon and a whitespace. In the AWS Rust SDK, we use a single colon. + \":\".len() as u64 + base64_encoded_checksum_size_in_bytes) } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => Poll::Ready(None), Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} impl http_body::Body for ChecksumBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let this = self.project(); match ( this.checksum.headers(), http_body::Body::poll_trailers(this.inner, cx), ) { // If everything is ready, return trailers, merging them if we have more than one map (Ok(outer_trailers), Poll::Ready(Ok(inner_trailers))) => { let trailers = match (outer_trailers, inner_trailers) { // Values from the inner trailer map take precedent over values from the outer map (Some(outer), Some(inner)) => Some(append_merge_header_maps(inner, outer)), // If only one or neither produced trailers, just combine the `Option`s with `or` (outer, inner) => outer.or(inner), }; Poll::Ready(Ok(trailers)) } // If the inner poll is Ok but the outer body's checksum callback encountered an error, // return the error (Err(e), Poll::Ready(Ok(_))) => Poll::Ready(Err(e)), // Otherwise return the result of the inner poll. // It may be pending or it may be ready with an error. (_, inner_poll) => inner_poll, } } fn is_end_stream(&self) -> bool { self.inner.is_end_stream() } fn size_hint(&self) -> SizeHint { let body_size_hint = self.inner.size_hint(); match body_size_hint.exact() { Some(size) => { let checksum_size_hint = self.checksum.size(); SizeHint::with_exact(size + checksum_size_hint) } // TODO is this the right behavior? None => { let checksum_size_hint = self.checksum.size(); let mut summed_size_hint = SizeHint::new(); summed_size_hint.set_lower(body_size_hint.lower() + checksum_size_hint); if let Some(body_size_hint_upper) = body_size_hint.upper() { summed_size_hint.set_upper(body_size_hint_upper + checksum_size_hint); } summed_size_hint } } }\n} // The tests I have written are omitted from this RFC for brevity. The request body checksum calculation and trailer size calculations are all tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumBody","id":"227","title":"ChecksumBody"},"228":{"body":"Users may request checksum validation for response bodies. That capability is provided by ChecksumValidatedBody, which will calculate a checksum as the response body is being read. Once all data has been read, the calculated checksum is compared to a precalculated checksum set during body creation. If the checksums don't match, then the body will emit an error. // In aws-smithy-checksums/src/body.rs\n/// A response body that will calculate a checksum as it is read. If all data is read and the\n/// calculated checksum doesn't match a precalculated checksum, this body will emit an\n/// [asw_smithy_http::body::Error].\n#[pin_project]\npub struct ChecksumValidatedBody { #[pin] inner: InnerBody, #[pin] checksum: Box, precalculated_checksum: Bytes,\n} impl ChecksumValidatedBody { /// Given an `SdkBody`, the name of a checksum algorithm as a `&str`, and a precalculated /// checksum represented as `Bytes`, create a new `ChecksumValidatedBody`. /// Valid checksum algorithm names are defined in this crate's [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str, precalculated_checksum: Bytes) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, precalculated_checksum, } } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } // Once the inner body has stopped returning data, check the checksum // and return an error if it doesn't match. Poll::Ready(None) => { let actual_checksum = { match checksum.finalize() { Ok(checksum) => checksum, Err(err) => { return Poll::Ready(Some(Err(err))); } } }; if *this.precalculated_checksum == actual_checksum { Poll::Ready(None) } else { // So many parens it's starting to look like LISP Poll::Ready(Some(Err(Box::new(Error::checksum_mismatch( this.precalculated_checksum.clone(), actual_checksum, ))))) } } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} /// Errors related to checksum calculation and validation\n#[derive(Debug, Eq, PartialEq)]\n#[non_exhaustive]\npub enum Error { /// The actual checksum didn't match the expected checksum. The checksummed data has been /// altered since the expected checksum was calculated. ChecksumMismatch { expected: Bytes, actual: Bytes },\n} impl Error { /// Given an expected checksum and an actual checksum in `Bytes` form, create a new /// `Error::ChecksumMismatch`. pub fn checksum_mismatch(expected: Bytes, actual: Bytes) -> Self { Self::ChecksumMismatch { expected, actual } }\n} impl Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { match self { Error::ChecksumMismatch { expected, actual } => write!( f, \"body checksum mismatch. expected body checksum to be {:x} but it was {:x}\", expected, actual ), } }\n} impl std::error::Error for Error {} impl http_body::Body for ChecksumValidatedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { self.project().inner.poll_trailers(cx) } // Once the inner body returns true for is_end_stream, we still need to // verify the checksum; Therefore, we always return false here. fn is_end_stream(&self) -> bool { false } fn size_hint(&self) -> SizeHint { self.inner.size_hint() }\n} // The tests I have written are omitted from this RFC for brevity. The response body checksum verification is tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumValidatedBody","id":"228","title":"ChecksumValidatedBody"},"229":{"body":"In order to send a request with checksum trailers, we must use an AWS-specific content encoding called aws-chunked. This encoding requires that we: Divide the original body content into one or more chunks. For our purposes we only ever use one chunk. Append a hexadecimal chunk size header to each chunk. Suffix each chunk with a CRLF (carriage return line feed) . Send a 0 and CRLF to close the original body content section. Send trailers as part of the request body, suffixing each with a CRLF. Send a final CRLF to close the request body. As an example, Sending a regular request body with a SHA-256 checksum would look similar to this: PUT SOMEURL HTTP/1.1\nx-amz-checksum-sha256: ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\nContent-Length: 11\n... Hello world and the aws-chunked version would look like this: PUT SOMEURL HTTP/1.1\nx-amz-trailer: x-amz-checksum-sha256\nx-amz-decoded-content-length: 11\nContent-Encoding: aws-chunked\nContent-Length: 87\n... B\\r\\n\nHello world\\r\\n\n0\\r\\n\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\n\\r\\n NOTES: In the second example, B is the hexadecimal representation of 11. Authorization and other headers are omitted from the examples above for brevity. When using aws-chunked content encoding, S3 requires that we send the x-amz-decoded-content-length with the length of the original body content. This encoding scheme is performed by AwsChunkedBody and configured with AwsChunkedBodyOptions. // In aws-http/src/content_encoding.rs\nuse aws_smithy_checksums::body::ChecksumBody;\nuse aws_smithy_http::body::SdkBody; use bytes::{Buf, Bytes, BytesMut};\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::pin::Pin;\nuse std::task::{Context, Poll}; const CRLF: &str = \"\\r\\n\";\nconst CHUNK_TERMINATOR: &str = \"0\\r\\n\"; /// Content encoding header value constants\npub mod header_value { /// Header value denoting \"aws-chunked\" encoding pub const AWS_CHUNKED: &str = \"aws-chunked\";\n} /// Options used when constructing an [`AwsChunkedBody`][AwsChunkedBody].\n#[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsChunkedBodyOptions { /// The total size of the stream. For unsigned encoding this implies that /// there will only be a single chunk containing the underlying payload, /// unless ChunkLength is also specified. pub stream_length: Option, /// The maximum size of each chunk to be sent. /// /// If ChunkLength and stream_length are both specified, the stream will be /// broken up into chunk_length chunks. The encoded length of the aws-chunked /// encoding can still be determined as long as all trailers, if any, have a /// fixed length. pub chunk_length: Option, /// The length of each trailer sent within an `AwsChunkedBody`. Necessary in /// order to correctly calculate the total size of the body accurately. pub trailer_lens: Vec,\n} impl AwsChunkedBodyOptions { /// Create a new [`AwsChunkedBodyOptions`][AwsChunkedBodyOptions] pub fn new() -> Self { Self::default() } /// Set stream length pub fn with_stream_length(mut self, stream_length: u64) -> Self { self.stream_length = Some(stream_length); self } /// Set chunk length pub fn with_chunk_length(mut self, chunk_length: u64) -> Self { self.chunk_length = Some(chunk_length); self } /// Set a trailer len pub fn with_trailer_len(mut self, trailer_len: u64) -> Self { self.trailer_lens.push(trailer_len); self }\n} #[derive(Debug, PartialEq, Eq)]\nenum AwsChunkedBodyState { WritingChunkSize, WritingChunk, WritingTrailers, Closed,\n} /// A request body compatible with `Content-Encoding: aws-chunked`\n///\n/// Chunked-Body grammar is defined in [ABNF] as:\n///\n/// ```txt\n/// Chunked-Body = *chunk\n/// last-chunk\n/// chunked-trailer\n/// CRLF\n///\n/// chunk = chunk-size CRLF chunk-data CRLF\n/// chunk-size = 1*HEXDIG\n/// last-chunk = 1*(\"0\") CRLF\n/// chunked-trailer = *( entity-header CRLF )\n/// entity-header = field-name \":\" OWS field-value OWS\n/// ```\n/// For more info on what the abbreviations mean, see https://datatracker.ietf.org/doc/html/rfc7230#section-1.2\n///\n/// [ABNF]:https://en.wikipedia.org/wiki/Augmented_Backus%E2%80%93Naur_form\n#[derive(Debug)]\n#[pin_project]\npub struct AwsChunkedBody { #[pin] inner: InnerBody, #[pin] state: AwsChunkedBodyState, options: AwsChunkedBodyOptions,\n} // Currently, we only use this in terms of a streaming request body with checksum trailers\ntype Inner = ChecksumBody; impl AwsChunkedBody { /// Wrap the given body in an outer body compatible with `Content-Encoding: aws-chunked` pub fn new(body: Inner, options: AwsChunkedBodyOptions) -> Self { Self { inner: body, state: AwsChunkedBodyState::WritingChunkSize, options, } } fn encoded_length(&self) -> Option { if self.options.chunk_length.is_none() && self.options.stream_length.is_none() { return None; } let mut length = 0; let stream_length = self.options.stream_length.unwrap_or_default(); if stream_length != 0 { if let Some(chunk_length) = self.options.chunk_length { let num_chunks = stream_length / chunk_length; length += num_chunks * get_unsigned_chunk_bytes_length(chunk_length); let remainder = stream_length % chunk_length; if remainder != 0 { length += get_unsigned_chunk_bytes_length(remainder); } } else { length += get_unsigned_chunk_bytes_length(stream_length); } } // End chunk length += CHUNK_TERMINATOR.len() as u64; // Trailers for len in self.options.trailer_lens.iter() { length += len + CRLF.len() as u64; } // Encoding terminator length += CRLF.len() as u64; Some(length) }\n} fn prefix_with_chunk_size(data: Bytes, chunk_size: u64) -> Bytes { // Len is the size of the entire chunk as defined in `AwsChunkedBodyOptions` let mut prefixed_data = BytesMut::from(format!(\"{:X?}\\r\\n\", chunk_size).as_bytes()); prefixed_data.extend_from_slice(&data); prefixed_data.into()\n} fn get_unsigned_chunk_bytes_length(payload_length: u64) -> u64 { let hex_repr_len = int_log16(payload_length); hex_repr_len + CRLF.len() as u64 + payload_length + CRLF.len() as u64\n} fn trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes: u64, trailer_map: Option,\n) -> Bytes { use std::fmt::Write; // On 32-bit operating systems, we might not be able to convert the u64 to a usize, so we just // use `String::new` in that case. let mut trailers = match usize::try_from(total_length_of_trailers_in_bytes) { Ok(total_length_of_trailers_in_bytes) => { String::with_capacity(total_length_of_trailers_in_bytes) } Err(_) => String::new(), }; let mut already_wrote_first_trailer = false; if let Some(trailer_map) = trailer_map { for (header_name, header_value) in trailer_map.into_iter() { match header_name { // New name, new value Some(header_name) => { if already_wrote_first_trailer { // First trailer shouldn't have a preceding CRLF, but every trailer after it should trailers.write_str(CRLF).unwrap(); } else { already_wrote_first_trailer = true; } trailers.write_str(header_name.as_str()).unwrap(); trailers.write_char(':').unwrap(); } // Same name, new value None => { trailers.write_char(',').unwrap(); } } trailers.write_str(header_value.to_str().unwrap()).unwrap(); } } // Write CRLF to end the body trailers.write_str(CRLF).unwrap(); // If we wrote at least one trailer, we need to write an extra CRLF if total_length_of_trailers_in_bytes != 0 { trailers.write_str(CRLF).unwrap(); } trailers.into()\n} impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { tracing::info!(\"polling AwsChunkedBody\"); let mut this = self.project(); match *this.state { AwsChunkedBodyState::WritingChunkSize => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(data))) => { // A chunk must be prefixed by chunk size in hexadecimal tracing::info!(\"writing chunk size and start of chunk\"); *this.state = AwsChunkedBodyState::WritingChunk; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); Poll::Ready(Some(Ok(prefix_with_chunk_size(data, total_chunk_size)))) } Poll::Ready(None) => { tracing::info!(\"chunk was empty, writing last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingChunk => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { tracing::info!(\"writing rest of chunk data\"); Poll::Ready(Some(Ok(data.copy_to_bytes(data.len())))) } Poll::Ready(None) => { tracing::info!(\"no more chunk data, writing CRLF and last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingTrailers => { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.state = AwsChunkedBodyState::Closed; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().fold(0, |acc, n| acc + n); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(Err(e)) => Poll::Ready(Some(Err(e))), }; } AwsChunkedBodyState::Closed => { return Poll::Ready(None); } } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // Trailers were already appended to the body because of the content encoding scheme Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.state == AwsChunkedBodyState::Closed } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n} // Used for finding how many hexadecimal digits it takes to represent a base 10 integer\nfn int_log16(mut i: T) -> u64\nwhere T: std::ops::DivAssign + PartialOrd + From + Copy,\n{ let mut len = 0; let zero = T::from(0); let sixteen = T::from(16); while i > zero { i /= sixteen; len += 1; } len\n} #[cfg(test)]\nmod tests { use super::AwsChunkedBody; use crate::content_encoding::AwsChunkedBodyOptions; use aws_smithy_checksums::body::ChecksumBody; use aws_smithy_http::body::SdkBody; use bytes::Buf; use bytes_utils::SegmentedBuf; use http_body::Body; use std::io::Read; #[tokio::test] async fn test_aws_chunked_encoded_body() { let input_text = \"Hello world\"; let sdk_body = SdkBody::from(input_text); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(input_text.len() as u64), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"B\\r\\nHello world\\r\\n0\\r\\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); } #[tokio::test] async fn test_empty_aws_chunked_encoded_body() { let sdk_body = SdkBody::from(\"\"); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(0), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"0\\r\\nx-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); }\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » AwsChunkedBody and AwsChunkedBodyOptions","id":"229","title":"AwsChunkedBody and AwsChunkedBodyOptions"},"23":{"body":"The fundamental trait for HTTP-based protocols is ParseHttpResponse","breadcrumbs":"Transport » HTTP Operations » Operation Parsing and Response Loading","id":"23","title":"Operation Parsing and Response Loading"},"230":{"body":"When sending checksum-verified requests with a streaming body, we must update the usual signing process. Instead of signing the request based on the request body's checksum, we must sign it with a special header instead: Authorization: \nx-amz-content-sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER Setting STREAMING-UNSIGNED-PAYLOAD-TRAILER tells the signer that we're sending an unsigned streaming body that will be followed by trailers. We can achieve this by: Adding a new variant to SignableBody: /// A signable HTTP request body\n#[derive(Debug, Clone, Eq, PartialEq)]\n#[non_exhaustive]\npub enum SignableBody<'a> { // existing variants have been omitted for brevity... /// An unsigned payload with trailers /// /// StreamingUnsignedPayloadTrailer is used for streaming requests where the contents of the /// body cannot be known prior to signing **AND** which include HTTP trailers. StreamingUnsignedPayloadTrailer,\n} Updating the CanonicalRequest::payload_hash method to include the new SignableBody variant: fn payload_hash<'b>(body: &'b SignableBody<'b>) -> Cow<'b, str> { // Payload hash computation // // Based on the input body, set the payload_hash of the canonical request: // Either: // - compute a hash // - use the precomputed hash // - use `UnsignedPayload` // - use `StreamingUnsignedPayloadTrailer` match body { SignableBody::Bytes(data) => Cow::Owned(sha256_hex_string(data)), SignableBody::Precomputed(digest) => Cow::Borrowed(digest.as_str()), SignableBody::UnsignedPayload => Cow::Borrowed(UNSIGNED_PAYLOAD), SignableBody::StreamingUnsignedPayloadTrailer => { Cow::Borrowed(STREAMING_UNSIGNED_PAYLOAD_TRAILER) } }\n} (in generated code) Inserting the SignableBody into the request property bag when making a checksum-verified streaming request: if self.checksum_algorithm.is_some() { request .properties_mut() .insert(aws_sig_auth::signer::SignableBody::StreamingUnsignedPayloadTrailer);\n} It's possible to send aws-chunked requests where each chunk is signed individually. Because this feature isn't strictly necessary for flexible checksums, I've avoided implementing it.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Sigv4 Update","id":"230","title":"Sigv4 Update"},"231":{"body":"In order to avoid writing lots of Rust in Kotlin, I have implemented request and response building functions as inlineables: Building checksum-validated requests with in-memory request bodies: // In aws/rust-runtime/aws-inlineable/src/streaming_body_with_checksum.rs\n/// Given a `&mut http::request::Request`, and checksum algorithm name, calculate a checksum and\n/// then modify the request to include the checksum as a header.\npub fn build_checksum_validated_request( request: &mut http::request::Request, checksum_algorithm: &str,\n) -> Result<(), aws_smithy_http::operation::BuildError> { let data = request.body().bytes().unwrap_or_default(); let mut checksum = aws_smithy_checksums::new_checksum(checksum_algorithm); checksum .update(data) .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; let checksum = checksum .finalize() .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; request.headers_mut().insert( aws_smithy_checksums::checksum_algorithm_to_checksum_header_name(checksum_algorithm), aws_smithy_types::base64::encode(&checksum[..]) .parse() .expect(\"base64-encoded checksums are always valid header values\"), ); Ok(())\n} Building checksum-validated requests with streaming request bodies: /// Given an `http::request::Builder`, `SdkBody`, and a checksum algorithm name, return a\n/// `Request` with checksum trailers where the content is `aws-chunked` encoded.\npub fn build_checksum_validated_request_with_streaming_body( request_builder: http::request::Builder, body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str,\n) -> Result, aws_smithy_http::operation::BuildError> { use http_body::Body; let original_body_size = body .size_hint() .exact() .expect(\"body must be sized if checksum is requested\"); let body = aws_smithy_checksums::body::ChecksumBody::new(body, checksum_algorithm); let checksum_trailer_name = body.trailer_name(); let aws_chunked_body_options = aws_http::content_encoding::AwsChunkedBodyOptions::new() .with_stream_length(original_body_size as usize) .with_trailer_len(body.trailer_length() as usize); let body = aws_http::content_encoding::AwsChunkedBody::new(body, aws_chunked_body_options); let encoded_content_length = body .size_hint() .exact() .expect(\"encoded_length must return known size\"); let request_builder = request_builder .header( http::header::CONTENT_LENGTH, http::HeaderValue::from(encoded_content_length), ) .header( http::header::HeaderName::from_static(\"x-amz-decoded-content-length\"), http::HeaderValue::from(original_body_size), ) .header( http::header::HeaderName::from_static(\"x-amz-trailer\"), checksum_trailer_name, ) .header( http::header::CONTENT_ENCODING, aws_http::content_encoding::header_value::AWS_CHUNKED.as_bytes(), ); let body = aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body)); request_builder .body(body) .map_err(|err| aws_smithy_http::operation::BuildError::Other(Box::new(err)))\n} Building checksum-validated responses: /// Given a `Response`, checksum algorithm name, and pre-calculated checksum, return a\n/// `Response` where the body will processed with the checksum algorithm and checked\n/// against the pre-calculated checksum.\npub fn build_checksum_validated_sdk_body( body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str, precalculated_checksum: bytes::Bytes,\n) -> aws_smithy_http::body::SdkBody { let body = aws_smithy_checksums::body::ChecksumValidatedBody::new( body, checksum_algorithm, precalculated_checksum.clone(), ); aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body))\n} /// Given the name of a checksum algorithm and a `HeaderMap`, extract the checksum value from the\n/// corresponding header as `Some(Bytes)`. If the header is unset, return `None`.\npub fn check_headers_for_precalculated_checksum( headers: &http::HeaderMap,\n) -> Option<(&'static str, bytes::Bytes)> { for header_name in aws_smithy_checksums::CHECKSUM_HEADERS_IN_PRIORITY_ORDER { if let Some(precalculated_checksum) = headers.get(&header_name) { let checksum_algorithm = aws_smithy_checksums::checksum_header_name_to_checksum_algorithm(&header_name); let precalculated_checksum = bytes::Bytes::copy_from_slice(precalculated_checksum.as_bytes()); return Some((checksum_algorithm, precalculated_checksum)); } } None\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Inlineables","id":"231","title":"Inlineables"},"232":{"body":"Codegen will be updated to insert the appropriate inlineable functions for operations that are tagged with the @httpchecksum trait. Some operations will require an MD5 checksum fallback if the user hasn't set a checksum themselves. Users also have the option of supplying a precalculated checksum of their own. This is already handled by our current header insertion logic and won't require updating the existing implementation. Because this checksum validation behavior is AWS-specific, it will be defined in SDK codegen.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Codegen","id":"232","title":"Codegen"},"233":{"body":"Implement codegen for building checksum-validated requests: In-memory request bodies Support MD5 fallback behavior for services that enable it. Streaming request bodies Implement codegen for building checksum-validated responses:","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementation Checklist","id":"233","title":"Implementation Checklist"},"234":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. SDK customers occasionally need to add additional HTTP headers to requests, and currently, the SDK has no easy way to accomplish this. At time of writing, the lower level Smithy client has to be used to create an operation, and then the HTTP request augmented on that operation type. For example: let input = SomeOperationInput::builder().some_value(5).build()?; let operation = { let op = input.make_operation(&service_config).await?; let (request, response) = op.into_request_response(); let request = request.augment(|req, _props| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); Result::<_, Infallible>::Ok(req) })?; Operation::from_parts(request, response)\n}; let response = smithy_client.call(operation).await?; This approach is both difficult to discover and implement since it requires acquiring a Smithy client rather than the generated fluent client, and it's anything but ergonomic. This RFC proposes an easier way to augment requests that is compatible with the fluent client.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » RFC: Customizable Client Operations","id":"234","title":"RFC: Customizable Client Operations"},"235":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Terminology","id":"235","title":"Terminology"},"236":{"body":"The code generated fluent builders returned by the fluent client should have a method added to them, similar to send, but that returns a customizable request. The customer experience should look as follows: let response = client.some_operation() .some_value(5) .customize() .await? .mutate_request(|mut req| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); }) .send() .await?; This new async customize method would return the following: pub struct CustomizableOperation { handle: Arc, operation: Operation,\n} impl CustomizableOperation { // Allows for customizing the operation's request fn map_request( mut self, f: impl FnOnce(Request) -> Result, E>, ) -> Result { let (request, response) = self.operation.into_request_response(); let request = request.augment(|req, _props| f(req))?; self.operation = Operation::from_parts(request, response); Ok(self) } // Convenience for `map_request` where infallible direct mutation of request is acceptable fn mutate_request( mut self, f: impl FnOnce(&mut Request) -> (), ) -> Self { self.map_request(|mut req| { f(&mut req); Result::<_, Infallible>::Ok(req) }).expect(\"infallible\"); Ok(self) } // Allows for customizing the entire operation fn map_operation( mut self, f: impl FnOnce(Operation) -> Result, E>, ) -> Result { self.operation = f(self.operation)?; Ok(self) } // Direct access to read the request fn request(&self) -> &Request { self.operation.request() } // Direct access to mutate the request fn request_mut(&mut self) -> &mut Request { self.operation.request_mut() } // Sends the operation's request async fn send(self) -> Result> where O: ParseHttpResponse> + Send + Sync + Clone + 'static, E: std::error::Error, R: ClassifyResponse, SdkError> + Send + Sync, { self.handle.client.call(self.operation).await }\n} Additionally, for those who want to avoid closures, the Operation type will have request and request_mut methods added to it to get direct access to its underlying HTTP request. The CustomizableOperation type will then mirror these functions so that the experience can look as follows: let mut operation = client.some_operation() .some_value(5) .customize() .await?;\noperation.request_mut() .headers_mut() .insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") );\nlet response = operation.send().await?;","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Proposal","id":"236","title":"Proposal"},"237":{"body":"In the proposal above, customers must await the result of customize in order to get the CustomizableOperation. This is a result of the underlying map_operation function that customize needs to call being async, which was made async during the implementation of customizations for Glacier (see #797, #801, and #1474). It is possible to move these Glacier customizations into middleware to make map_operation sync, but keeping it async is much more future-proof since if a future customization or feature requires it to be async, it won't be a breaking change in the future.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why not remove async from customize to make this more ergonomic?","id":"237","title":"Why not remove async from customize to make this more ergonomic?"},"238":{"body":"Alternatively, the name build could be used, but this increases the odds that customers won't realize that they can call send directly, and then call a longer build/send chain when customization isn't needed: client.some_operation() .some_value() .build() // Oops, didn't need to do this .send() .await?; vs. client.some_operation() .some_value() .send() .await?; Additionally, no AWS services at time of writing have a member named customize that would conflict with the new function, so adding it would not be a breaking change.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why the name customize?","id":"238","title":"Why the name customize?"},"239":{"body":"Create CustomizableOperation as an inlinable, and code generate it into client so that it has access to Handle Code generate the customize method on fluent builders Update the RustReservedWords class to include customize Add ability to mutate the HTTP request on Operation Add examples for both approaches Comment on older discussions asking about how to do this with this improved approach","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Changes Checklist","id":"239","title":"Changes Checklist"},"24":{"body":"Signing, endpoint specification, and logging are all handled as middleware. The Rust SDK takes a minimalist approach to middleware: Middleware is defined as minimally as possible, then adapted into the middleware system used by the IO layer. Tower is the de facto standard for HTTP middleware in Rust—we will probably use it. But we also want to make our middleware usable for users who aren't using Tower (or if we decide to not use Tower in the long run). Because of this, rather than implementing all our middleware as \"Tower Middleware\", we implement it narrowly (e.g. as a function that operates on operation::Request), then define optional adapters to make our middleware tower compatible.","breadcrumbs":"Transport » HTTP Middleware » HTTP middleware","id":"24","title":"HTTP middleware"},"240":{"body":"Status: Accepted Smithy provides a sensitive trait which exists as a @sensitive field annotation syntactically and has the following semantics: Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). This RFC is concerned with solving the problem of honouring this specification in the context of logging. Progress has been made towards this goal in the form of the Sensitive Trait PR , which uses code generation to remove sensitive fields from Debug implementations. The problem remains open due to the existence of HTTP binding traits and a lack of clearly defined user guidelines which customers may follow to honour the specification. This RFC proposes: A new logging middleware is generated and applied to each OperationHandler Service. A developer guideline is provided on how to avoid violating the specification.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » RFC: Logging in the Presence of Sensitive Data","id":"240","title":"RFC: Logging in the Presence of Sensitive Data"},"241":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Runtime crate : A crate existing within the rust-runtime folder, used to implement shared functionalities that do not have to be code-generated. Service : The tower::Service trait. The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Potentially sensitive : Data that could be bound to a sensitive field of a structure, for example via the HTTP Binding Traits .","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Terminology","id":"241","title":"Terminology"},"242":{"body":"","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Background","id":"242","title":"Background"},"243":{"body":"Smithy provides various HTTP binding traits. These allow protocols to configure a HTTP request by way of binding fields to parts of the request. For this reason sensitive data might be unintentionally leaked through logging of a bound request. Trait Configurable httpHeader Headers httpPrefixHeaders Headers httpLabel URI httpPayload Payload httpQuery Query Parameters httpResponseCode Status Code Each of these configurable parts must therefore be logged cautiously.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Binding Traits","id":"243","title":"HTTP Binding Traits"},"244":{"body":"It would be unfeasible to forbid the logging of sensitive data all together using the type system. With the current API, the customer will always have an opportunity to log a request containing sensitive data before it enters the Service> that we provide to them. // The API provides us with a `Service>`\nlet app: Router = OperationRegistryBuilder::default().build().expect(\"unable to build operation registry\").into(); // We can `ServiceExt::map_request` log a request with potentially sensitive data\nlet app = app.map_request(|request| { info!(?request); request }); A more subtle violation of the specification may occur when the customer enables verbose logging - a third-party dependency might simply log data marked as sensitive, for example tokio or hyper. These two cases illustrate that smithy-rs can only prevent violation of the specification in a restricted scope - logs emitted from generated code and the runtime crates. A smithy-rs specific guideline should be available to the customer which outlines how to avoid violating the specification in areas outside of our control.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Scope and Guidelines","id":"244","title":"Scope and Guidelines"},"245":{"body":"The sensitivity and HTTP bindings are declared within specific structures/operations. For this reason, in the general case, it's unknowable whether or not any given part of a request is sensitive until we determine which operation is tasked with handling the request and hence which fields are bound. Implementation wise, this means that any middleware applied before routing has taken place cannot log anything potentially sensitive without performing routing logic itself. Note that: We are not required to deserialize the entire request before we can make judgments on what data is sensitive or not - only which operation it has been routed to. We are permitted to emit logs prior to routing when: they contain no potentially sensitive data, or the request failed to route, in which case it's not subject to the constraints of an operation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Routing","id":"245","title":"Routing"},"246":{"body":"The crates existing in rust-runtime are not code generated - their source code is agnostic to the specific model in use. For this reason, if such a crate wanted to log potentially sensitive data then there must be a way to conditionally toggle that log without manipulation of the source code. Any proposed solution must acknowledge this concern.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Runtime Crates","id":"246","title":"Runtime Crates"},"247":{"body":"This proposal serves to honor the sensitivity specification via code generation of a logging middleware which is aware of the sensitivity, together with a developer contract disallowing logging potentially sensitive data in the runtime crates. A developer guideline should be provided in addition to the middleware. All data known to be sensitive should be replaced with \"{redacted}\" when logged. Implementation wise this means that tracing::Event s and tracing::Span s of the form debug!(field = \"sensitive data\") and span!(..., field = \"sensitive data\") must become debug!(field = \"{redacted}\") and span!(..., field = \"{redacted}\").","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Proposal","id":"247","title":"Proposal"},"248":{"body":"Developers might want to observe sensitive data for debugging purposes. It should be possible to opt-out of the redactions by enabling a feature flag unredacted-logging (which is disabled by default). To prevent excessive branches such as if cfg!(feature = \"unredacted-logging\") { debug!(%data, \"logging here\");\n} else { debug!(data = \"{redacted}\", \"logging here\");\n} the following wrapper should be provided from a runtime crate: pub struct Sensitive(T); impl Debug for Sensitive\nwhere T: Debug\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} impl Display for Sensitive\nwhere T: Display\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} In which case the branch above becomes debug!(sensitive_data = %Sensitive(data));","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Debug Logging","id":"248","title":"Debug Logging"},"249":{"body":"Using the smithy model, for each operation, a logging middleware should be generated. Through the model, the code generation knows which fields are sensitive and which HTTP bindings exist, therefore the logging middleware can be carefully crafted to avoid leaking sensitive data. As a request enters this middleware it should record the method, HTTP headers, status code, and URI in a tracing::span. As a response leaves this middleware it should record the HTTP headers and status code in a tracing::debug. The following model @readonly\n@http(uri: \"/inventory/{name}\", method: \"GET\")\noperation Inventory { input: Product, output: Stocked\n} @input\nstructure Product { @required @sensitive @httpLabel name: String\n} @output\nstructure Stocked { @sensitive @httpResponseCode code: String,\n} should generate the following // NOTE: This code is intended to show behavior - it does not compile pub struct InventoryLogging { inner: S, operation_name: &'static str\n} impl InventoryLogging { pub fn new(inner: S) -> Self { Self { inner } }\n} impl Service> for InventoryLogging\nwhere S: Service>\n{ type Response = Response; type Error = S::Error; type Future = /* Implementation detail */; fn call(&mut self, request: Request) -> Self::Future { // Remove sensitive data from parts of the HTTP let uri = /* redact {name} from URI */; let headers = /* no redactions */; let fut = async { let response = self.inner.call(request).await; let status_code = /* redact status code */; let headers = /* no redactions */; debug!(%status_code, ?headers, \"response\"); response }; // Instrument the future with a span let span = debug_span!(\"request\", operation = %self.operation_name, method = %request.method(), %uri, ?headers); fut.instrument(span) }\n}","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Code Generated Logging Middleware","id":"249","title":"Code Generated Logging Middleware"},"25":{"body":"The Smithy client provides a default TLS connector, but a custom one can be plugged in. rustls is enabled with the feature flag rustls. The client had previously (prior to version 0.56.0) supported native-tls. You can continue to use a client whose TLS implementation is backed by native-tls by passing in a custom connector. Check out the custom_connectors.rs tests in the pokemon-service-tls example crate.","breadcrumbs":"Transport » TLS Connector","id":"25","title":"Transport"},"250":{"body":"The Service::call path, seen in Code Generated Logging Middleware , is latency-sensitive. Careful implementation is required to avoid excess allocations during redaction of sensitive data. Wrapping Uri and HeaderMap then providing a new Display / Debug implementation which skips over the sensitive data is preferable over allocating a new String/HeaderMap and then mutating it. These wrappers should be provided alongside the Sensitive struct described in Debug Logging . If they are implemented on top of Sensitive, they will inherit the same behavior - allowing redactions to be toggled using unredacted-logging feature flag.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Debug/Display Wrappers","id":"250","title":"HTTP Debug/Display Wrappers"},"251":{"body":"This logging middleware should be applied outside of the OperationHandler after its construction in the (generated) operation_registry.rs file. The middleware should preserve the associated types of the OperationHandler (Response = Response, Error = Infallible) to cause minimal disruption. An easy position to apply the logging middleware is illustrated below in the form of Logging{Operation}::new: let empty_operation = LoggingEmptyOperation::new(operation(registry.empty_operation));\nlet get_pokemon_species = LoggingPokemonSpecies::new(operation(registry.get_pokemon_species));\nlet get_server_statistics = LoggingServerStatistics::new(operation(registry.get_server_statistics));\nlet routes = vec![ (BoxCloneService::new(empty_operation), empty_operation_request_spec), (BoxCloneService::new(get_pokemon_species), get_pokemon_species_request_spec), (BoxCloneService::new(get_server_statistics), get_server_statistics_request_spec),\n];\nlet router = aws_smithy_http_server::routing::Router::new_rest_json_router(routes); Although an acceptable first step, putting logging middleware here is suboptimal - the Router allows a tower::Layer to be applied to the operation by using the Router::layer method. This middleware will be applied outside of the logging middleware and, as a result, will not be subject to the span of any middleware. Therefore, the Router must be changed to allow for middleware to be applied within the logging middleware rather than outside of it. This is a general problem, not specific to this proposal. For example, Use Request Extensions must also solve this problem. Fortunately, this problem is separable from the actual implementation of the logging middleware and we can get immediate benefit by application of it in the suboptimal position described above.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Middleware Position","id":"251","title":"Middleware Position"},"252":{"body":"There is need for logging within the Router implementation - this is a crucial area of business logic. As mentioned in the Routing section, we are permitted to log potentially sensitive data in cases where requests fail to get routed to an operation. In the case of AWS JSON 1.0 and 1.1 protocols, the request URI is always /, putting it outside of the reach of the @sensitive trait. We therefore have the option to log it before routing occurs. We make a choice not to do this in order to remove the special case - relying on the logging layer to log URIs when appropriate.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Logging within the Router","id":"252","title":"Logging within the Router"},"253":{"body":"A guideline should be made available, which includes: The HTTP bindings traits and why they are of concern in the presence of @sensitive. The Debug implementation on structures. How to use the Sensitive struct, HTTP wrappers, and the unredacted-logging feature flag described in Debug Logging and HTTP Debug/Display Wrappers . A warning against the two potential leaks described in Scope and Guidelines : Sensitive data leaking from third-party dependencies. Sensitive data leaking from middleware applied to the Router.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Developer Guideline","id":"253","title":"Developer Guideline"},"254":{"body":"All of the following proposals are compatible with, and benefit from, Debug Logging , HTTP Debug/Display Wrappers , and Developer Guideline portions of the main proposal. The main proposal disallows the logging of potentially sensitive data in the runtime crates, instead opting for a dedicated code generated logging middleware. In contrast, the following proposals all seek ways to accommodate logging of potentially sensitive data in the runtime crates.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Alternative Proposals","id":"254","title":"Alternative Proposals"},"255":{"body":"Request extensions can be used to adjoin data to a Request as it passes through the middleware. Concretely, they exist as the type map http::Extensions accessed via http::extensions and http::extensions_mut . These can be used to provide data to middleware interested in logging potentially sensitive data. struct Sensitivity { /* Data concerning which parts of the request are sensitive */\n} struct Middleware { inner: S\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if let Some(sensitivity) = request.extensions().get::() { if sensitivity.is_method_sensitive() { debug!(method = %request.method()); } } /* ... */ self.inner.call(request) }\n} A middleware layer must be code generated (much in the same way as the logging middleware) which is dedicated to inserting the Sensitivity struct into the extensions of each incoming request. impl Service> for SensitivityInserter\nwhere S: Service>\n{ /* ... */ fn call(&mut self, request: Request) -> Self::Future { let sensitivity = Sensitivity { /* .. */ }; request.extensions_mut().insert(sensitivity); self.inner.call(request) }\n} Advantages Applicable to all middleware which takes http::Request. Does not pollute the API of the middleware - code internal to middleware simply inspects the request's extensions and performs logic based on its value. Disadvantages The sensitivity and HTTP bindings are known at compile time whereas the insertion/retrieval of the extension data is done at runtime. http::Extensions is approximately a HashMap> so lookup/insertion involves indirection/cache misses/heap allocation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Use Request Extensions","id":"255","title":"Use Request Extensions"},"256":{"body":"It is possible that sensitivity is a parameter passed to middleware during construction. This is similar in nature to Use Request Extensions except that the Sensitivity is passed to middleware during construction. struct Middleware { inner: S, sensitivity: Sensitivity\n} impl Middleware { pub fn new(inner: S) -> Self { /* ... */ } pub fn new_with_sensitivity(inner: S, sensitivity: Sensitivity) -> Self { /* ... */ }\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if self.sensitivity.is_method_sensitive() { debug!(method = %Sensitive(request.method())); } /* ... */ self.inner.call(request) }\n} It would then be required that the code generation responsible constructing a Sensitivity for each operation. Additionally, if any middleware is being applied to a operation then the code generation would be responsible for passing that middleware the appropriate Sensitivity before applying it. Advantages Applicable to all middleware. As the Sensitivity struct will be known statically, the compiler will remove branches, making it cheap. Disadvantages Pollutes the API of middleware.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Accommodate the Sensitivity in Middleware API","id":"256","title":"Accommodate the Sensitivity in Middleware API"},"257":{"body":"Distinct from tower::Layer, a tracing::Layer is a \"composable handler for tracing events\". It would be possible to write an implementation which would filter out events which contain sensitive data. Examples of filtering tracing::Layers already exist in the form of the EnvFilter and Targets . It is unlikely that we'll be able to leverage them for our use, but the underlying principle remains the same - the tracing::Layer inspects tracing::Events/tracing::Spans, filtering them based on some criteria. Code generation would be need to be used in order to produce the filtering criteria from the models. Internal developers would need to adhere to a common set of field names in order for them to be subject to the filtering. Spans would need to be opened after routing occurs in order for the tracing::Layer to know which operation Events are being produced within and hence which filtering rules to apply. Advantages Applicable to all middleware. Good separation of concerns: Does not pollute the API of the middleware No specific logic required within middleware. Disadvantages Complex implementation. Not necessarily fast. tracing::Layers seem to only support filtering entire Events, rather than more fine grained removal of fields.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Redact values using a tracing Layer","id":"257","title":"Redact values using a tracing Layer"},"258":{"body":"Implement and integrate code generated logging middleware. https://github.com/smithy-lang/smithy-rs/pull/1550 Add logging to Router implementation. https://github.com/smithy-lang/smithy-rs/issues/1666 Write developer guideline. https://github.com/smithy-lang/smithy-rs/pull/1772 Refactor Router to allow for better positioning described in Middleware Position . https://github.com/smithy-lang/smithy-rs/pull/1620 https://github.com/smithy-lang/smithy-rs/pull/1679 https://github.com/smithy-lang/smithy-rs/pull/1693","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Changes Checklist","id":"258","title":"Changes Checklist"},"259":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how client and server will use errors defined in @streaming unions (event streams).","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » RFC: Errors for event streams","id":"259","title":"RFC: Errors for event streams"},"26":{"body":"The Rust SDK uses Smithy models and code generation tooling to generate an SDK. Smithy is an open source IDL (interface design language) developed by Amazon. Although the Rust SDK uses Smithy models for AWS services, smithy-rs and Smithy models in general are not AWS specific. Design documentation here covers both our implementation of Smithy Primitives (e.g. simple shape) as well as more complex Smithy traits like Endpoint .","breadcrumbs":"Smithy » Smithy","id":"26","title":"Smithy"},"260":{"body":"In the current version of smithy-rs, customers who want to use errors in event streams need to use them as so: stream! { yield Ok(EventStreamUnion::ErrorVariant ...)\n} Furthermore, there is no support for @errors in event streams being terminal; that is, when an error is sent, it does not signal termination and thus does not complete the stream. This RFC proposes to make changes to: terminate the stream upon receiving a modeled error change the API so that customers will write their business logic in a more Rust-like experience: stream! { yield Err(EventStreamUnionError::ErrorKind ...)\n} Thus any Err(_) from the stream is terminal, rather than any Ok(x) with x being matched against the set of modeled variant errors in the union.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » The user experience if this RFC is implemented","id":"260","title":"The user experience if this RFC is implemented"},"261":{"body":"In order to implement this feature: Errors modeled in streaming unions are going to be treated like operation errors They are in the error:: namespace They have the same methods operation errors have (name on the server, metadata on the client and so on) They are not variants in the corresponding error structure Errors need to be marshalled and unmarshalled Receiver must treat any error coming from the other end as terminal The code examples below have been generated using the following model : @http(uri: \"/capture-pokemon-event/{region}\", method: \"POST\")\noperation CapturePokemonOperation { input: CapturePokemonOperationEventsInput, output: CapturePokemonOperationEventsOutput, errors: [UnsupportedRegionError, ThrottlingError]\n} @input\nstructure CapturePokemonOperationEventsInput { @httpPayload events: AttemptCapturingPokemonEvent, @httpLabel @required region: String,\n} @output\nstructure CapturePokemonOperationEventsOutput { @httpPayload events: CapturePokemonEvents,\n} @streaming\nunion AttemptCapturingPokemonEvent { event: CapturingEvent, masterball_unsuccessful: MasterBallUnsuccessful,\n} structure CapturingEvent { @eventPayload payload: CapturingPayload,\n} structure CapturingPayload { name: String, pokeball: String,\n} @streaming\nunion CapturePokemonEvents { event: CaptureEvent, invalid_pokeball: InvalidPokeballError, throttlingError: ThrottlingError,\n} structure CaptureEvent { @eventHeader name: String, @eventHeader captured: Boolean, @eventHeader shiny: Boolean, @eventPayload pokedex_update: Blob,\n} @error(\"server\")\nstructure UnsupportedRegionError { @required region: String,\n}\n@error(\"client\")\nstructure InvalidPokeballError { @required pokeball: String,\n}\n@error(\"server\")\nstructure MasterBallUnsuccessful { @required message: String,\n}\n@error(\"client\")\nstructure ThrottlingError {} Wherever irrelevant, documentation and other lines are stripped out from the code examples below. Errors in streaming unions The error in AttemptCapturingPokemonEvent is modeled as follows. On the client, pub struct AttemptCapturingPokemonEventError { pub kind: AttemptCapturingPokemonEventErrorKind, pub(crate) meta: aws_smithy_types::Error,\n}\npub enum AttemptCapturingPokemonEventErrorKind { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful), Unhandled(Box),\n} On the server, pub enum AttemptCapturingPokemonEventError { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful),\n} Both are modeled as normal errors, where the name comes from Error with a prefix of the union's name. In fact, both the client and server generate operation errors and event stream errors the same way. Event stream errors have their own marshaller . To make it work for users to stream errors, EventStreamSender<>, in addition to the union type T, takes an error type E; that is, the AttemptCapturingPokemonEventError in the example. This means that an error from the stream is marshalled and sent as a data structure similarly to the union's non-error members. On the other side, the Receiver<> needs to terminate the stream upon receiving any error . A terminated stream has no more data and will always be a bug to use it. An example of how errors can be used on clients, extracted from this test : yield Err(AttemptCapturingPokemonEventError::new( AttemptCapturingPokemonEventErrorKind::MasterBallUnsuccessful(MasterBallUnsuccessful::builder().build()), Default::default()\n)); Because unions can be used in input or output of more than one operation, errors must be generated once as they are in the error:: namespace.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » How to actually implement this RFC","id":"261","title":"How to actually implement this RFC"},"262":{"body":"Errors are in the error:: namespace and created as operation errors Errors can be sent to the stream Errors terminate the stream Customers' experience using errors mirrors the Rust way: Err(error::StreamingError ...)","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » Changes checklist","id":"262","title":"Changes checklist"},"263":{"body":"Status: Accepted One might characterize smithy-rs as a tool for transforming a Smithy service into a tower::Service builder. A Smithy model defines behavior of the generated service partially - handlers must be passed to the builder before the tower::Service is fully specified. This builder structure is the primary API surface we provide to the customer, as a result, it is important that it meets their needs. This RFC proposes a new builder, deprecating the existing one, which addresses API deficiencies and takes steps to improve performance.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » RFC: Service Builder Improvements","id":"263","title":"RFC: Service Builder Improvements"},"264":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Smithy Service : The entry point of an API that aggregates resources and operations together within a Smithy model. Described in detail here . Service : The tower::Service trait is an interface for writing network applications in a modular and reusable way. Services act on requests to produce responses. Service Builder : A tower::Service builder, generated from a Smithy service, by smithy-rs. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Handler : A closure defining the behavior of a particular request after routing. These are provided to the service builder to complete the description of the service.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Terminology","id":"264","title":"Terminology"},"265":{"body":"To provide context for the proposal we perform a survey of the current state of affairs. The following is a reference model we will use throughout the RFC: operation Operation0 { input: Input0, output: Output0\n} operation Operation1 { input: Input1, output: Output1\n} @restJson1\nservice Service0 { operations: [ Operation0, Operation1, ]\n} We have purposely omitted details from the model that are unimportant to describing the proposal. We also omit distracting details from the Rust snippets. Code generation is linear in the sense that, code snippets can be assumed to extend to multiple operations in a predictable way. In the case where we do want to speak generally about an operation and its associated types, we use {Operation}, for example {Operation}Input is the input type of an unspecified operation. Here is a quick example of what a customer might write when using the service builder: async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler1(input: Operation1Input) -> Operation1Output { todo!()\n} let app: Router = OperationRegistryBuilder::default() // Use the setters .operation0(handler0) .operation1(handler1) // Convert to `OperationRegistry` .build() .unwrap() // Convert to `Router` .into(); During the survey we touch on the major mechanisms used to achieve this API.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Background","id":"265","title":"Background"},"266":{"body":"A core concept in the service builder is the Handler trait: pub trait Handler { async fn call(self, req: http::Request) -> http::Response;\n} Its purpose is to provide an even interface over closures of the form FnOnce({Operation}Input) -> impl Future and FnOnce({Operation}Input, State) -> impl Future. It's this abstraction which allows the customers to supply both async fn handler(input: {Operation}Input) -> {Operation}Output and async fn handler(input: {Operation}Input, state: Extension) -> {Operation}Output to the service builder. We generate Handler implementations for said closures in ServerOperationHandlerGenerator.kt : impl Handler<(), Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input let output = self(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} impl Handler, Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input, Extension) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input and fetched extension data let extension = Extension(request.extensions().get::().clone()); let output = self(input, extension).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Creating {Operation}Input from a http::Request and http::Response from a {Operation}Output involves protocol aware serialization/deserialization, for example, it can involve the HTTP binding traits . The RuntimeError enumerates error cases such as serialization/deserialization failures, extensions().get::() failures, etc. We omit error handling in the snippet above, but, in full, it also involves protocol aware conversions from the RuntimeError to http::Response. The reader should make note of the influence of the model on the different sections of this procedure. The request.extensions().get::() present in the Fun: FnOnce(Operation0Input, Extension) -> Fut implementation is the current approach to injecting state into handlers. The customer is required to apply a AddExtensionLayer to the output of the service builder so that, when the request reaches the handler, the extensions().get::() will succeed. To convert the closures described above into a Service an OperationHandler is used: pub struct OperationHandler { handler: H,\n} impl Service> for OperationHandler\nwhere H: Handler,\n{ type Response = http::Response; type Error = Infallible; #[inline] fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, req: Request) -> Result { self.handler.call(req).await.map(Ok) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Handlers","id":"266","title":"Handlers"},"267":{"body":"The service builder we provide to the customer is the OperationRegistryBuilder, generated from ServerOperationRegistryGenerator.kt . Currently, the reference model would generate the following OperationRegistryBuilder and OperationRegistry: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option,\n} pub struct OperationRegistry { operation1: Op0, operation2: Op1,\n} The OperationRegistryBuilder includes a setter per operation, and a fallible build method: impl OperationRegistryBuilder { pub fn operation0(mut self, value: Op0) -> Self { self.operation0 = Some(value); self } pub fn operation1(mut self, value: Op1) -> Self { self.operation1 = Some(value); self } pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) }\n} The OperationRegistry does not include any methods of its own, however it does enjoy a From for Router implementation: impl From> for Router\nwhere Op0: Handler, Op1: Handler,\n{ fn from(registry: OperationRegistry) -> Self { let operation0_request_spec = /* Construct Operation0 routing information */; let operation1_request_spec = /* Construct Operation1 routing information */; // Convert handlers into boxed services let operation0_svc = Box::new(OperationHandler::new(registry.operation0)); let operation1_svc = Box::new(OperationHandler::new(registry.operation1)); // Initialize the protocol specific router // We demonstrate it here with `new_rest_json_router`, but note that there is a different router constructor // for each protocol. aws_smithy_http_server::routing::Router::new_rest_json_router(vec![ ( operation0_request_spec, operation0_svc ), ( operation1_request_spec, operation1_svc ) ]) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Builder","id":"267","title":"Builder"},"268":{"body":"The aws_smithy_http::routing::Router provides the protocol aware routing of requests to their target , it exists as pub struct Route { service: Box>,\n} enum Routes { RestXml(Vec<(Route, RequestSpec)>), RestJson1(Vec<(Route, RequestSpec)>), AwsJson1_0(TinyMap), AwsJson11(TinyMap),\n} pub struct Router { routes: Routes,\n} and enjoys the following Service implementation: impl Service for Router\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, request: http::Request) -> Result { match &self.routes { Routes::/* protocol */(routes) => { let route: Result = /* perform route matching logic */; match route { Ok(ok) => ok.oneshot().await, Err(err) => /* Convert routing error into http::Response */ } } } }\n} Along side the protocol specific constructors, Router includes a layer method. This provides a way for the customer to apply a tower::Layer to all routes. For every protocol, Router::layer has the approximately the same behavior: let new_routes = old_routes .into_iter() // Apply the layer .map(|route| layer.layer(route)) // Re-box the service, to restore `Route` type .map(|svc| Box::new(svc)) // Collect the iterator back into a collection (`Vec` or `TinyMap`) .collect();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Router","id":"268","title":"Router"},"269":{"body":"Historically, smithy-rs has borrowed from axum . Despite various divergences the code bases still have much in common: Reliance on Handler trait to abstract over different closure signatures: axum::handler::Handler Handlers A mechanism for turning H: Handler into a tower::Service: axum::handler::IntoService OperationHandler A Router to route requests to various handlers: axum::Router aws_smithy_http_server::routing::Router To identify where the implementations should differ we should classify in what ways the use cases differ. There are two primary areas which we describe below. Extractors and Responses In axum there is a notion of Extractor , which allows the customer to easily define a decomposition of an incoming http::Request by specifying the arguments to the handlers. For example, async fn request(Json(payload): Json, Query(params): Query>, headers: HeaderMap) { todo!()\n} is a valid handler - each argument satisfies the axum::extract::FromRequest trait, therefore satisfies one of axums blanket Handler implementations: macro_rules! impl_handler { ( $($ty:ident),* $(,)? ) => { impl Handler<($($ty,)*)> for F where F: FnOnce($($ty,)*) -> Fut + Clone + Send + 'static, Fut: Future + Send, Res: IntoResponse, $( $ty: FromRequest + Send,)* { fn call(self, req: http::Request) -> Self::Future { async { let mut req = RequestParts::new(req); $( let $ty = match $ty::from_request(&mut req).await { Ok(value) => value, Err(rejection) => return rejection.into_response(), }; )* let res = self($($ty,)*).await; res.into_response() } } } };\n} The implementations of Handler in axum and smithy-rs follow a similar pattern - convert http::Request into the closure's input, run the closure, convert the output of the closure to http::Response. In smithy-rs we do not need a general notion of \"extractor\" - the http::Request decomposition is specified by the Smithy model, whereas in axum it's defined by the handlers signature. Despite the Smithy specification the customer may still want an \"escape hatch\" to allow them access to data outside of the Smithy service inputs, for this reason we should continue to support a restricted notion of extractor. This will help support use cases such as passing lambda_http::Context through to the handler despite it not being modeled in the Smithy model. Dual to FromRequest is the axum::response::IntoResponse trait. This plays the role of converting the output of the handler to http::Response. Again, the difference between axum and smithy-rs is that smithy-rs has the conversion from {Operation}Output to http::Response specified by the Smithy model, whereas in axum the customer is free to specify a return type which implements axum::response::IntoResponse. Routing The Smithy model not only specifies the http::Request decomposition and http::Response composition for a given service, it also determines the routing. The From implementation, described in Builder , yields a fully formed router based on the protocol and http traits specified. This is in contrast to axum, where the user specifies the routing by use of various combinators included on the axum::Router, applied to other tower::Services. In an axum application one might encounter the following code: let user_routes = Router::new().route(\"/:id\", /* service */); let team_routes = Router::new().route(\"/\", /* service */); let api_routes = Router::new() .nest(\"/users\", user_routes) .nest(\"/teams\", team_routes); let app = Router::new().nest(\"/api\", api_routes); Note that, in axum handlers are eagerly converted to a tower::Service (via IntoService) before they are passed into the Router. In contrast, in smithy-rs, handlers are passed into a builder and then the conversion to tower::Service is performed (via OperationHandler). Introducing state to handlers in axum is done in the same way as smithy-rs, described briefly in Handlers - a layer is used to insert state into incoming http::Requests and the Handler implementation pops it out of the type map layer. In axum, if a customer wanted to scope state to all routes within /users/ they are able to do the following: async fn handler(Extension(state): Extension) -> /* Return Type */ {} let api_routes = Router::new() .nest(\"/users\", user_routes.layer(Extension(/* state */))) .nest(\"/teams\", team_routes); In smithy-rs a customer is only able to apply a layer around the aws_smithy_http::routing::Router or around every route via the layer method described above.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Comparison to Axum","id":"269","title":"Comparison to Axum"},"27":{"body":"Smithy introduces a few concepts that are defined here: Shape: The core Smithy primitive. A smithy model is composed of nested shapes defining an API. Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt . Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately. Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a \"Rust block\" of code. writer.rustBlock(\"struct Model\") { model.fields.forEach { write(\"${field.name}: #T\", field.symbol) }\n} This would produce something like: struct Model { field1: u32, field2: String\n} Generators: A Generator, e.g. StructureGenerator, UnionGenerator generates more complex Rust code from a Smithy model. Protocol generators pull these individual tools together to generate code for an entire service / protocol. A developer's view of code generation can be found in this document .","breadcrumbs":"Smithy » Internals","id":"27","title":"Internals"},"270":{"body":"The proposal is presented as a series of compatible transforms to the existing service builder, each paired with a motivation. Most of these can be independently implemented, and it is stated in the cases where an interdependency exists. Although presented as a mutation to the existing service builder, the actual implementation should exist as an entirely separate builder, living in a separate namespace, reusing code generation from the old builder, while exposing a new Rust API. Preserving the old API surface will prevent breakage and make it easier to perform comparative benchmarks and testing.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Proposal","id":"270","title":"Proposal"},"271":{"body":"As described in Builder , the customer is required to perform two conversions. One from OperationRegistryBuilder via OperationRegistryBuilder::build, the second from OperationRegistryBuilder to Router via the From for Router implementation. The intermediary stop at OperationRegistry is not required and can be removed.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Remove two-step build procedure","id":"271","title":"Remove two-step build procedure"},"272":{"body":"As described in Builder , the OperationRegistryBuilder::build method is fallible - it yields a runtime error when one of the handlers has not been set. pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) } We can do away with fallibility if we allow for on Op0, Op1 to switch types during build and remove the Option from around the fields. The OperationRegistryBuilder then becomes struct OperationRegistryBuilder { operation_0: Op0, operation_1: Op1\n} impl OperationRegistryBuilder { pub fn operation0(mut self, value: NewOp0) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: value, operation1: self.operation1 } } pub fn operation1(mut self, value: NewOp1) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: self.operation0, operation1: value } }\n} impl OperationRegistryBuilder\nwhere Op0: Handler, Op1: Handler,\n{ pub fn build(self) -> OperationRegistry { OperationRegistry { operation0: self.operation0, operation1: self.operation1, } }\n} The customer will now get a compile time error rather than a runtime error when they fail to specify a handler.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Statically check for missing Handlers","id":"272","title":"Statically check for missing Handlers"},"273":{"body":"To construct a Router, the customer must either give a type ascription let app: Router = /* Service builder */.into(); or be explicit about the Router namespace let app = Router::from(/* Service builder */); If we switch from a From for Router to a build method on OperationRegistry the customer may simply let app = /* Service builder */.build(); There already exists a build method taking OperationRegistryBuilder to OperationRegistry, this is removed in Remove two-step build procedure . These two transforms pair well together for this reason.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Switch From for Router to an OperationRegistry::build method","id":"273","title":"Switch From for Router to an OperationRegistry::build method"},"274":{"body":"As mentioned in Comparison to Axum: Routing and Handlers , the smithy-rs service builder accepts handlers and only converts them into a tower::Service during the final conversion into a Router. There are downsides to this: The customer has no opportunity to apply middleware to a specific operation before they are all collected into Router. The Router does have a layer method, described in Router , but this applies the middleware uniformly across all operations. The builder has no way to apply middleware around customer applied middleware. A concrete example of where this would be useful is described in the Middleware Position section of RFC: Logging in the Presence of Sensitive Data . The customer has no way of expressing readiness of the underlying operation - all handlers are converted to services with Service::poll_ready returning Poll::Ready(Ok(())). The three use cases described above are supported by axum by virtue of the Router::route method accepting a tower::Service. The reader should consider a similar approach where the service builder setters accept a tower::Service rather than the Handler. Throughout this section we purposely ignore the existence of handlers accepting state alongside the {Operation}Input, this class of handlers serve as a distraction and can be accommodated with small perturbations from each approach. Approach A: Customer uses OperationHandler::new It's possible to make progress with a small changeset, by requiring the customer eagerly uses OperationHandler::new rather than it being applied internally within From for Router (see Handlers ). The setter would then become: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option\n} impl OperationRegistryBuilder { pub fn operation0(self, value: Op0) -> Self { self.operation1 = Some(value); self }\n} The API usage would then become async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} // Create a `Service` eagerly\nlet svc = OperationHandler::new(handler0); // Middleware can be applied at this point\nlet operation0 = /* A HTTP `tower::Layer` */.layer(op1_svc); OperationRegistryBuilder::default() .operation0(operation0) /* ... */ Note that this requires that the OperationRegistryBuilder stores services, rather than Handlers. An unintended and superficial benefit of this is that we are able to drop In{n} from the OperationRegistryBuilder - only Op{n} remains and it parametrizes each operation's tower::Service. It is still possible to retain the original API which accepts Handler by introducing the following setters: impl OperationRegistryBuilder { fn operation0_handler(self, handler: H) -> OperationRegistryBuilder, Op2> { OperationRegistryBuilder { operation0: OperationHandler::new(handler), operation1: self.operation1 } }\n} There are two points at which the customer might want to apply middleware: around tower::Service<{Operation}Input, Response = {Operation}Output> and tower::Service, that is, before and after the serialization/deserialization is performed. The change described only succeeds in the latter, and therefore is only a partial solution to (1). This solves (2), the service builder may apply additional middleware around the service. This does not solve (3), as the customer is not able to provide a tower::Service<{Operation}Input, Response = {Operation}Output>. Approach B: Operations as Middleware In order to achieve all three we model operations as middleware: pub struct Operation0 { inner: S,\n} impl Service for Operation0\nwhere S: Service\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, cx: &mut Context) -> Poll> { // We defer to the inner service for readiness self.inner.poll_ready(cx) } async fn call(&mut self, request: http::Request) -> Result { let input = /* Create `Operation0Input` from `request: http::Request` */; self.inner.call(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Notice the similarity between this and the OperationHandler, the only real difference being that we hold an inner service rather than a closure. In this way we have separated all model aware serialization/deserialization, we noted in Handlers , into this middleware. A consequence of this is that the user Operation0 must have two constructors: from_service, which takes a tower::Service. from_handler, which takes an async Operation0Input -> Operation0Output. A brief example of how this might look: use tower::util::{ServiceFn, service_fn}; impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, } }\n} impl Operation0> { pub fn from_handler(inner: F) -> Self { // Using `service_fn` here isn't strictly correct - there is slight misalignment of closure signatures. This // still serves to illustrate the proposal. Operation0::from_service(service_fn(inner)) }\n} The API usage then becomes: async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} // These are both `tower::Service` and hence can have middleware applied to them\nlet operation_0 = Operation0::from_handler(handler);\nlet operation_1 = Operation1::from_service(/* some service */); OperationRegistryBuilder::default() .operation0(operation_0) .operation1(operation_1) /* ... */ Approach C: Operations as Middleware Constructors While Attempt B solves all three problems, it fails to adequately model the Smithy semantics. An operation cannot uniquely define a tower::Service without reference to a parent Smithy service - information concerning the serialization/deserialization, error modes are all inherited from the Smithy service an operation is used within. In this way, Operation0 should not be a standalone middleware, but become middleware once accepted by the service builder. Any solution which provides an {Operation} structure and wishes it to be accepted by multiple service builders must deal with this problem. We currently build one library per service and hence have duplicate structures when service closures overlap. This means we wouldn't run into this problem today, but it would be a future obstruction if we wanted to reduce the amount of generated code. use tower::layer::util::{Stack, Identity};\nuse tower::util::{ServiceFn, service_fn}; // This takes the same form as `Operation0` defined in the previous attempt. The difference being that this is now\n// private.\nstruct Service0Operation0 { inner: S\n} impl Service for ServiceOperation0\nwhere S: Service\n{ /* Same as above */\n} pub struct Operation0 { inner: S, layer: L\n} impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, layer: Identity } }\n} impl Operation0, Identity> { pub fn from_handler(inner: F) -> Self { Operation0::from_service(service_fn(inner)) }\n} impl Operation0 { pub fn layer(self, layer: L) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, layer) } } pub fn logging(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, LoggingLayer::new(/* args */)) } } pub fn auth(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, /* Construct auth middleware */) } }\n} impl OperationRegistryBuilder { pub fn operation0(self, operation: Operation0) -> OperationRegistryBuilder<>::Service, Op2> where L: Layer> { // Convert `Operation0` to a `tower::Service`. let http_svc = Service0Operation0 { inner: operation.inner }; // Apply the layers operation.layer(http_svc) }\n} Notice that we get some additional type safety here when compared to Approach A and Approach B - operation0 accepts a Operation0 rather than a general tower::Service. We also get a namespace to include utility methods - notice the logging and auth methods. The RFC favours this approach out of all those presented. Approach D: Add more methods to the Service Builder An alternative to Approach C is to simply add more methods to the service builder while internally storing a tower::Service: operation0_from_service, accepts a tower::Service. operation0_from_handler, accepts an async Fn(Operation0Input) -> Operation0Output. operation0_layer, accepts a tower::Layer. This is functionally similar to Attempt C except that all composition is done internal to the service builder and the namespace exists in the method name, rather than the {Operation} struct.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Operations as Middleware Constructors","id":"274","title":"Operations as Middleware Constructors"},"275":{"body":"Currently the Router stores Box. As a result the Router::layer method, seen in Router , must re-box a service after every tower::Layer applied. The heap allocation Box::new itself is not cause for concern because Routers are typically constructed once at startup, however one might expect the indirection to regress performance when the server is running. Having the service type parameterized as Router, allows us to write: impl Router { fn layer(self, layer: &L) -> Router where L: Layer { /* Same internal implementation without boxing */ }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Service parameterized Routers","id":"275","title":"Service parameterized Routers"},"276":{"body":"Currently there is a single Router structure, described in Router , situated in the rust-runtime/aws-smithy-http-server crate, which is output by the service builder. This, roughly, takes the form of an enum listing the different protocols. #[derive(Debug)]\nenum Routes { RestXml(/* Container */), RestJson1(/* Container */), AwsJson1_0(/* Container */), AwsJson1_1(/* Container */),\n} Recall the form of the Service::call method, given in Router , which involved matching on the protocol and then performing protocol specific logic. Two downsides of modelling Router in this way are: Router is larger and has more branches than a protocol specific implementation. If a third-party wanted to extend smithy-rs to additional protocols Routes would have to be extended. A synopsis of this obstruction is presented in Should we generate the Router type issue. After taking the Switch From for Router to an OperationRegistry::build method transform, code generation is free to switch between return types based on the model. This allows for a scenario where a @restJson1 causes the service builder to output a specific RestJson1Router.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Routers","id":"276","title":"Protocol specific Routers"},"277":{"body":"Currently, protocol specific routing errors are either: Converted to RuntimeErrors and then http::Response (see unknown_operation ). Converted directly to a http::Response (see method_not_allowed ). This is an outlier to the common pattern. The from_request functions yield protocol specific errors which are converted to RequestRejections then RuntimeErrors (see ServerHttpBoundProtocolGenerator.kt ). In these scenarios protocol specific errors are converted into RuntimeError before being converted to a http::Response via into_response method. Two downsides of this are: RuntimeError enumerates all possible errors across all existing protocols, so is larger than modelling the errors for a specific protocol. If a third-party wanted to extend smithy-rs to additional protocols with differing failure modes RuntimeError would have to be extended. As in Protocol specific Errors , a synopsis of this obstruction is presented in Should we generate the Router type issue. Switching from using RuntimeError to protocol specific errors which satisfy a common interface, IntoResponse, would resolve these problem.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Errors","id":"277","title":"Protocol specific Errors"},"278":{"body":"Currently the service builder is named OperationRegistryBuilder. Despite the name being model agnostic, the OperationRegistryBuilder mutates when the associated service mutates. Renaming OperationRegistryBuilder to {Service}Builder would reflect the relationship between the builder and the Smithy service and prevent naming conflicts if multiple service builders are to exist in the same namespace. Similarly, the output of the service builder is Router. This ties the output of the service builder to a structure in rust-runtime. Introducing a type erasure here around Router using a newtype named {Service} would: Ensure we are free to change the implementation of {Service} without changing the Router implementation. Hide the router type, which is determined by the protocol specified in the model. Allow us to put a builder method on {Service} which returns {Service}Builder. This is compatible with Protocol specific Routers , we simply newtype the protocol specific router rather than Router. With both of these changes the API would take the form: let service_0: Service0 = Service0::builder() /* use the setters */ .build() .unwrap() .into(); With Remove two-step build procedure , Switch From for Router to a OperationRegistry::build method , and Statically check for missing Handlers we obtain the following API: let service_0: Service0 = Service0::builder() /* use the setters */ .build();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Type erasure with the name of the Smithy service","id":"278","title":"Type erasure with the name of the Smithy service"},"279":{"body":"A combination of all the proposed transformations results in the following API: struct Context { /* fields */\n} async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler_with_ext(input: Operation0Input, extension: Extension) -> Operation0Output { todo!()\n} struct Operation1Service { /* fields */\n} impl Service for Operation1Service { type Response = Operation1Output; /* implementation */\n} struct Operation1ServiceWithExt { /* fields */\n} impl Service<(Operation1Input, Extension)> for Operation1Service { type Response = Operation1Output; /* implementation */\n} // Create an operation from a handler\nlet operation_0 = Operation0::from_handler(handler); // Create an operation from a handler with extension\nlet operation_0 = Operation::from_handler(handler_with_ext); // Create an operation from a `tower::Service`\nlet operation_1_svc = Operation1Service { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Create an operation from a `tower::Service` with extension\nlet operation_1_svc = Operation1ServiceWithExtension { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Apply a layer\nlet operation_0 = operation_0.layer(/* layer */); // Use the service builder\nlet service_0 = Service0::builder() .operation_0(operation_0) .operation_1(operation_1) .build(); A toy implementation of the combined proposal is presented in this PR .","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Combined Proposal","id":"279","title":"Combined Proposal"},"28":{"body":"Smithy Type (links to design discussions) Rust Type (links to Rust documentation) blob Vec boolean bool string String byte i8 short i16 integer i32 long i64 float f32 double f64 bigInteger BigInteger (Not implemented yet) bigDecimal BigDecimal (Not implemented yet) timestamp DateTime document Document","breadcrumbs":"Smithy » Simple Shapes » Simple Shapes","id":"28","title":"Simple Shapes"},"280":{"body":"Add protocol specific routers to rust-runtime/aws-smithy-http-server. https://github.com/smithy-lang/smithy-rs/pull/1666 Add middleware primitives and error types to rust-runtime/aws-smithy-http-server. https://github.com/smithy-lang/smithy-rs/pull/1679 Add code generation which outputs new service builder. https://github.com/smithy-lang/smithy-rs/pull/1693 Deprecate OperationRegistryBuilder, OperationRegistry and Router. https://github.com/smithy-lang/smithy-rs/pull/1886 https://github.com/smithy-lang/smithy-rs/pull/2161","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Changes Checklist","id":"280","title":"Changes Checklist"},"281":{"body":"Status: Accepted Applies to: Client and Server This RFC outlines how Rust dependency versions are selected for the smithy-rs project, and strives to meet the following semi-conflicting goals: Dependencies are secure Vended libraries have dependency ranges that overlap other Rust libraries as much as possible When in conflict, the security goal takes priority over the compatibility goal.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » RFC: Dependency Versions","id":"281","title":"RFC: Dependency Versions"},"282":{"body":"The Rust crates within smithy-rs can be divided up into two categories: Library Crates: Crates that are published to crates.io with the intention that other projects will depend on them via their Cargo.toml files. This category does NOT include binaries that are published to crates.io with the intention of being installed with cargo install. Application Crates: All examples, binaries, tools, standalone tests, or other crates that are not published to crates.io with the intent of being depended on by other projects. All generated crates must be considered library crates even if they're not published since they are intended to be pulled into other Rust projects with other dependencies.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Categorization of Crates","id":"282","title":"Categorization of Crates"},"283":{"body":"The aws-smithy-http-server-python crate doesn't fit the categorization rules well since it is a runtime crate for a generated Rust application with bindings to Python. This RFC establishes this crate as an application crate since it needs to pull in application-specific dependencies such as tracing-subscriber in order to implement its full feature set.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Support crates for Applications","id":"283","title":"Support crates for Applications"},"284":{"body":"Application crates should use the latest versions of dependencies, but must use a version greater than or equal to the minimum secure version as determined by the RUSTSEC advisories database . Library crates must use the minimum secure version. This is illustrated at a high level below: graph TD S[Add Dependency] --> T{Crate Type?} T -->|Application Crate?| A[Use latest version] T -->|Library Crate?| L[Use minimum secure version]","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Dependency Version Rules","id":"284","title":"Dependency Version Rules"},"285":{"body":"If a dependency has multiple supported major versions, then the latest major version must be selected unless there is a compelling reason to do otherwise (such as the previous major version having been previously exposed in our public API). Choosing newer major versions will reduce the amount of upgrade work that needs to be done at a later date when support for the older version is inevitably dropped.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » What is a minimum secure version when there are multiple major versions?","id":"285","title":"What is a minimum secure version when there are multiple major versions?"},"286":{"body":"Some work needs to be done to establish these guidelines: Establish automation for enforcing minimum secure versions for the direct dependencies of library crates","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Changes Checklist","id":"286","title":"Changes Checklist"},"287":{"body":"Status: Implemented Applies to: Generated clients and shared rust-runtime crates This RFC proposes a pattern for writing Rust errors to provide consistent error context AND forwards/backwards compatibility. The goal is to strike a balance between these four goals: Errors are forwards compatible, and changes to errors are backwards compatible Errors are idiomatic and ergonomic. It is easy to match on them and extract additional information for cases where that's useful. The type system prevents errors from being used incorrectly (for example, incorrectly retrieving context for a different error variant) Error messages are easy to debug Errors implement best practices with Rust's Error trait (for example, implementing the optional source() function where possible) Note: This RFC is not about error backwards compatibility when it comes to error serialization/deserialization for transfer over the wire. The Smithy protocols cover that aspect.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » RFC: Error Context and Compatibility","id":"287","title":"RFC: Error Context and Compatibility"},"288":{"body":"This section examines some examples found in aws-config that illustrate different problems that this RFC will attempt to solve, and calls out what was done well, and what could be improved upon.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Past approaches in smithy-rs","id":"288","title":"Past approaches in smithy-rs"},"289":{"body":"To start, let's examine InvalidFullUriError (doc comments omitted): #[derive(Debug)]\n#[non_exhaustive]\npub enum InvalidFullUriError { #[non_exhaustive] InvalidUri(InvalidUri), #[non_exhaustive] NoDnsService, #[non_exhaustive] MissingHost, #[non_exhaustive] NotLoopback, DnsLookupFailed(io::Error),\n} impl Display for InvalidFullUriError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { InvalidFullUriError::InvalidUri(err) => write!(f, \"URI was invalid: {}\", err), InvalidFullUriError::MissingHost => write!(f, \"URI did not specify a host\"), // ... omitted ... } }\n} impl Error for InvalidFullUriError { fn source(&self) -> Option<&(dyn Error + 'static)> { match self { InvalidFullUriError::InvalidUri(err) => Some(err), InvalidFullUriError::DnsLookupFailed(err) => Some(err), _ => None, } }\n} This error does a few things well: Using #[non_exhaustive] on the enum allows new errors to be added in the future. Breaking out different error types allows for more useful error messages, potentially with error-specific context. Customers can match on these different error variants to change their program flow, although it's not immediately obvious if such use cases exist for this error. The error cause is available through the Error::source() impl for variants that have a cause. However, there are also a number of things that could be improved: All tuple/struct enum members are public, and InvalidUri is an error from the http crate. Exposing a type from another crate can potentially lock the GA SDK into a specific crate version if breaking changes are ever made to the exposed types. In this specific case, it prevents using alternate HTTP implementations that don't use the http crate. DnsLookupFailed is missing #[non_exhaustive], so new members can never be added to it. Use of enum tuples, even with #[non_exhaustive], adds friction to evolving the API since the tuple members cannot be named. Printing the source error in the Display impl leads to error repetition by reporters that examine the full source chain. The source() impl has a _ match arm, which means future implementers could forget to propagate a source when adding new error variants. The error source can be downcasted to InvalidUri type from http in customer code. This is a leaky abstraction where customers can start to rely on the underlying library the SDK uses in its implementation, and if that library is replaced/changed, it can silently break the customer's application. Note: later in the RFC, I'll demonstrate why fixing this issue is not practical.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: InvalidFullUriError","id":"289","title":"Case study: InvalidFullUriError"},"29":{"body":"Rust currently has no standard library or universally accepted large-number crate. Until one is stabilized, a string representation is a reasonable compromise: pub struct BigInteger(String);\npub struct BigDecimal(String); This will enable us to add helpers over time as requested. Users will also be able to define their own conversions into their preferred large-number libraries. As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here .","breadcrumbs":"Smithy » Simple Shapes » Big Numbers","id":"29","title":"Big Numbers"},"290":{"body":"Next, let's look at a much simpler error. The ProfileParseError is focused purely on the parsing logic for the SDK config file: #[derive(Debug, Clone)]\npub struct ProfileParseError { location: Location, message: String,\n} impl Display for ProfileParseError { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!( f, \"error parsing {} on line {}:\\n {}\", self.location.path, self.location.line_number, self.message ) }\n} impl Error for ProfileParseError {} What this error does well: The members are private, so #[non_exhaustive] isn't even necessary The error is completely opaque (maximizing compatibility) while still being debuggable thanks to the flexible messaging What could be improved: It needlessly implements Clone, which may prevent it from holding an error source in the future since errors are often not Clone. In the future, if more error variants are needed, a private inner error kind enum could be added to change messaging, but there's not a nice way to expose new variant-specific information to the customer. Programmatic access to the error Location may be desired, but this can be trivially added in the future without a breaking change by adding an accessor method.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: ProfileParseError","id":"290","title":"Case study: ProfileParseError"},"291":{"body":"The SDK currently generates errors such as the following (from S3): #[non_exhaustive]\npub enum Error { BucketAlreadyExists(BucketAlreadyExists), BucketAlreadyOwnedByYou(BucketAlreadyOwnedByYou), InvalidObjectState(InvalidObjectState), NoSuchBucket(NoSuchBucket), NoSuchKey(NoSuchKey), NoSuchUpload(NoSuchUpload), NotFound(NotFound), ObjectAlreadyInActiveTierError(ObjectAlreadyInActiveTierError), ObjectNotInActiveTierError(ObjectNotInActiveTierError), Unhandled(Box),\n} Each error variant gets its own struct, which can hold error-specific contextual information. Except for the Unhandled variant, both the error enum and the details on each variant are extensible. The Unhandled variant should move the error source into a struct so that its type can be hidden. Otherwise, the code generated errors are already aligned with the goals of this RFC.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: code generated client errors","id":"291","title":"Case study: code generated client errors"},"292":{"body":"","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Approaches from other projects","id":"292","title":"Approaches from other projects"},"293":{"body":"The standard library uses an Error struct with an accompanying ErrorKind enum for its IO error. Roughly: #[derive(Debug)]\n#[non_exhaustive]\npub enum ErrorKind { NotFound, // ... omitted ... Other,\n} #[derive(Debug)]\npub struct Error { kind: ErrorKind, source: Box,\n} What this error does well: It is extensible since the ErrorKind is non-exhaustive It has an Other error type that can be instantiated by users in unit tests, making it easier to unit test error handling What could be improved: There isn't an ergonomic way to add programmatically accessible error-specific context to this error in the future The source error can be downcasted, which could be a trap for backwards compatibility.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » std::io::Error","id":"293","title":"std::io::Error"},"294":{"body":"Hyper has outlined some problems they want to address with errors for the coming 1.0 release. To summarize: It's difficult to match on specific errors (Hyper 0.x's Error relies on is_x methods for error matching rather than enum matching). Error reporters duplicate information since the hyper 0.x errors include the display of their error sources Error::source() can leak internal dependencies","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Hyper 1.0","id":"294","title":"Hyper 1.0"},"295":{"body":"There is discussion in the errors working group about how to avoid leaking internal dependency error types through error source downcasting. One option is to create an opaque error wrapping new-type that removes the ability to downcast to the other library's error. This, however, can be circumvented via unsafe code, and also breaks the ability for error reporters to properly display the error (for example, if the error has backtrace information, that would be inaccessible to the reporter). This situation might improve if the nightly request_value/request_ref/provide functions on std::error::Error are stabilized, since then contextual information needed for including things such as a backtrace could still be retrieved through the opaque error new-type. This RFC proposes that error types from other libraries not be directly exposed in the API, but rather, be exposed indirectly through Error::source as &dyn Error + 'static. Errors should not require downcasting to be useful. Downcasting the error's source should be a last resort, and with the understanding that the type could change at a later date with no compile-time guarantees.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Opaque Error Sources","id":"295","title":"Opaque Error Sources"},"296":{"body":"Taking a customer's perspective, there are two broad categories of errors: Actionable: Errors that can/should influence program flow; where it's useful to do different work based on additional error context or error variant information Informative: Errors that inform that something went wrong, but where it's not useful to match on the error to change program flow This RFC proposes that a consistent pattern be introduced to cover these two use cases for all errors in the public API for the Rust runtime crates and generated client crates.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Proposal","id":"296","title":"Error Proposal"},"297":{"body":"Actionable errors are represented as enums. If an error variant has an error source or additional contextual information, it must use a separate context struct that is referenced via tuple in the enum. For example: // Good: new error types can be added in the future\n#[non_exhaustive]\npub enum Error { // Good: This is exhaustive and uses a tuple, but its sole member is an extensible struct with private fields VariantA(VariantA), // Bad: The fields are directly exposed and can't have accessor methods. The error // source type also can't be changed at a later date since. #[non_exhaustive] VariantB { some_additional_info: u32, source: AnotherError // AnotherError is from this crate }, // Bad: There's no way to add additional contextual information to this error in the future, even // though it is non-exhaustive. Changing it to a tuple or struct later leads to compile errors in existing // match statements. #[non_exhaustive] VariantC, // Bad: Not extensible if additional context is added later (unless that context can be added to `AnotherError`) #[non_exhaustive] VariantD(AnotherError), // Bad: Not extensible. If new context is added later (for example, a second endpoint), there's no way to name it. #[non_exhaustive] VariantE(Endpoint, AnotherError), // Bad: Exposes another library's error type in the public API, // which makes upgrading or replacing that library a breaking change #[non_exhaustive] VariantF { source: http::uri::InvalidUri }, // Bad: The error source type is public, and even though its a boxed error, it won't // be possible to change it to an opaque error type later (for example, if/when // opaque errors become practical due to standard library stabilizations). #[non_exhaustive] VariantG { source: Box, }\n} pub struct VariantA { some_field: u32, // This is private, so it's fine to reference the external library's error type source: http::uri::InvalidUri\n} impl VariantA { fn some_field(&self) -> u32 { self.some_field }\n} Error variants that contain a source must return it from the Error::source method. The source implementation should not use the catch all (_) match arm, as this makes it easy to miss adding a new error variant's source at a later date. The error Display implementation must not include the source in its output: // Good\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), Self::VariantB { some_additional_info, .. } => write!(f, \"variant b ({some_additional_info})\"), // ... and so on } }\n} // Bad\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), // Bad: includes the source in the `Display` output, which leads to duplicate error information Self::VariantB { some_additional_info, source } => write!(f, \"variant b ({some_additional_info}): {source}\"), // ... and so on } }\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Actionable error pattern","id":"297","title":"Actionable error pattern"},"298":{"body":"Informative errors must be represented as structs. If error messaging changes based on an underlying cause, then a private error kind enum can be used internally for this purpose. For example: #[derive(Debug)]\npub struct InformativeError { some_additional_info: u32, source: AnotherError,\n} impl fmt::Display for InformativeError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, \"some informative message with {}\", self.some_additional_info) }\n} impl Error for InformativeError { fn source(&self) -> Option<&(dyn Error + 'static)> { Some(&self.source) }\n} In general, informative errors should be referenced by variants in actionable errors since they cannot be converted to actionable errors at a later date without a breaking change. This is not a hard rule, however. Use your best judgement for the situation.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Informative error pattern","id":"298","title":"Informative error pattern"},"299":{"body":"In code where errors are logged rather than returned to the customer, the full error source chain must be displayed. This will be made easy by placing a DisplayErrorContext struct in aws-smithy-types that is used as a wrapper to get the better error formatting: tracing::warn!(err = %DisplayErrorContext(err), \"some message\"); This might be implemented as follows: #[derive(Debug)]\npub struct DisplayErrorContext(pub E); impl fmt::Display for DisplayErrorContext { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write_err(f, &self.0)?; // Also add a debug version of the error at the end write!(f, \" ({:?})\", self) }\n} fn write_err(f: &mut fmt::Formatter<'_>, err: &dyn Error) -> fmt::Result { write!(f, \"{}\", err)?; if let Some(source) = err.source() { write!(f, \": \")?; write_err(f, source)?; } Ok(())\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Displaying full error context","id":"299","title":"Displaying full error context"},"3":{"body":"The Rust SDK is built on Tower Middleware, Tokio & Hyper. We're continuing to iterate on the internals to enable running the AWS SDK in other executors & HTTP stacks. As an example, you can see a demo of adding reqwest as a custom HTTP stack to gain access to its HTTP Proxy support! For more details about the SDK internals see Operation Design","breadcrumbs":"Design Overview » Internals","id":"3","title":"Internals"},"30":{"body":"chrono is the current de facto library for datetime in Rust, but it is pre-1.0. DateTimes are represented by an SDK defined structure modeled on std::time::Duration from the Rust standard library. /// DateTime in time.\n///\n/// DateTime in time represented as seconds and sub-second nanos since\n/// the Unix epoch (January 1, 1970 at midnight UTC/GMT).\n///\n/// This type can be converted to/from the standard library's [`SystemTime`](std::time::SystemTime):\n/// ```rust\n/// # fn doc_fn() -> Result<(), aws_smithy_types::date_time::ConversionError> {\n/// # use aws_smithy_types::date_time::DateTime;\n/// # use std::time::SystemTime;\n/// use std::convert::TryFrom;\n///\n/// let the_millennium_as_system_time = SystemTime::try_from(DateTime::from_secs(946_713_600))?;\n/// let now_as_date_time = DateTime::from(SystemTime::now());\n/// # Ok(())\n/// # }\n/// ```\n///\n/// The [`aws-smithy-types-convert`](https://crates.io/crates/aws-smithy-types-convert) crate\n/// can be used for conversions to/from other libraries, such as\n/// [`time`](https://crates.io/crates/time) or [`chrono`](https://crates.io/crates/chrono).\n#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]\npub struct DateTime { pub(crate) seconds: i64, /// Subsecond nanos always advances the wallclock time, even for times where seconds is negative /// /// Bigger subsecond nanos => later time pub(crate) subsecond_nanos: u32,\n} Functions in the aws-smithy-types-convert crate provide conversions to other crates, such as time or chrono.","breadcrumbs":"Smithy » Simple Shapes » Timestamps","id":"30","title":"Timestamps"},"300":{"body":"Update every struct/enum that implements Error in all the non-server Rust runtime crates Hide error source type in Unhandled variant in code generated errors Remove Clone from ProfileParseError and any others that have it","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Changes Checklist","id":"300","title":"Changes Checklist"},"301":{"body":"This is a checklist meant to aid code review of new errors: The error fits either the actionable or informative pattern If the error is informative, it's clear that it will never be expanded with additional variants in the future The Display impl does not write the error source to the formatter The catch all _ match arm is not used in the Display or Error::source implementations Error types from external libraries are not exposed in the public API Error enums are #[non_exhaustive] Error enum variants that don't have a separate error context struct are #[non_exhaustive] Error context is exposed via accessors rather than by public fields Actionable errors and their context structs are in an error submodule for any given module. They are not mixed with other non-error code","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Code Review Checklist","id":"301","title":"Error Code Review Checklist"},"302":{"body":"Status: Accepted Applies to: Server RFC 20 introduced a new service builder API. It supports fine-grained configuration at multiple levels (per-handler middlewares, router middlewares, plugins) while trying to prevent some misconfiguration issues at compile-time (i.e. missing operation handlers). There is consensus that the new API is an improvement over the pre-existing OperationRegistryBuilder/OperationRegistry, which is now on its way to deprecation in one of the next releases. This RFC builds on top of RFC 20 to explore an alternative API design prior to its stabilisation. The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » RFC: Evolving the new service builder API","id":"302","title":"RFC: Evolving the new service builder API"},"303":{"body":"Type-heavy builders can lead to a poor developer experience when it comes to writing function signatures, conditional branches and clarity of error messages. This RFC provides examples for the issues we are trying to mitigate and showcases an alternative design for the service builder, cutting generic parameters from 2*(N+1) to 2, where N is the number of operations on the service. We rely on eagerly upgrading the registered handlers and operations to Route to achieve this reduction. Goals: Maximise API ergonomics, with a particular focus on the developer experience for Rust beginners. Strategy: Reduce type complexity, exposing a less generic API; Provide clearer errors when the service builder is misconfigured. Trade-offs: Reduce compile-time safety. Missing handlers will be detected at runtime instead of compile-time. Constraints: There should be no significant degradation in runtime performance (i.e. startup time for applications).","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Overview","id":"303","title":"Overview"},"304":{"body":"Let's start by reviewing the API proposed in RFC 20 . We will use the Pokemon service as our driving example throughout the RFC. This is what the startup code looks like: #[tokio::main]\npub async fn main() { // [...] let app = PokemonService::builder() .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .check_health(check_health) .build(); // Setup shared state and middlewares. let shared_state = Arc::new(State::default()); let app = app.layer(&AddExtensionLayer::new(shared_state)); // Start the [`hyper::Server`]. let bind: SocketAddr = /* */; let server = hyper::Server::bind(&bind).serve(app.into_make_service()); // [...]\n} The builder is infallible: we are able to verify at compile-time that all handlers have been provided using the typestate builder pattern .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Handling missing operations","id":"304","title":"Handling missing operations"},"305":{"body":"What happens if we stray away from the happy path? We might forget, for example, to add the check_health handler. The compiler greets us with this error: error[E0277]: the trait bound `MissingOperation: Upgradable` is not satisfied --> pokemon-service/src/bin/pokemon-service.rs:38:10 |\n38 | .build(); | ^^^^^ the trait `Upgradable` is not implemented for `MissingOperation` | = help: the following other types implement trait `Upgradable`: FailOnMissingOperation Operation The compiler complains that MissingOperation does not implement the Upgradable trait. Neither MissingOperation nor Upgradable appear in the startup code we looked at. This is likely to be the first time the developer sees those traits, assuming they haven't spent time getting familiar with aws-smithy-http-server's internals. The help section is unhelpful, if not actively misdirecting. How can the developer figure out that the issue lies with check_health? They need to inspect the generic parameters attached to Upgradable in the code label or the top-level error message - we see, among other things, a CheckHealth parameter. That is the hint they need to follow to move forward. We unfortunately do not have agency on the compiler error we just examined. Rust does not expose hooks for crate authors to tweak the errors returned when a type does not implement a trait we defined. All implementations of the typestate builder pattern accept this shortcoming in exchange for compile-time safety. Is it a good tradeoff in our case?","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Compiler errors cannot be tuned","id":"305","title":"Compiler errors cannot be tuned"},"306":{"body":"If build returns an error, the HTTP server is never launched. The application fails to start. Let's examine the cost of this runtime error along two dimensions: Impact on developer productivity; Impact on end users. We'd love for this issue to be caught on the developer machine - it provides the shortest feedback loop. The issue won't be surfaced by a cargo check or cargo build invocation, as it happens with the typestate builder approach. It should be surfaced by executing the application test suite, assuming that the developer has written at least a single integration test - e.g. a test that passes a request to the call method exposed by PokemonService or launches a full-blown instance of the application which is then probed via an HTTP client. If there are no integration tests, the issue won't be detected on the developer machine nor in CI. Nonetheless, it is unlikely to cause any end-user impact even if it manages to escape detection and reach production. The deployment will never complete if they are using a progressive rollout strategy: instances of the new version will crash as soon as they are launched, never getting a chance to mark themselves as healthy; all traffic will keep being handled by the old version, with no visible impact on end users of the application. Given the above, we think that the impact of a runtime error is low enough to be worth exploring designs that do not guarantee compile-safety for the builder API [1] .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » The cost of a runtime error","id":"306","title":"The cost of a runtime error"},"307":{"body":"Moving from a compile-time error to a runtime error does not require extensive refactoring. The definition of PokemonServiceBuilder goes from: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Op1, do_nothing: Op2, get_pokemon_species: Op3, get_server_statistics: Op4, capture_pokemon: Op5, get_storage: Op6, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} to: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} All operation fields are now Option-wrapped. We introduce a new MissingOperationsError error to hold the names of the missing operations and their respective setter methods: #[derive(Debug)]\npub struct MissingOperationsError { service_name: &'static str, operation_names2setter_methods: HashMap<&'static str, &'static str>,\n} impl Display for MissingOperationsError { /* */ }\nimpl std::error::Error for MissingOperationsError {} which is then used in build as error type (not shown here for brevity) . We can now try again to stray away from the happy path by forgetting to register a handler for the CheckHealth operation. The code compiles just fine this time, but the application fails when launched via cargo run: ERROR pokemon_service: You must specify a handler for all operations attached to the `Pokemon` service.\nWe are missing handlers for the following operations:\n- com.aws.example#CheckHealth Use the dedicated methods on `PokemonServiceBuilder` to register the missing handlers:\n- PokemonServiceBuilder::check_health The error speaks the language of the domain, Smithy's interface definition language: it mentions operations, services, handlers. Understanding the error requires no familiarity with smithy-rs' internal type machinery or advanced trait patterns in Rust. We can also provide actionable suggestions: Rust beginners should be able to easily process the information, rectify the mistake and move on quickly.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Providing clear feedback","id":"307","title":"Providing clear feedback"},"308":{"body":"Let's take a second look at the (updated) definition of PokemonServiceBuilder: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} We have 13 generic parameters: 1 for plugins (Pl); 2 for each operation (OpX and ExtsX); All those generic parameters were necessary when we were using the typestate builder pattern . They kept track of which operation handlers were missing: if any OpX was set to MissingOperation when calling build -> compilation error! Do we still need all those generic parameters if we move forward with this RFC? You might be asking yourselves: why do those generics bother us? Is there any harm in keeping them around? We'll look at the impact of those generic parameters on two scenarios: Branching in startup logic; Breaking down a monolithic startup function into multiple smaller functions.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Simplifying PokemonServiceBuilder's signature","id":"308","title":"Simplifying PokemonServiceBuilder's signature"},"309":{"body":"Conditional statements appear quite often in the startup logic for an application (or in the setup code for its integration tests). Let's consider a toy example: if a check_database flag is set to true, we want to register a different check_health handler - one that takes care of pinging the database to make sure it's up. The \"obvious\" solution would look somewhat like this: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\napp.build(); The compiler is not pleased: error[E0308]: `if` and `else` have incompatible types --> pokemon-service/src/bin/pokemon-service.rs:39:9 |\n36 | let app = if check_database { | _______________-\n37 | | app.check_health(check_health) | | ------------------------------ expected because of this\n38 | | } else {\n39 | | app.check_health(check_health_with_database) | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected fn item, found a different fn item\n40 | | }; | |_____- `if` and `else` have incompatible types | = note: expected struct `PokemonServiceBuilder impl Future {check_health}>>, _, _, _, _, _, _, _, _, _, _, _>` found struct `PokemonServiceBuilder impl Future {check_health_with_database}>>, _, _, _, _, _, _, _, _, _, _, _>` The developer must be aware of the following facts to unpack the error message: The two branches of an if/else statement need to return the same type. Each function closure has a new unique type (represented as fn(CheckHealthInput) -> impl Future {check_health} for check_health); The handler function type becomes part of the overall PokemonServiceBuilder type, a cog in the larger Op1 generic parameter used to hold the handler for the CheckHealth operation (i.e. Operation impl Future {check_health}>>); The second fact requires an intermediate understanding of Rust's closures and opaque types (impl Trait). It's quite likely to confuse Rust beginners. The developer has three options to move forward: Convert check_health and check_health_with_database into a common type that can be passed as a handler to PokemonServiceBuilder::check_health; Invoke the build method inside the two branches in order to return a \"plain\" PokemonService> from both branches. Embed the configuration parameter (check_database) in the application state, retrieve it inside check_health and perform the branching there. I can't easily see a way to accomplish 1) using the current API. Pursuing 2) is straight-forward with a single conditional: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health).build()\n} else { app.check_health(check_health_with_database).build()\n}; It becomes more cumbersome when we have more than a single conditional: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nmatch (check_database, include_cpu_statics) { (true, true) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics_with_cpu) .build(), (true, false) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics) .build(), (false, true) => app .check_health(check_health) .get_server_statistics(get_server_statistics_with_cpu()) .build(), (false, false) => app .check_health(check_health) .get_server_statistics(get_server_statistics) .build(),\n} A lot of repetition compared to the code for the \"obvious\" approach: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\nlet app = if include_cpu_statistics { app.get_server_statistics(get_server_statistics_with_cpu)\n} else { app.get_server_statistics(get_server_statistics)\n};\napp.build(); The obvious approach becomes viable if we stop embedding the handler function type in PokemonServiceBuilder's overall type.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Branching -> \"Incompatible types\"","id":"309","title":"Branching -> \"Incompatible types\""},"31":{"body":"Rust has two different String representations: String, an owned, heap allocated string. &str, a reference to a string, owned elsewhere. In ideal world, input shapes, where there is no reason for the strings to be owned would use &'a str. Outputs would likely use String. However, Smithy does not provide a distinction between input and output shapes. A third compromise could be storing Arc, an atomic reference counted pointer to a String. This may be ideal for certain advanced users, but is likely to confuse most users and produces worse ergonomics. This is an open design area where we will seek user feedback. Rusoto uses String and there has been one feature request to date to change that. Current models represent strings as String.","breadcrumbs":"Smithy » Simple Shapes » Strings","id":"31","title":"Strings"},"310":{"body":"Services with a high number of routes can lead to fairly long startup routines. Developers might be tempted to break down the startup routine into smaller functions, grouping together operations with common requirements (similar domain, same middlewares, etc.). What does the signature of those smaller functions look like? The service builder must be one of the arguments if we want to register handlers. We must also return it to allow the orchestrating function to finish the application setup (our setters take ownership of self). A first sketch: fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { /* */\n} The compiler demands to see those generic parameters in the signature: error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:27 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:53 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` We could try to nudge the compiler into inferring them: fn partial_setup( builder: PokemonServiceBuilder<_, _, _, _, _, _>,\n) -> PokemonServiceBuilder<_, _, _, _, _, _> { /* */\n} but that won't fly either: error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types --> pokemon-service/src/bin/pokemon-service.rs:30:28 |\n30 | ) -> PokemonServiceBuilder<_, _, _, _, _, _> { | ^ ^ ^ ^ ^ ^ not allowed in type signatures | | | | | | | | | | | not allowed in type signatures | | | | not allowed in type signatures | | | not allowed in type signatures | | not allowed in type signatures | not allowed in type signatures We must type it all out: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} That compiles, at last. Let's try to register an operation handler now: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder.get_server_statistics(get_server_statistics)\n} That looks innocent, but it doesn't fly: error[E0308]: mismatched types --> pokemon-service/src/bin/pokemon-service.rs:31:5 |\n28 | fn partial_setup( | --- this type parameter\n29 | builder: PokemonServiceBuilder,\n30 | ) -> PokemonServiceBuilder { | --------------------------------------------------- expected `PokemonServiceBuilder` because of return type\n31 | builder.get_server_statistics(get_server_statistics) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `Op4`, found struct `Operation` | = note: expected struct `PokemonServiceBuilder<_, _, _, Op4, _, _, _>` found struct `PokemonServiceBuilder<_, _, _, Operation>) -> impl Future {get_server_statistics}>>, _, _, _> By registering a handler we have changed the corresponding OpX generic parameter. Fixing this error requires some non-trivial type gymnastic - I gave up after trying for ~15 minutes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Refactoring into smaller functions -> Prepare for some type juggling!","id":"310","title":"Refactoring into smaller functions -> Prepare for some type juggling!"},"311":{"body":"The previous two examples should have convinced you that the 2N+1 generic parameters on PokemonServiceBuilder harm the ergonomics of our API. Can we get rid of them? Yes! Let's look at one possible approach: pub struct PokemonServiceBuilder { check_health: Option>, do_nothing: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, capture_pokemon: Option>, get_storage: Option>, plugin: Plugin,\n} We no longer store the raw handlers inside PokemonServiceBuilder. We eagerly upgrade the operation handlers to a Route instance when they are registered with the builder. impl PokemonServiceBuilder { pub fn get_pokemon_species(mut self, handler: Handler) -> Self /* Complex trait bounds */ { let route = Route::new(Operation::from_handler(handler).upgrade(&self.plugin)); self.get_pokemon_species = Some(route); self } /* other setters and methods */\n} The existing API performs the upgrade when build is called, forcing PokemonServiceBuilder to store the raw handlers and keep two generic parameters around (OpX and ExtsX) for each operation. The proposed API requires plugins to be specified upfront, when creating an instance of the builder. They cannot be modified after a PokemonServiceBuilder instance has been built: impl PokemonService<()> { /// Constructs a builder for [`PokemonService`]. pub fn builder(plugin: Plugin) -> PokemonServiceBuilder { PokemonServiceBuilder { check_health: None, do_nothing: None, get_pokemon_species: None, get_server_statistics: None, capture_pokemon: None, get_storage: None, plugin, } }\n} This constraint guarantees that all operation handlers are upgraded to a Route using the same set of plugins. Having to specify all plugins upfront is unlikely to have a negative impact on developers currently using smithy-rs. We have seen how cumbersome it is to break the startup logic into different functions using the current service builder API. Developers are most likely specifying all plugins and routes in the same function even if the current API allows them to intersperse route registrations and plugin registrations: they would simply have to re-order their registration statements to adopt the API proposed in this RFC.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Cut them down: going from 2N+1 to 2 generic parameters","id":"311","title":"Cut them down: going from 2N+1 to 2 generic parameters"},"312":{"body":"The new design prohibits the following invocation style: let plugin = ColorPlugin::new();\nPokemonService::builder(plugin) // [...] .get_pokemon_species(get_pokemon_species) // Add PrintPlugin .print() .get_storage(get_storage) .build() We could choose to remove this limitation and allow handlers to be upgraded using a different set of plugins depending on where they were registered. In the snippet above, for example, we would have: get_pokemon_species is upgraded using just the ColorPlugin; get_storage is upgraded using both the ColorPlugin and the PrintPlugin. There are no technical obstacles preventing us from implementing this API, but I believe it could easily lead to confusion and runtime surprises due to a mismatch between what the developer might expect PrintPlugin to apply to (all handlers) and what it actually applies to (handlers registered after .print()). We can provide developers with other mechanisms to register plugins for a single operation or a subset of operations without introducing ambiguity. For attaching additional plugins to a single operation, we could introduce a blanket Pluggable implementation for all operations in aws-smithy-http-server: impl Pluggable for Operation where Pl: Plugin { type Output = Operation; fn apply(self, new_plugin: Pl) -> Self::Output { new_plugin.map(self) }\n} which would allow developers to invoke op.apply(MyPlugin) or call extensions methods such as op.print() where op is an Operation. For attaching additional plugins to a subgroup of operations, instead, we could introduce nested builders: let initial_plugins = ColorPlugin;\nlet mut builder = PokemonService::builder(initial_plugins) .get_pokemon_species(get_pokemon_species);\nlet additional_plugins = PrintPlugin;\n// PrintPlugin will be applied to all handlers registered on the scoped builder returned by `scope`.\nlet nested_builder = builder.scoped(additional_plugins) .get_storage(get_storage) .capture_pokemon(capture_pokemon) // Register all the routes on the scoped builder with the parent builder. // API names are definitely provisional and bikesheddable. .attach(builder);\nlet app = builder.build(); Both proposals are outside the scope of this RFC, but they are shown here for illustrative purposes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: allow new plugins to be registered after builder creation","id":"312","title":"Alternatives: allow new plugins to be registered after builder creation"},"313":{"body":"A lot of our issues stem from type mismatch errors: we are encoding the type of our handlers into the overall type of the service builder and, as a consequence, we end up modifying that type every time we set a handler or modify its state. Type erasure is a common approach for mitigating these issues - reduce those generic parameters to a common type to avoid the mismatch errors. This whole RFC can be seen as a type erasure proposal - done eagerly, as soon as the handler is registered, using Option> as our \"common type\" after erasure. We could try to strike a different balance - i.e. avoid performing type erasure eagerly, but allow developers to erase types on demand. Based on my analysis, this could happen in two ways: We cast handlers into a Box> to which we can later apply plugins (lazy type erasure); We upgrade registered handlers to Route and apply plugins in the process (eager type erasure on-demand). Let's ignore these implementation issues for the time being to focus on what the ergonomics would look like assuming we can actually perform type erasure. In practice, we are going to assume that: In approach 1), we can call .boxed() on a registered operation and get a Box back; In approach 2), we can call .erase() on the entire service builder and convert all registered operations to Route while keeping the MissingOperation entries as they are. After erase has been called, you can no longer register plugins (or, alternatively, the plugins you register will only apply new handlers). We are going to explore both approaches under the assumption that we want to preserve compile-time verification for missing handlers. If we are willing to abandon compile-time verification, we get better ergonomics since all OpX and ExtsX generic parameters can be erased (i.e. we no longer need to worry about MissingOperation). On Box> This is the current definition of the Upgradable trait: /// Provides an interface to convert a representation of an operation to a HTTP [`Service`](tower::Service) with\n/// canonical associated types.\npub trait Upgradable { type Service: Service, Response = http::Response>; /// Performs an upgrade from a representation of an operation to a HTTP [`Service`](tower::Service). fn upgrade(self, plugin: &Plugin) -> Self::Service;\n} In order to perform type erasure, we need to determine: what type parameters we are going to pass as generic arguments to Upgradable; what type we are going to use for the associated type Service. We have: there is a single known protocol for a service, therefore we can set Protocol to its concrete type (e.g. AwsRestJson1); each handler refers to a different operation, therefore we cannot erase the Operation and the Exts parameters; both Body and Plugin appear as generic parameters on the service builder itself, therefore we can set them to the same type; we can use Route to normalize the Service associated type. The above leaves us with two unconstrained type parameters, Operation and Exts, for each operation. Those unconstrained type parameters leak into the type signature of the service builder itself. We therefore find ourselves having, again, 2N+2 type parameters. Branching Going back to the branching example: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health(check_health)\n} else { builder.check_health(check_health_with_database)\n};\nlet app = builder.build(); In approach 1), we could leverage the .boxed() method to convert the actual OpX type into a Box, thus ensuring that both branches return the same type: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder.check_health_operation(Operation::from_handler(check_health_with_database).boxed())\n};\nlet app = builder.build(); The same cannot be done when conditionally registering a route, because on the else branch we cannot convert MissingOperation into a Box since MissingOperation doesn't implement Upgradable - the pillar on which we built all our compile-time safety story. // This won't compile!\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder\n}; In approach 2), we can erase the whole builder in both branches when they both register a route: let check_database: bool = /* */;\nlet boxed_builder = if check_database { builder.check_health(check_health).erase()\n} else { builder.check_health(check_health_with_database).erase()\n};\nlet app = boxed_builder.build(); but, like in approach 1), we will still get a type mismatch error if one of the two branches leaves the route unset. Refactoring into smaller functions Developers would still have to spell out all generic parameters when writing a function that takes in a builder as a parameter: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} Writing the signature after having modified the builder becomes easier though. In approach 1), they can explicitly change the touched operation parameters to the boxed variant: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder< Op1, Op2, Op3, Box>, Op5, Op6, Body, Plugin, Body, Plugin, Exts4=Exts > { builder.get_server_statistics(get_server_statistics)\n} It becomes trickier in approach 2), since to retain compile-time safety on the builder we expect erase to map MissingOperation into MissingOperation. Therefore, we can't write something like this: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder, Route, Route, Route, Route, Route> { builder.get_server_statistics(get_server_statistics).()\n} The compiler would reject it since it can't guarantee that all other operations can be erased to a Route. This is likely to require something along the lines of: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder<::Erased, ::Erased, ::Erased, ::Erased, ::Erased, ::Erased>\nwhere // Omitting a bunch of likely needed additional generic parameters and bounds here Op1: TypeErase, Op2: TypeErase, Op3: TypeErase, Op4: TypeErase, Op5: TypeErase, Op6: TypeErase,\n{ builder.get_server_statistics(get_server_statistics).()\n} Summary Both approaches force us to have a number of generic parameters that scales linearly with the number of operations on the service, affecting the ergonomics of the resulting API in both the branching and the refactoring scenarios. We believe that the ergonomics advantages of the proposal advanced by this RFC outweigh the limitation of having to specify your plugins upfront, when creating the builder instance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: lazy and eager-on-demand type erasure","id":"313","title":"Alternatives: lazy and eager-on-demand type erasure"},"314":{"body":"The Pluggable trait was an interesting development out of RFC 20 : it allows you to attach methods to a service builder using an extension trait. /// An extension to service builders to add the `print()` function.\npub trait PrintExt: aws_smithy_http_server::plugin::Pluggable { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> Self::Output where Self: Sized, { self.apply(PrintPlugin) }\n} This pattern needs to be revisited if we want to move forward with this RFC, since new plugins cannot be registered after the builder has been instantiated. My recommendation would be to implement Pluggable for PluginStack, providing the same pattern ahead of the creation of the builder: // Currently you'd have to go for `PluginStack::new(IdentityPlugin, IdentityPlugin)`,\n// but that can be smoothed out even if this RFC isn't approved.\nlet plugin_stack = PluginStack::default() // Use the extension method .print();\nlet app = PokemonService::builder(plugin_stack) .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .build()?;","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Builder extensions: what now?","id":"314","title":"Builder extensions: what now?"},"315":{"body":"The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Playing around with the design","id":"315","title":"Playing around with the design"},"316":{"body":"Update codegen-server to generate the proposed service builder API https://github.com/smithy-lang/smithy-rs/pull/1954 Implement Pluggable for PluginStack https://github.com/smithy-lang/smithy-rs/pull/1954 Evaluate the introduction of a PluginBuilder as the primary API to compose multiple plugins (instead of PluginStack::new(IdentityPlugin, IdentityPlugin).apply(...)) https://github.com/smithy-lang/smithy-rs/pull/1971 The impact of a runtime error on developer productivity can be further minimised by encouraging adoption of integration testing; this can be achieved, among other options, by authoring guides that highlight its benefits and provide implementation guidance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Changes checklist","id":"316","title":"Changes checklist"},"317":{"body":"Status: Implemented Applies to: server For a summarized list of proposed changes, see the Changes Checklist section.","breadcrumbs":"RFCs » RFC-0024: RequestID » RFC: RequestID in business logic handlers","id":"317","title":"RFC: RequestID in business logic handlers"},"318":{"body":"RequestID : a service-wide request's unique identifier UUID : a universally unique identifier RequestID is an element that uniquely identifies a client request. RequestID is used by services to map all logs, events and specific data to a single operation. This RFC discusses whether and how smithy-rs can make that value available to customers. Services use a RequestID to collect logs related to the same request and see its flow through the various operations, help clients debug requests by sharing this value and, in some cases, use this value to perform their business logic. RequestID is unique across a service at least within a certain timeframe. This value for the purposes above must be set by the service. Having the client send the value brings the following challenges: The client could repeatedly send the same RequestID The client could send no RequestID The client could send a malformed or malicious RequestID (like in 1 and 2 ). To minimise the attack surface and provide a uniform experience to customers, servers should generate the value. However, services should be free to read the ID sent by clients in HTTP headers: it is common for services to read the request ID a client sends, record it and send it back upon success. A client may want to send the same value to multiple services. Services should still decide to have their own unique request ID per actual call. RequestIDs are not to be used by multiple services, but only within a single service.","breadcrumbs":"RFCs » RFC-0024: RequestID » Terminology","id":"318","title":"Terminology"},"319":{"body":"The proposal is to implement a RequestId type and make it available to middleware and business logic handlers, through FromParts and as a Service. To aid customers already relying on clients' request IDs, there will be two types: ClientRequestId and ServerRequestId. Implementing FromParts for Extension gives customers the ability to write their handlers: pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... ServerRequestId and ClientRequestId will be injected into the extensions by a layer. This layer can also be used to open a span that will log the request ID: subsequent logs will be in the scope of that span. ServerRequestId format: Common formats for RequestIDs are: UUID: a random string, represented in hex, of 128 bits from IETF RFC 4122: 7c038a43-e499-4162-8e70-2d4d38595930 The hash of a sequence such as date+thread+server: 734678902ea938783a7200d7b2c0b487 A verbose description: current_ms+hostname+increasing_id For privacy reasons, any format that provides service details should be avoided. A random string is preferred. The proposed format is to use UUID, version 4. A Service that inserts a RequestId in the extensions will be implemented as follows: impl Service> for ServerRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { req.extensions_mut().insert(ServerRequestId::new()); self.inner.call(req) }\n} For client request IDs, the process will be, in order: If a header is found matching one of the possible ones, use it Otherwise, None Option is used to distinguish whether a client had provided an ID or not. impl Service> for ClientRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { for possible_header in self.possible_headers { if let Some(id) = req.headers.get(possible_header) { req.extensions_mut().insert(Some(ClientRequestId::new(id))); return self.inner.call(req) } } req.extensions_mut().insert(None); self.inner.call(req) }\n} The string representation of a generated ID will be valid for this regex: For ServerRequestId: /^[A-Za-z0-9_-]{,48}$/ For ClientRequestId: see the spec Although the generated ID is opaque, this will give guarantees to customers as to what they can expect, if the server ID is ever updated to a different format.","breadcrumbs":"RFCs » RFC-0024: RequestID » The user experience if this RFC is implemented","id":"319","title":"The user experience if this RFC is implemented"},"32":{"body":"Smithy defines the concept of \"Document Types\": [Documents represent] protocol-agnostic open content that is accessed like JSON data. Open content is useful for modeling unstructured data that has no schema, data that can't be modeled using rigid types, or data that has a schema that evolves outside of the purview of a model. The serialization format of a document is an implementation detail of a protocol and MUST NOT have any effect on the types exposed by tooling to represent a document value. Individual protocols define their own document serialization behavior, with some protocols such as AWS and EC2 Query not supporting document types.","breadcrumbs":"Smithy » Simple Shapes » Document Types","id":"32","title":"Document Types"},"320":{"body":"Implement ServerRequestId: a new() function that generates a UUID, with Display, Debug and ToStr implementations Implement ClientRequestId: new() that wraps a string (the header value) and the header in which the value could be found, with Display, Debug and ToStr implementations Implement FromParts for Extension Implement FromParts for Extension","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes checklist","id":"320","title":"Changes checklist"},"321":{"body":"This RFC has been changed to only implement ServerRequestId.","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes since the RFC has been approved","id":"321","title":"Changes since the RFC has been approved"},"322":{"body":"Status: Implemented. See the description of the PR that laid the foundation for the implementation of constraint traits for a complete reference. See the Better Constraint Violations RFC too for subsequent improvements to this design. See the uber tracking issue for pending work. Constraint traits are used to constrain the values that can be provided for a shape. For example, given the following Smithy model, @length(min: 18)\nInteger Age the integer Age must take values greater than or equal to 18. Constraint traits are most useful when enforced as part of input model validation to a service. When a server receives a request whose contents deserialize to input data that violates the modeled constraints, the operation execution's preconditions are not met, and as such rejecting the request without executing the operation is expected behavior. Constraint traits can also be applied to operation output member shapes, but the expectation is that service implementations not fail to render a response when an output value does not meet the specified constraints. From awslabs/smithy#1039 : This might seem counterintuitive, but our philosophy is that a change in server-side state should not be hidden from the caller unless absolutely necessary. Refusing to service an invalid request should always prevent server-side state changes, but refusing to send a response will not, as there's generally no reasonable route for a server implementation to unwind state changes due to a response serialization failure. In general , clients should not enforce constraint traits in generated code. Clients must also never enforce constraint traits when sending requests. This is because: addition and removal of constraint traits are backwards-compatible from a client's perspective (although this is not documented anywhere in the Smithy specification), the client may have been generated with an older version of the model; and the most recent model version might have lifted some constraints. On the other hand, server SDKs constitute the source of truth for the service's behavior, so they interpret the model in all its strictness. The Smithy spec defines 8 constraint traits: enum , idRef , length , pattern , private , range , required ; and uniqueItems . The idRef and private traits are enforced at SDK generation time by the awslabs/smithy libraries and bear no relation to generated Rust code. The only constraint trait enforcement that is generated by smithy-rs clients should be and is the enum trait, which renders Rust enums. The required trait is already and only enforced by smithy-rs servers since #1148 . That leaves 4 traits: length, pattern, range, and uniqueItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » RFC: Constraint traits","id":"322","title":"RFC: Constraint traits"},"323":{"body":"This section addresses how to implement and enforce the length, pattern, range, and uniqueItems traits. We will use the length trait applied to a string shape as a running example. The implementation of this trait mostly carries over to the other three.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Implementation","id":"323","title":"Implementation"},"324":{"body":"Consider the following Smithy model: @length(min: 1, max: 69)\nstring NiceString The central idea to the implementation of constraint traits is: parse, don't validate . Instead of code-generating a Rust String to represent NiceString values and perform the validation at request deserialization, we can leverage Rust's type system to guarantee domain invariants . We can generate a wrapper tuple struct that parses the string's value and is \"tight\" in the set of values it can accept: pub struct NiceString(String); impl TryFrom for NiceString { type Error = nice_string::ConstraintViolation; fn try_from(value: String) -> Result { let num_code_points = value.chars().count(); if 1 <= num_code_points && num_code_points <= 69 { Ok(Self(value)) } else { Err(nice_string::ConstraintViolation::Length(num_code_points)) } }\n} (Note that we're using the linear time check chars().count() instead of len() on the input value, since the Smithy specification says the length trait counts the number of Unicode code points when applied to string shapes .) The goal is to enforce, at the type-system level, that these constrained structs always hold valid data. It should be impossible for the service implementer, without resorting to unsafe Rust, to construct a NiceString that violates the model. The actual check is performed in the implementation of TryFrom for the generated struct, which makes it convenient to use the ? operator for error propagation . Each constrained struct will have a related std::error::Error enum type to signal the first parsing failure, with one enum variant per applied constraint trait: pub mod nice_string { pub enum ConstraintViolation { /// Validation error holding the number of Unicode code points found, when a value between `1` and /// `69` (inclusive) was expected. Length(usize), } impl std::error::Error for ConstraintViolation {}\n} std::error::Error requires Display and Debug . We will #[derive(Debug)], unless the shape also has the sensitive trait , in which case we will just print the name of the struct: impl std::fmt::Debug for ConstraintViolation { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"ConstraintViolation\"); formatter.finish() }\n} Display is used to produce human-friendlier representations. Its implementation might be called when formatting a 400 HTTP response message in certain protocols, for example.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Example implementation for the length trait","id":"324","title":"Example implementation for the length trait"},"325":{"body":"We will continue to deserialize the different parts of the HTTP message into the regular Rust standard library types. However, just before the deserialization function returns, we will convert the type into the wrapper tuple struct that will eventually be handed over to the operation handler. This is what we're already doing when deserializing strings into enums. For example, given the Smithy model: @enum([ { name: \"Spanish\", value: \"es\" }, { name: \"English\", value: \"en\" }, { name: \"Japanese\", value: \"jp\" },\n])\nstring Language the code the client generates when deserializing a string from a JSON document into the Language enum is (excerpt): ...\nmatch key.to_unescaped()?.as_ref() { \"language\" => { builder = builder.set_language( aws_smithy_json::deserialize::token::expect_string_or_null( tokens.next(), )? .map(|s| { s.to_unescaped() .map(|u| crate::model::Language::from(u.as_ref())) }) .transpose()?, ); } _ => aws_smithy_json::deserialize::token::skip_value(tokens)?,\n}\n... Note how the String gets converted to the enum via Language::from(). impl std::convert::From<&str> for Language { fn from(s: &str) -> Self { match s { \"es\" => Language::Spanish, \"en\" => Language::English, \"jp\" => Language::Japanese, other => Language::Unknown(other.to_owned()), } }\n} For constrained shapes we would do the same to parse the inner deserialized value into the wrapper tuple struct, except for these differences: For enums, the client generates an Unknown variant that \"contains new variants that have been added since this code was generated\". The server does not need such a variant ( #1187 ). Conversions into the tuple struct are fallible (try_from() instead of from()). These errors will result in a my_struct::ConstraintViolation.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Request deserialization","id":"325","title":"Request deserialization"},"326":{"body":"We will enforce the length constraint by calling len() on Rust's Vec (list and set shapes), HashMap (map shapes) and our aws_smithy_types::Blob (bytes shapes). We will enforce the length constraint trait on String (string shapes) by calling .chars().count().","breadcrumbs":"RFCs » RFC-0025: Constraint traits » length trait","id":"326","title":"length trait"},"327":{"body":"The pattern trait restricts string shape values to a specified regular expression. We will implement this by using the regex's crate is_match . We will use once_cell to compile the regex only the first time it is required.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » pattern trait","id":"327","title":"pattern trait"},"328":{"body":"The uniqueItems trait indicates that the items in a List MUST be unique. If the list shape is sparse, more than one null value violates this constraint. We will enforce this by copying references to the Vec's elements into a HashSet and checking that the sizes of both containers coincide.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » uniqueItems trait","id":"328","title":"uniqueItems trait"},"329":{"body":"From the spec : Some constraints can be applied to shapes as well as structure members. If a constraint of the same type is applied to a structure member and the shape that the member targets, the trait applied to the member takes precedence. structure ShoppingCart { @range(min: 7, max:12) numberOfItems: PositiveInteger\n} @range(min: 1)\ninteger PositiveInteger In the above example, the range trait applied to numberOfItems takes precedence over the one applied to PositiveInteger. The resolved minimum will be 7, and the maximum 12. When the constraint trait is applied to a member shape, the tuple struct's name will be the PascalCased name of the member shape, NumberOfItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Trait precedence and naming of the tuple struct","id":"329","title":"Trait precedence and naming of the tuple struct"},"33":{"body":"Note: Throughout this document, the word \"box\" always refers to a Rust Box , a heap allocated pointer to T, and not the Smithy concept of boxed vs. unboxed. Recursive shapes pose a problem for Rust, because the following Rust code will not compile: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Option\n} |\n3 | struct TopStructure { | ^^^^^^^^^^^^^^^^^^^ recursive type has infinite size\n4 | intermediate: IntermediateStructure | ----------------------------------- recursive without indirection | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `main::TopStructure` representable This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt To support this, as the message suggests, we must \"Box\" the offending type. There is a touch of trickiness—only one element in the cycle needs to be boxed, but we need to select it deterministically such that we always pick the same element between multiple codegen runs. To do this the Rust SDK will: Topologically sort the graph of shapes. Identify cycles that do not pass through an existing Box, List, Set, or Map For each cycle, select the earliest shape alphabetically & mark it as Box in the Smithy model by attaching the custom RustBoxTrait to the member. Go back to step 1. This would produce valid Rust: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Box>\n} Backwards Compatibility Note! Box is not generally compatible with T in Rust. There are several unlikely but valid model changes that will cause the SDK to produce code that may break customers. If these are problematic, all are avoidable with customizations. A recursive link is added to an existing structure. This causes a member that was not boxed before to become Box. Workaround : Mark the new member as Box in a customization. A field is removed from a structure that removes the recursive dependency. The SDK would generate T instead of Box. Workaround : Mark the member that used to be boxed as Box in a customization. The Box will be unnecessary, but we will keep it for backwards compatibility.","breadcrumbs":"Smithy » Recursive Shapes » Recursive Shapes","id":"33","title":"Recursive Shapes"},"330":{"body":"Should we code-generate unsigned integer types (u16, u32, u64) when the range trait is applied with min set to a value greater than or equal to 0? A user has even suggested to use the std::num::NonZeroUX types (e.g. NonZeroU64 ) when range is applied with min set to a value greater than 0. UPDATE: This requires further design work. There are interoperability concerns: for example, the positive range of a u32 is strictly greater than that of an i32, so clients wouldn't be able to receive values within the non-overlapping range. In request deserialization, should we fail with the first violation and immediately render a response, or attempt to parse the entire request and provide a complete and structured report? UPDATE: We will provide a response containing all violations. See the \"Collecting Constraint Violations\" section in the Better Constraint Violations RFC. Should we provide a mechanism for the service implementer to construct a Rust type violating the modeled constraints in their business logic e.g. a T::new_unchecked() constructor? This could be useful (1) when the user knows the provided inner value does not violate the constraints and doesn't want to incur the performance penalty of the check; (2) when the struct is in a transient invalid state. However: (2) is arguably a modelling mistake and a separate struct to represent the transient state would be a better approach, the user could use unsafe Rust to bypass the validation; and adding this constructor is a backwards-compatible change, so it can always be added later if this feature is requested. UPDATE: We decided to punt on this until users express interest.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Unresolved questions","id":"330","title":"Unresolved questions"},"331":{"body":"An alternative design with less public API surface would be to perform constraint validation at request deserialization, but hand over a regular \"loose\" type (e.g. String instead of NiceString) that allows for values violating the constraints. If we were to implement this approach, we can implement it by wrapping the incoming value in the aforementioned tuple struct to perform the validation, and immediately unwrap it. Comparative advantages: Validation remains an internal detail of the framework. If the semantics of a constraint trait change, the behavior of the service is still backwards-incompatibly affected, but user code is not. Less \"invasive\". Baking validation in the generated type might be deemed as the service framework overreaching responsibilities. Comparative disadvantages: It becomes possible to send responses with invalid operation outputs. All the service framework could do is log the validation errors. Baking validation at the type-system level gets rid of an entire class of logic errors. Less idiomatic (this is subjective). The pattern of wrapping a more primitive type to guarantee domain invariants is widespread in the Rust ecosystem. The standard library makes use of it extensively. Note that both designs are backwards incompatible in the sense that you can't migrate from one to the other without breaking user code. UPDATE: We ended up implementing both designs, adding a flag to opt into the alternative design. Refer to the mentions of the publicConstrainedTypes flag in the description of the Builders of builders PR .","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Alternative design","id":"331","title":"Alternative design"},"332":{"body":"Status: Implemented Applies to: clients (and may impact servers due to shared codegen) This RFC proposes changing the organization structure of the generated client crates to: Make discovery in the crate documentation easier. Facilitate re-exporting types from runtime crates in related modules without name collisions. Facilitate feature gating operations for faster compile times in the future.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » RFC: Client Crate Organization","id":"332","title":"RFC: Client Crate Organization"},"333":{"body":"Previously, crates were organized as such: .\n├── client\n| ├── fluent_builders\n| | └── \n| ├── Builder (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| └── Sleep (*)\n├── error\n| ├── \n| ├── \n| ├── \n| └── \n├── http_body_checksum (empty)\n├── input\n| ├── \n| └── \n├── lens (empty)\n├── middleware\n| └── DefaultMiddleware\n├── model\n| ├── \n| └── \n├── operation\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | ├── RetryKind (*)\n| └── \n├── output\n| ├── \n| └── \n├── paginator\n| ├── \n| └── \n├── presigning\n| ├── config\n| | ├── Builder\n| | ├── Error\n| | └── PresigningConfig\n| └── request\n| └── PresignedRequest\n├── types\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| ├── DateTime (*)\n| └── SdkError (*)\n├── AppName (*)\n├── Client\n├── Config\n├── Credentials (*)\n├── Endpoint (*)\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region (*) (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Previous Organization","id":"333","title":"Previous Organization"},"334":{"body":"This RFC proposes reorganizing types by operation first and foremost, and then rearranging other pieces to reduce codegen collision risk.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Proposed Changes","id":"334","title":"Proposed Changes"},"335":{"body":"Builders (distinct from fluent builders) are generated alongside all inputs, outputs, models, and errors. They all follow the same overall pattern (where shapeType is Input, Output, or empty for models/errors): .\n└── module ├── └── This results in large lists of modules that all have exactly one item in them, which makes browsing the documentation difficult, and introduces the possibility of name collisions when re-exporting modules from the runtime crates. Builders should adopt a prefix and go into a single builders module, similar to how the fluent builders currently work: .\n├── module\n| └── builders\n| └── \n└──---- ","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Establish a pattern for builder organization","id":"335","title":"Establish a pattern for builder organization"},"336":{"body":"All code generated for an operation that isn't shared between operations will go into operation-specific modules. This includes inputs, outputs, errors, parsers, and paginators. Types shared across operations will remain in another module (discussed below), and serialization/deserialization logic for those common types will also reside in that common location for now. If operation feature gating occurs in the future, further optimization can be done to track which of these are used by feature, or they can be reorganized (this would be discussed in a future RFC and is out of scope here). With code generated operations living in crate::operation, there is a high chance of name collision with the customize module. To resolve this, customize will be moved into crate::client. The new crate::operation module will look as follows: .\n└── operation └── ├── paginator | ├── `${operation}Paginator` | └── `${operation}PaginatorItems` ├── builders | ├── `${operation}FluentBuilder` | ├── `${operation}InputBuilder` | └── `${operation}OutputBuilder` ├── `${operation}Error` ├── `${operation}Input` ├── `${operation}Output` └── `${operation}Parser` (private/doc hidden)","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Organize code generated types by operation","id":"336","title":"Organize code generated types by operation"},"337":{"body":"The crate root should only host the most frequently used types, or phrased differently, the types that are critical to making a service call with default configuration, or that are required for the most frequent config changes (such as setting credentials, or changing the region/endpoint). Previously, the following were exported in root: .\n├── AppName\n├── Client\n├── Config\n├── Credentials\n├── Endpoint\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region The AppName is infrequently set, and will be moved into crate::config. Customers are encouraged to use aws-config crate to resolve credentials, region, and endpoint. Thus, these types no longer need to be at the top-level, and will be moved into crate::config. ErrorExt will be moved into crate::error, but Error will stay in the crate root so that customers that alias the SDK crate can easily reference it in their Results: use aws_sdk_s3 as s3; fn some_function(/* ... */) -> Result<(), s3::Error> { /* ... */\n} The PKG_VERSION should move into a new meta module, which can also include other values in the future such as the SHA-256 hash of the model used to produce the crate, or the version of smithy-rs that generated it.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Reorganize the crate root","id":"337","title":"Reorganize the crate root"},"338":{"body":"Previously, the Smithy Client builder was re-exported alongside the SDK fluent Client so that non-SDK clients could easily customize the underlying Smithy client by using the fluent client's Client::with_config function or From> trait implementation. This makes sense for non-SDK clients where customization of the connector and middleware types is supported generically, but less sense for SDKs since the SDK clients are hardcoded to use DynConnector and DynMiddleware. Thus, the Smithy client Builder should not be re-exported for SDKs.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Conditionally remove Builder from crate::client","id":"338","title":"Conditionally remove Builder from crate::client"},"339":{"body":"Previously, crate::types held re-exported types from aws-smithy-types that are used by code generated structs/enums. This module will be renamed to crate::primitives so that the name types can be repurposed in the next section.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Create a primitives module","id":"339","title":"Create a primitives module"},"34":{"body":"Smithy Type Rust Type List Vec Set Vec Map HashMap Structure struct Union enum Most generated types are controlled by SymbolVisitor .","breadcrumbs":"Smithy » Aggregate Shapes » Aggregate Shapes","id":"34","title":"Aggregate Shapes"},"340":{"body":"The name model is meaningless outside the context of code generation (although there is precedent since both the Java V2 and Kotlin SDKs use the term). Previously, this module held all the generated structs/enums that are referenced by inputs, outputs, and errors. This RFC proposes that this module be renamed to types, and that all code generated types for shapes that are reused between operations (basically anything that is not an input, output, or error) be moved here. This would look as follows: .\n└── types ├── error | ├── builders | | └── | └── ├── builders | └── └── Customers using the fluent builder should be able to just use ${crate}::types::*; to immediately get access to all the shared types needed by the operations they are calling. Additionally, moving the top-level code generated error types into crate::types will eliminate a name collision issue in the crate::error module.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the types module","id":"340","title":"Repurpose the types module"},"341":{"body":"The error module is significantly smaller after all the code generated error types are moved out of it. This top-level module is now available for re-exports and utilities. The following will be re-exported in crate::error: aws_smithy_http::result::SdkError aws_smithy_types::error::display::DisplayErrorContext For crates that have an ErrorExt, it will also be moved into crate::error.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the original crate::error module","id":"341","title":"Repurpose the original crate::error module"},"342":{"body":"The crate::presigning module only has four members, so it should be flattened from: .\n└── presigning ├── config | ├── Builder | ├── Error | └── PresigningConfig └── request └── PresignedRequest to: .\n└── presigning ├── PresigningConfigBuilder ├── PresigningConfigError ├── PresigningConfig └── PresignedRequest At the same time, Builder and Error will be renamed to PresigningConfigBuilder and PresigningConfigError respectively since these will rarely be referred to directly (preferring PresigningConfig::builder() instead; the error will almost always be unwrapped).","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Flatten the presigning module","id":"342","title":"Flatten the presigning module"},"343":{"body":"The lens and http_body_checksum modules have nothing inside them, and their documentation descriptions are not useful to customers: lens: Generated accessors for nested fields http_body_checksum: Functions for modifying requests and responses for the purposes of checksum validation These modules hold private functions that are used by other generated code, and should just be made private or #[doc(hidden)] if necessary.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Remove the empty modules","id":"343","title":"Remove the empty modules"},"344":{"body":"All combined, the following is the new publicly visible organization: .\n├── client\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | └── RetryKind (*)\n| ├── Builder (only in non-SDK crates) (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AppName (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| ├── Credentials (*)\n| ├── Endpoint (*)\n| ├── Region (*)\n| └── Sleep (*)\n├── error\n| ├── DisplayErrorContext (*)\n| ├── ErrorExt (for some services)\n| └── SdkError (*)\n├── meta\n| └── PKG_VERSION\n├── middleware\n| └── DefaultMiddleware\n├── operation\n| └── \n| ├── paginator\n| | ├── `${operation}Paginator`\n| | └── `${operation}PaginatorItems`\n| ├── builders\n| | ├── `${operation}FluentBuilder`\n| | ├── `${operation}InputBuilder`\n| | └── `${operation}OutputBuilder`\n| ├── `${operation}Error`\n| ├── `${operation}Input`\n| ├── `${operation}Output`\n| └── `${operation}Parser` (private/doc hidden)\n├── presigning\n| ├── PresigningConfigBuilder\n| ├── PresigningConfigError\n| ├── PresigningConfig\n| └── PresignedRequest\n├── primitives\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| └── DateTime (*)\n├── types\n| ├── error\n| | ├── builders\n| | | └── \n| | └── \n| ├── builders\n| | └── \n| └── \n├── Client\n├── Config\n└── Error (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » New Organization","id":"344","title":"New Organization"},"345":{"body":"Move crate::AppName into crate::config Move crate::PKG_VERSION into a new crate::meta module Move crate::Endpoint into crate::config Move crate::Credentials into crate::config Move crate::Region into crate::config Move crate::operation::customize into crate::client Finish refactor to decouple client/server modules Organize code generated types by operation Reorganize builders Rename crate::types to crate::primitives Rename crate::model to crate::types Move crate::error into crate::types Only re-export aws_smithy_client::client::Builder for non-SDK clients (remove from SDK clients) Move crate::ErrorExt into crate::error Re-export aws_smithy_types::error::display::DisplayErrorContext and aws_smithy_http::result::SdkError in crate::error Move crate::paginator into crate::operation Flatten crate::presigning Hide or remove crate::lens and crate::http_body_checksum Move fluent builders into crate::operation::x::builders Remove/hide operation ParseResponse implementations in crate::operation Update \"Crate Organization\" top-level section in generated crate docs Update all module docs Break up modules/files so that they're not 30k lines of code models/types; each struct/enum should probably get its own file with pub-use models/types::builders: now this needs to get split up client.rs Fix examples Write changelog","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Changes Checklist","id":"345","title":"Changes Checklist"},"346":{"body":"Status: RFC For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how the Rust SDK will integrate with the next generation of endpoint resolution logic (Endpoints 2.0). Endpoints 2.0 defines a rules language for resolving endpoints. The Rust SDK will code-generate Rust code from this intermediate language and use this to create service-specific endpoint resolvers. Endpoints 2.0 will be a core feature and be available for generic clients as well as the AWS SDK.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » RFC: Endpoints 2.0","id":"346","title":"RFC: Endpoints 2.0"},"347":{"body":"Generic client : In reference to features/code that is not AWS specific and is supported for all Smithy clients. Rules language : A JSON-based rules language used to resolve endpoints Smithy Endpoint : An endpoint, as returned from the rules-language. This contains a URI, headers, and configuration map of String -> Document (properties). This must undergo another level of transformation before it can be used as an AwsEndpoint. AWS Endpoint : An endpoint with explicit signing configuration applied. AWS Endpoints need to contain region & service metadata to control signing. Middleware : A transformation applied to a request, prior to request dispatch Endpoint Parameters : A code-generated structure for each service which contains service-specific (and general) endpoint parameters.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Terminology","id":"347","title":"Terminology"},"348":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The user experience if this RFC is implemented","id":"348","title":"The user experience if this RFC is implemented"},"349":{"body":"SDKs will generate a new, public, endpoint module. The module will contain a Params structure and a DefaultResolver . Supporting these modules, a private endpoints_impl module will be generated. Why generate two modules ? Generating two separate modules, endpoint and endpoint_impl ensures that we don't have namespace collisions between hand-written and generated code. SDK middleware will be updated to use the new smithy_types::Endpoint . During request construction in make_operation, a smithy endpoint will be inserted into the property bag. The endpoint middleware will be updated to extract the Smithy endpoint from the property bag and set the request endpoint & signing information accordingly (see: Converting to AWS Endpoint . The following flow chart traces the endpoints 2.0 influence on a request via the green boxes. flowchart TD globalConfig(\"SDK global configuration (e.g. region provider, UseFIPS, etc.)\") serviceConfig(\"Modeled, service specific configuration information (clientContextParams)\") operationConfig(\"Operation-specific configuration (S3 Bucket, accountId, etc.)\") getObject[\"S3::GetObject\"] params[\"Create endpoint parameters\"] evaluate[\"Evaluate ruleset\"] rules[\"Generated Endpoint Ruleset for S3\"] middleware[\"Apply endpoint & properties to request via endpoint middleware\"] style getObject fill:green,stroke:#333,stroke-width:4px style params fill:green,stroke:#333,stroke-width:4px style evaluate fill:green,stroke:#333,stroke-width:4px style middleware fill:green,stroke:#333,stroke-width:4px getObject ==> params globalConfig ---> params operationConfig --> params serviceConfig ---> params rules --> evaluate params --> evaluate evaluate --> middleware","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overview","id":"349","title":"Overview"},"35":{"body":"List objects in Smithy are transformed into vectors in Rust. Based on the output of the NullableIndex , the generated list may be Vec or Vec>.","breadcrumbs":"Smithy » Aggregate Shapes » List","id":"35","title":"List"},"350":{"body":"In the general case, users will not be impacted by Endpoints 2.0 with one exception: today, users can provide a global endpoint provider that can override different services. There is a single ResolveAwsEndpoint trait that is shared across all services. However, this isn't the case for Endpoints 2.0 where the trait actually has a generic parameter: pub trait ResolveEndpoint: Send + Sync { fn resolve_endpoint(&self, params: &T) -> Result;\n} The trait itself would then be parameterized by service-specific endpoint parameter, eg: aws_sdk_s3::endpoint::Params. The endpoint parameters we would use for S3 (e.g. including Bucket) are different from the endpoint parameters we might use for a service like DynamoDB which, today, doesn't have any custom endpoint behavior. Going forward we will to provide two different avenues for customers to customize endpoints: Configuration driven URL override. This mechanism hasn't been specified, but suppose that the Rust SDK supported an SDK_ENDPOINT environment variable. This variable would be an input to the existing endpoint resolver. machinery and would be backwards compatible with other SDKs (e.g. by prefixing the bucket as a host label for S3). Wholesale endpoint resolver override. In this case, customers would gain access to all endpoint parameters and be able to write their own resolver. This RFC proposes making the following changes: For the current global ability to override an endpoint, instead of accepting an AwsEndpoint, accept a URI. This will simplify the interface for most customers who don't actually need logic-driven endpoint construction. The Endpoint that can be set will be passed in as the SDK::Endpoint built-in. This will be renamed to endpoint_url for clarity. All AWS services MUST accept the SDK::Endpoint built-in. For complex, service-specific behavior, customers will be able to provide a service specific endpoint resolver at client construction time. This resolver will be parameterized with the service-specific parameters type, ( eg. aws_sdk_s3::endpoint::Params). Finally, customers will be able to access the default_resolver() for AWS services directly. This will enable them to utilize the default S3 endpoint resolver in their resolver implementation. Example: overriding the endpoint URI globally async fn main() { let sdk_conf = aws_config::from_env().endpoint_url(\"http://localhost:8123\").load().await; let dynamo = aws_sdk_dynamodb::Client::new(&sdk_conf); // snip ...\n} Example: overriding the endpoint resolver for a service /// Resolve to Localhost when an environment variable is set\nstruct CustomDdbResolver; impl ResolveEndpoint for CustomDdbResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // custom resolver to redirect to DDB local if a flag is set let base_endpoint = aws_sdk_dynamodb::endpoint::default_resolver().resolve_endpoint(params).expect(\"valid endpoint should be resolved\"); if env::var(\"LOCAL\") == Ok(\"true\") { // update the URI on the returned endpoint to localhost while preserving the other properties Ok(base_endpoint.builder().uri(\"http://localhost:8888\").build()) } else { Ok(base_endpoint) } }\n} async fn main() { let conf = aws_config::load_from_env().await; let ddb_conf = aws_sdk_dynamodb::config::Builder::from(&conf).endpoint_resolver(CustomDdbResolver); let dynamodb = aws_sdk_dynamodb::Client::from_conf(ddb_conf);\n} Note: for generic clients, they cannot use endpoint_url—this is because endpoint_url is dependent on rules and generic clients do not necessarily rules. However, they can use the impl ResolveEndpoint for &'static str { ... } implementation. What about alternative S3 implementations? How do we say \"don't put prefix bucket on this?\" For cases where users want to use the provided URL directly with no modification users will need to rely on service specific configuration, like forcing path style addressing for S3. Alternative Design : Context Aware Endpoint Trait Optional addition : We could add an additional EndpointResolver parameter to SdkConfig that exposed a global trait where Params is &dyn Any similar to Context Aware Endpoint Trait . If these were both set, a runtime panic would alert users to the misconfiguration.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overriding Endpoints","id":"350","title":"Overriding Endpoints"},"351":{"body":"The new endpoint resolution trait and Endpoint struct will be available for generic clients. AWS endpoint middleware will pull the Endpoint out of the property bag and read the properties to determine auth/signing + any other AWS metadata that may be required. An example of the Endpoint struct is below. This struct will be in aws-smithy-types, however, it should initially be gated with documentation warning about stability. The Endpoint Struct // module: `aws_smithy_types::endpoint`\n// potential optimization to reduce / remove allocations for keys which are almost always static\n// this can also just be `String`\ntype MaybeStatic = Cow<'static, T>; /// Endpoint\n#[derive(Debug, PartialEq)]\npub struct Endpoint { // Note that this allows `Endpoint` to contain an invalid URI. During conversion to an actual endpoint, the // the middleware can fail, returning a `ConstructionFailure` to the user url: MaybeStatic, headers: HashMap, Vec>>, properties: HashMap, aws_smithy_types::Document>,\n} // not shown:\n// - impl block with standard accessors\n// - builder, designed to be invoked / used by generated code What's an Endpoint property? Endpoint properties, on their own, have no intrinsic meaning. Endpoint properties have established conventions for AWS SDKs. Other Smithy implementors may choose a different pattern. For AWS SDKs, the authSchemes key is an ordered list of authentication/signing schemes supported by the Endpoint that the SDK should use. To perform produce an Endpoint struct we have a generic ResolveEndpoint trait which will be both generic in terms of parameters and being \"smithy-generic: // module: `smithy_types::endpoint` or `aws_smithy_client`??\npub trait ResolveEndpoint: Send + Sync { /// Resolves an `Endpoint` for `Params` fn resolve_endpoint(&self, params: &Params) -> Result;\n} All Smithy services that have the @endpointRuleSet trait applied to the service shape will code generate a default endpoint resolver implementation. The default endpoint resolver MUST be public, so that customers can delegate to it if they wish to override the endpoint resolver.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » New Endpoint Traits","id":"351","title":"New Endpoint Traits"},"352":{"body":"We've mentioned \"service specific endpoint parameters\" a few times. In Endpoints 2.0, we will code generate Endpoint Parameters for every service based on their rules. Note : the endpoint parameters themselves are generated solely from the ruleset. The Smithy model provides additional information about parameter binding, but that only influences how the parameters are set, not how they are generated. Example Params struct for S3: #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\n/// Configuration parameters for resolving the correct endpoint\npub struct Params { pub(crate) bucket: std::option::Option, pub(crate) region: std::option::Option, pub(crate) use_fips: bool, pub(crate) use_dual_stack: bool, pub(crate) endpoint: std::option::Option, pub(crate) force_path_style: std::option::Option, pub(crate) accelerate: bool, pub(crate) disable_access_points: std::option::Option, pub(crate) disable_mrap: std::option::Option,\n} impl Params { /// Create a builder for [`Params`] pub fn builder() -> crate::endpoint_resolver::Builder { crate::endpoint_resolver::Builder::default() } /// Gets the value for bucket pub fn bucket(&self) -> std::option::Option<&str> { self.bucket.as_deref() } /// Gets the value for region pub fn region(&self) -> std::option::Option<&str> { self.region.as_deref() } /// Gets the value for use_fips pub fn use_fips(&self) -> std::option::Option { Some(self.use_fips) } /// Gets the value for use_dual_stack pub fn use_dual_stack(&self) -> std::option::Option { Some(self.use_dual_stack) } // ... more accessors\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Endpoint Params","id":"352","title":"Endpoint Params"},"353":{"body":"When an endpoint ruleset is present, Smithy will code generate an endpoint resolver from that ruleset. The endpoint resolver MUST be a struct so that it can store/cache computations (such as a partition resolver that has compiled regexes). pub struct DefaultEndpointResolver { partition_resolver: PartitionResolver\n} impl ResolveEndpoint for DefaultEndpointResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // delegate to private impl crate::endpoints_impl::resolve_endpoint(params) }\n} DefaultEndpointResolver MUST be publicly accessible and offer both a default constructor and the ability to configure resolution behavior (e.g. by supporting adding additional partitions.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The default endpoint resolver","id":"353","title":"The default endpoint resolver"},"354":{"body":"To describe how this feature will work, let's take a step-by-step path through endpoint resolution. A user defines a service client, possibly with some client specific configuration like region. @clientContextParams are code generated onto the client Config . Code generating @clientContextParams A user invokes an operation like s3::GetObject. A params object is created . In the body of make_operation(), this is passed to config.endpoint_resolver to load a generic endpoint. The Result of the of the endpoint resolution is written into the property bag. The generic smithy middleware (SmithyEndpointStage) sets the request endpoint. The AWS auth middleware (AwsAuthStage) reads the endpoint out of the property bag and applies signing overrides. The request is signed & dispatched The other major piece of implementation required is actually implementing the rules engine. To learn more about rules-engine internals, skip to implementing the rules engine .","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » How to actually implement this RFC","id":"354","title":"How to actually implement this RFC"},"355":{"body":"When a smithy model uses the @clientContextParams trait, we need to generate client params onto the Rust SDK. This is a Smithy-native feature. This should be implemented as a \"standard\" config decorator that reads traits from the current model. Kotlin Snippet for Client context params class ClientContextDecorator(ctx: ClientCodegenContext) : NamedSectionGenerator() { private val contextParams = ctx.serviceShape.getTrait()?.parameters.orEmpty().toList() .map { (key, value) -> ContextParam.fromClientParam(key, value, ctx.symbolProvider) } data class ContextParam(val name: String, val type: Symbol, val docs: String?) { companion object { private fun toSymbol(shapeType: ShapeType, symbolProvider: RustSymbolProvider): Symbol = symbolProvider.toSymbol( when (shapeType) { ShapeType.STRING -> StringShape.builder().id(\"smithy.api#String\").build() ShapeType.BOOLEAN -> BooleanShape.builder().id(\"smithy.api#Boolean\").build() else -> TODO(\"unsupported type\") } ) fun fromClientParam( name: String, definition: ClientContextParamDefinition, symbolProvider: RustSymbolProvider ): ContextParam { return ContextParam( RustReservedWords.escapeIfNeeded(name.toSnakeCase()), toSymbol(definition.type, symbolProvider), definition.documentation.orNull() ) } } } override fun section(section: ServiceConfig): Writable { return when (section) { is ServiceConfig.ConfigStruct -> writable { contextParams.forEach { param -> rust(\"pub (crate) ${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.ConfigImpl -> emptySection ServiceConfig.BuilderStruct -> writable { contextParams.forEach { param -> rust(\"${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.BuilderImpl -> writable { contextParams.forEach { param -> param.docs?.also { docs(it) } rust( \"\"\" pub fn ${param.name}(mut self, ${param.name}: #T) -> Self { self.${param.name} = Some(${param.name}); self } \"\"\", param.type ) } } ServiceConfig.BuilderBuild -> writable { contextParams.forEach { param -> rust(\"${param.name}: self.${param.name},\") } } else -> emptySection } }\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Code generating client context params","id":"355","title":"Code generating client context params"},"356":{"body":"Params will be created and utilized in generic code generation. make_operation() needs to load the parameters from several configuration sources. These sources have a priority order. To handle this priority order, we will load from all sources in reverse priority order, with lower priority sources overriding higher priority ones. Implementation of operation decorator class EndpointParamsDecorator( private val ctx: ClientCodegenContext, private val operationShape: OperationShape,\n) : OperationCustomization() { val idx = ContextIndex.of(ctx.model) private val ruleset = EndpointRuleset.fromNode(ctx.serviceShape.expectTrait().ruleSet) override fun section(section: OperationSection): Writable { return when (section) { is OperationSection.MutateInput -> writable { rustTemplate( \"\"\" let params = #{Params}::builder() #{builder:W}.expect(\"invalid endpoint\"); \"\"\", \"Params\" to EndpointParamsGenerator(ruleset).paramsStruct(), \"builder\" to builderFields(section) ) } is OperationSection.MutateRequest -> writable { rust(\"// ${section.request}.properties_mut().insert(params);\") } else -> emptySection } } private fun builderFields(section: OperationSection.MutateInput) = writable { val memberParams = idx.getContextParams(operationShape) val builtInParams = ruleset.parameters.toList().filter { it.isBuiltIn } // first load builtins and their defaults builtInParams.forEach { param -> val defaultProviders = section.endpointCustomizations.mapNotNull { it.defaultFor(param, section.config) } if (defaultProviders.size > 1) { error(\"Multiple providers provided a value for the builtin $param\") } defaultProviders.firstOrNull()?.also { defaultValue -> rust(\".set_${param.name.rustName()}(#W)\", defaultValue) } } // these can be overridden with client context params idx.getClientContextParams(ctx.serviceShape).forEach { (name, _param) -> rust(\".set_${name.toSnakeCase()}(${section.config}.${name.toSnakeCase()}.as_ref())\") } // lastly, allow these to be overridden by members memberParams.forEach { (memberShape, param) -> rust(\".set_${param.name.toSnakeCase()}(${section.input}.${ctx.symbolProvider.toMemberName(memberShape)}.as_ref())\") } rust(\".build()\") }\n} Loading values for builtIns The fundamental point of builtIn values is enabling other code generators to define where these values come from. Because of that, we will need to expose the ability to customize AwsBuiltIns. One way to do this is with a new customization type, EndpointCustomization: fun endpointCustomizations( clientCodegenContext: C, operation: OperationShape, baseCustomizations: List\n): List = baseCustomizations abstract class EndpointCustomization { abstract fun defaultFor(parameter: Parameter, config: String): Writable?\n} Customizations have the ability to specify the default value for a parameter. (Of course, these customizations need to be wired in properly.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Creating Params","id":"356","title":"Creating Params"},"357":{"body":"A Smithy endpoint has an untyped, string->Document collection of properties. We need to interpret these properties to handle actually resolving an endpoint. As part of the AwsAuthStage, we load authentication schemes from the endpoint properties and use these to configure signing on the request. Note : Authentication schemes are NOT required as part of an endpoint. When the auth schemes are not set, the default authentication should be used. The Rust SDK will set SigningRegion and SigningName in the property bag by default as part of make_operation.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Converting a Smithy Endpoint to an AWS Endpoint","id":"357","title":"Converting a Smithy Endpoint to an AWS Endpoint"},"358":{"body":"The Rust SDK code converts the rules into Rust code that will be compiled.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Implementing the rules engine","id":"358","title":"Implementing the rules engine"},"359":{"body":"Rules Engine Endpoint rules code generator Endpoint params code generator Endpoint tests code generator Implement ruleset standard library functions as inlineables. Note: pending future refactoring work, the aws. functions will need to be integrated into the smithy core endpoint resolver. Implement partition function & ability to customize partitions SDK Integration Add a Smithy endpoint resolver to the service config, with a default that loads the default endpoint resolver. Update SdkConfig to accept a URI instead of an implementation of ResolveAwsEndpoint. This change can be done standalone. Remove/deprecate the ResolveAwsEndpoint trait and replace it with the vanilla Smithy trait. Potentially, provide a bridge. Update make_operation to write a smithy::Endpoint into the property bag Update AWS Endpoint middleware to work off of a smithy::Endpoint Wire the endpoint override to the SDK::Endpoint builtIn parameter Remove the old smithy endpoint","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Changes checklist","id":"359","title":"Changes checklist"},"36":{"body":"Because floats are not Hashable in Rust, for simplicity smithy-rs translates all sets to into Vec instead of HashSet. In the future, a breaking change may be made to introduce a library-provided wrapper type for Sets.","breadcrumbs":"Smithy » Aggregate Shapes » Set","id":"36","title":"Set"},"360":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Alternative Designs","id":"360","title":"Alternative Designs"},"361":{"body":"An alternative design that could provide more flexibility is a context-aware endpoint trait where the return type would give context about the endpoint being returned. This would, for example, allow a customer to say explicitly \"don't modify this endpoint\": enum ContextualEndpoint { /// Just the URI please. Pass it into the default endpoint resolver as a baseline Uri { uri: Uri, immutable: bool }, /// A fully resolved, ready to rumble endpoint. Don't bother hitting the default endpoint resolver, just use what /// I've got. AwsEndpoint(AwsEndpoint)\n} trait ResolveGlobalEndpoint { fn resolve_endpoint(params: &dyn Any) -> Result;\n} Service clients would then use ResolveGlobalEndpoint, optional specified from SdkConfig to perform routing decisions.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Context Aware Endpoint Traits","id":"361","title":"Context Aware Endpoint Traits"},"362":{"body":"Status: Implemented in smithy-rs#2122 Applies to: AWS SDK for Rust At time of writing (2022-10-11), the SDK's credentials provider can be customized by providing: A profile credentials file to modify the default provider chain An instance of one of the credentials providers implemented in aws-config, such as the AssumeRoleCredentialsProvider, ImdsCredentialsProvider, and so on. A custom struct that implements the ProvideCredentials The problem this RFC examines is that when options 2 and 3 above are exercised, the customer needs to be aware of credentials caching and put additional effort to ensure caching is set up correctly (and that double caching doesn't occur). This is especially difficult to get right since some built-in credentials providers (such as AssumeRoleCredentialsProvider) already have caching, while most others do not and need to be wrapped in LazyCachingCredentialsProvider. The goal of this RFC is to create an API where Rust's type system ensures caching is set up correctly, or explicitly opted out of.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » RFC: SDK Credential Cache Type Safety","id":"362","title":"RFC: SDK Credential Cache Type Safety"},"363":{"body":"A new config method named credentials_cache() will be added to ConfigLoader and the generated service Config builders that takes a CredentialsCache instance. This CredentialsCache will be a struct with several functions on it to create and configure the cache. Client creation will ultimately be responsible for taking this CredentialsCache instance and wrapping the given (or default) credentials provider. The CredentialsCache would look as follows: enum Inner { Lazy(LazyConfig), // Eager doesn't exist today, so this is purely for illustration Eager(EagerConfig), // Custom may not be implemented right away // Not naming or specifying the custom cache trait for now since its out of scope Custom(Box), NoCaching,\n}\npub struct CredentialsCache { inner: Inner,\n} impl CredentialsCache { // These methods use default cache settings pub fn lazy() -> Self { /* ... */ } pub fn eager() -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy_builder() -> LazyBuilder { /* ... */ } pub fn eager_builder() -> EagerBuilder { /* ... */ } // Later, when custom implementations are supported pub fn custom(cache_impl: Box) -> Self { /* ... */ } pub(crate) fn create_cache( self, provider: Box, sleep_impl: Arc ) -> SharedCredentialsProvider { // Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), Self::NoCaching => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation in addition to the impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Customers that don't care about credential caching can configure credential providers without needing to think about it: let sdk_config = aws_config::from_env() .credentials_provider(ImdsCredentialsProvider::builder().build()) .load() .await; However, if they want to customize the caching, they can do so without modifying the credentials provider at all (in case they want to use the default): let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::default_eager()) .load() .await; The credentials_cache will default to CredentialsCache::default_lazy() if not provided.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » CredentialsCache and ConfigLoader::credentials_cache","id":"363","title":"CredentialsCache and ConfigLoader::credentials_cache"},"364":{"body":"Remove cache from AssumeRoleProvider Implement CredentialsCache with its Lazy variant and builder Add credentials_cache method to ConfigLoader Refactor ConfigLoader to take CredentialsCache instead of impl ProvideCredentials + 'static Refactor SharedCredentialsProvider to take a cache implementation in addition to an impl ProvideCredentials + 'static Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader Write changelog upgrade instructions Fix examples (if there are any for configuring caching)","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Changes Checklist","id":"364","title":"Changes Checklist"},"365":{"body":"","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Appendix: Alternatives Considered","id":"365","title":"Appendix: Alternatives Considered"},"366":{"body":"In this alternative, aws-types has a ProvideCachedCredentials in addition to ProvideCredentials. All individual credential providers (such as ImdsCredentialsProvider) implement ProvideCredentials, while credential caches (such as LazyCachingCredentialsProvider) implement the ProvideCachedCredentials. The ConfigLoader would only take impl ProvideCachedCredentials. This allows customers to provide their own caching solution by implementing ProvideCachedCredentials, while requiring that caching be done correctly through the type system since ProvideCredentials is only useful inside the implementation of ProvideCachedCredentials. Caching can be opted out by creating a NoCacheCredentialsProvider that implements ProvideCachedCredentials without any caching logic, although this wouldn't be recommended and this provider wouldn't be vended in aws-config. Example configuration: // Compiles\nlet sdk_config = aws_config::from_env() .credentials( LazyCachingCredentialsProvider::builder() .load(ImdsCredentialsProvider::new()) .build() ) .load() .await; // Doesn't compile\nlet sdk_config = aws_config::from_env() // Wrong type: doesn't implement `ProvideCachedCredentials` .credentials(ImdsCredentialsProvider::new()) .load() .await; Another method could be added to ConfigLoader that makes it easier to use the default cache: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::new()) .load() .await; Pros/cons :+1: It's flexible, and somewhat enforces correct cache setup through types. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers may unintentionally implement ProvideCachedCredentials instead of ProvideCredentials for a custom provider, and then not realize they're not benefiting from caching. :-1: The documentation needs to make it very clear what the differences are between ProvideCredentials and ProvideCachedCredentials since they will look identical. :-1: It's possible to implement both ProvideCachedCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative A: ProvideCachedCredentials trait","id":"366","title":"Alternative A: ProvideCachedCredentials trait"},"367":{"body":"This alternative is similar to alternative A, except that the cache trait is distinct from ProvideCredentials so that it's more apparent when mistakenly implementing the wrong trait for a custom credentials provider. A CacheCredentials trait would be added that looks as follows: pub trait CacheCredentials: Send + Sync + Debug { async fn cached(&self, now: SystemTime) -> Result;\n} Instances implementing CacheCredentials need to own the ProvideCredentials implementation to make both lazy and eager credentials caching possible. The configuration examples look identical to Option A. Pros/cons :+1: It's flexible, and enforces correct cache setup through types slightly better than Option A. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers can still unintentionally implement the wrong trait and miss out on caching when creating custom credentials providers, but it will be more apparent than in Option A. :-1: It's possible to implement both CacheCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative B: CacheCredentials trait","id":"367","title":"Alternative B: CacheCredentials trait"},"368":{"body":"The struct approach posits that customers don't need or want to implement custom credential caching, but at the same time, doesn't make it impossible to add custom caching later. The idea is that there would be a struct called CredentialsCache that specifies the desired caching approach for a given credentials provider: pub struct LazyCache { credentials_provider: Arc, // ...\n} pub struct EagerCache { credentials_provider: Arc, // ...\n} pub struct CustomCache { credentials_provider: Arc, // Not naming or specifying the custom cache trait for now since its out of scope cache: Arc\n} enum CredentialsCacheInner { Lazy(LazyCache), // Eager doesn't exist today, so this is purely for illustration Eager(EagerCache), // Custom may not be implemented right away Custom(CustomCache),\n} pub struct CredentialsCache { inner: CredentialsCacheInner,\n} impl CredentialsCache { // Methods prefixed with `default_` just use the default cache settings pub fn default_lazy(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } pub fn default_eager(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy(provider: impl ProvideCredentials + 'static) -> LazyBuilder { /* ... */ } pub fn eager(provider: impl ProvideCredentials + 'static) -> EagerBuilder { /* ... */ } pub(crate) fn create_cache( self, sleep_impl: Arc ) -> SharedCredentialsProvider { // ^ Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(inner.credentials_provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation rather than impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Configuration would look as follows: let sdk_config = aws_config::from_env() .credentials(CredentialsCache::default_lazy(ImdsCredentialsProvider::builder().build())) .load() .await; The credentials_provider method on ConfigLoader would only take CredentialsCache as an argument so that the SDK could not be configured without credentials caching, or if opting out of caching becomes a use case, then a CredentialsCache::NoCache variant could be made. Like alternative A, a convenience method can be added to make using the default cache easier: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::builder().build()) .load() .await; In the future if custom caching is added, it would look as follows: let sdk_config = aws_config::from_env() .credentials( CredentialsCache::custom(ImdsCredentialsProvider::builder().build(), MyCache::new()) ) .load() .await; The ConfigLoader wouldn't be able to immediately set its credentials provider since other values from the config are needed to construct the cache (such as sleep_impl). Thus, the credentials setter would merely save off the CredentialsCache instance, and then when load is called, the complete SharedCredentialsProvider would be constructed: pub async fn load(self) -> SdkConfig { // ... let credentials_provider = self.credentials_cache.create_cache(sleep_impl); // ...\n} Pros/cons :+1: Removes the possibility of missing out on caching when implementing a custom provider. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Requires thinking about caching when only wanting to customize the credentials provider :-1: Requires a lot of boilerplate in aws-config for the builders, enum variant structs, etc.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative C: CredentialsCache struct with composition","id":"368","title":"Alternative C: CredentialsCache struct with composition"},"369":{"body":"Status: Implemented in smithy-rs#2108 Applies to: clients This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them. It is assumed that the primary motivation behind the introduction of type safe credentials caching remains the same as the preceding RFC.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » RFC: Finding New Home for Credential Types","id":"369","title":"RFC: Finding New Home for Credential Types"},"37":{"body":"Because key MUST be a string in Smithy maps, we avoid the hashibility issue encountered with Set. There are optimizations that could be considered (e.g. since these maps will probably never be modified), however, pending customer feedback, Smithy Maps become HashMap in Rust.","breadcrumbs":"Smithy » Aggregate Shapes » Map","id":"37","title":"Map"},"370":{"body":"This document assumes that the following items in the changes checklist in the preceding RFC have been implemented: Implement CredentialsCache with its Lazy variant and builder Add the credentials_cache method to ConfigLoader Rename SharedCredentialsProvider to SharedCredentialsCache Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Assumptions","id":"370","title":"Assumptions"},"371":{"body":"Here is how our attempt to implement the selected design in the preceding RFC can lead to an obstacle. Consider this code snippet we are planning to support: let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::lazy()) .load() .await; let client = aws_sdk_s3::Client::new(&sdk_config); A CredentialsCache created by CredentialsCache::lazy() above will internally go through three crates before the variable client has been created: aws-config: after it has been passed to aws_config::ConfigLoader::credentials_cache // in lib.rs impl ConfigLoader { // --snip-- pub fn credentials_cache(mut self, credentials_cache: CredentialsCache) -> Self { self.credentials_cache = Some(credentials_cache); self } // --snip--\n} aws-types: after aws_config::ConfigLoader::load has passed it to aws_types::sdk_config::Builder::credentials_cache // in sdk_config.rs impl Builder { // --snip-- pub fn credentials_cache(mut self, cache: CredentialsCache) -> Self { self.set_credentials_cache(Some(cache)); self } // --snip--\n} aws-sdk-s3: after aws_sdk_s3::Client::new has been called with the variable sdk_config // in client.rs impl Client { // --snip-- pub fn new(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Self::from_conf(sdk_config.into()) } // --snip--\n} calls // in config.rs impl From<&aws_types::sdk_config::SdkConfig> for Builder { fn from(input: &aws_types::sdk_config::SdkConfig) -> Self { let mut builder = Builder::default(); builder = builder.region(input.region().cloned()); builder.set_endpoint_resolver(input.endpoint_resolver().clone()); builder.set_retry_config(input.retry_config().cloned()); builder.set_timeout_config(input.timeout_config().cloned()); builder.set_sleep_impl(input.sleep_impl()); builder.set_credentials_cache(input.credentials_cache().cloned()); builder.set_credentials_provider(input.credentials_provider().cloned()); builder.set_app_name(input.app_name().cloned()); builder.set_http_connector(input.http_connector().cloned()); builder }\n} impl From<&aws_types::sdk_config::SdkConfig> for Config { fn from(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Builder::from(sdk_config).build() }\n} What this all means is that CredentialsCache needs to be accessible from aws-config, aws-types, and aws-sdk-s3 (SDK client crates, to be more generic). We originally assumed that CredentialsCache would be defined in aws-config along with LazyCredentialsCache, but the assumption no longer holds because aws-types and aws-sdk-s3 do not depend upon aws-config. Therefore, we need to find a new place in which to create credentials caches accessible from the aforementioned crates.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Problems","id":"371","title":"Problems"},"372":{"body":"We propose to move the following items to a new crate called aws-credential-types: All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies For the first bullet point, we move types and traits associated with credentials out of aws-types. Crucially, the ProvideCredentials trait now lives in aws-credential-types. For the second bullet point, we move the items related to credentials caching. CredentialsCache with its Lazy variant and builder lives in aws-credential-types and CredentialsCache::create_cache will be marked as pub. One area where we make an adjustment, though, is that LazyCredentialsCache depends on aws_types::os_shim_internal::TimeSource so we need to move TimeSource into aws-credentials-types as well. A result of the above arrangement will give us the following module dependencies (only showing what's relevant): :+1: aws_types::sdk_config::Builder and a service client config::Builder can create a SharedCredentialsCache with a concrete type of credentials cache. :+1: It avoids cyclic crate dependencies. :-1: There is one more AWS runtime crate to maintain and version.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Proposed Solution","id":"372","title":"Proposed Solution"},"373":{"body":"An alternative design is to move the following items to a separate crate (tentatively called aws-XXX): All items in aws_types::sdk_config, i.e. SdkConfig and its builder All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies The reason for the first bullet point is that the builder needs to be somewhere it has access to the credentials caching factory function, CredentialsCache::create_cache. The factory function is in aws-XXX and if the builder stayed in aws-types, it would cause a cyclic dependency between those two crates. A result of the above arrangement will give us the following module dependencies: We have dismissed this design mainly because we try moving out of the aws-types create as little as possible. Another downside is that SdkConfig sitting together with the items for credentials provider & caching does not give us a coherent mental model for the aws-XXX crate, making it difficult to choose the right name for XXX.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Rejected Alternative","id":"373","title":"Rejected Alternative"},"374":{"body":"The following list does not repeat what is listed in the preceding RFC but does include those new mentioned in the Assumptions section: Create aws-credential-types Move all items in aws_types::credentials and their dependencies to the aws-credential-types crate Move all items in aws_config::meta::credentials and their dependencies to the aws-credential-types crate Update use statements and fully qualified names in the affected places","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Changes Checklist","id":"374","title":"Changes Checklist"},"375":{"body":"Status: RFC Applies to: Output, Input, and Builder types as well as DateTime, Document, Blob, and Number implemented in aws_smithy_types crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » RFC: Serialization and Deserialization","id":"375","title":"RFC: Serialization and Deserialization"},"376":{"body":"Builder Refers to data types prefixed with Builder, which converts itself into a corresponding data type upon being built. e.g. aws_sdk_dynamodb::input::PutItemInput. serde Refers to serde crate. Serialize Refers to Serialize trait avaialble on serde crate. Deserialize Refers to Deserialize trait available on serde crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Terminology","id":"376","title":"Terminology"},"377":{"body":"We are going to implement Serialize and Deserialize traits from serde crate to some data types. Data types that are going to be affected are; builder data types operation Input types operation Output types data types that builder types may have on their field(s) aws_smithy_types::DateTime aws_smithy_types::Document aws_smithy_types::Blob aws_smithy_types::Number DateTime and Blob implements different serialization/deserialization format for human-readable and non-human readable format; We must emphasize that these 2 formats are not compatible with each other. The reason for this is explained in the Blob section and Date Time . Additionally, we add fn set_fields to fluent builders to allow users to set the data they deserialized to fluent builders. Lastly, we emphasize that this RFC does NOT aim to serialize the entire response or request or implement serde traits on data types for server-side code.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Overview","id":"377","title":"Overview"},"378":{"body":"Users have requested serde traits to be implemented on data types implemented in rust SDK. We have created this RFC with the following use cases in mind. [request]: Serialize/Deserialize of models for Lambda events #269 Tests as suggested in the design FAQ. Building tools","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case","id":"378","title":"Use Case"},"379":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate","id":"379","title":"Feature Gate"},"38":{"body":"See StructureGenerator.kt for more details Smithy structure becomes a struct in Rust. Backwards compatibility & usability concerns lead to a few design choices: As specified by NullableIndex, fields are Option when Smithy models them as nullable. All structs are marked #[non_exhaustive] All structs derive Debug & PartialEq. Structs do not derive Eq because a float member may be added in the future. Struct fields are public. Public struct fields allow for split borrows . When working with output objects this significantly improves ergonomics, especially with optional fields. let out = dynamo::ListTablesOutput::new();\nout.some_field.unwrap(); // <- partial move, impossible with an accessor Builders are generated for structs that provide ergonomic and backwards compatible constructors. A builder for a struct is always available via the convenience method SomeStruct::builder() Structures manually implement debug: In order to support the sensitive trait , a Debug implementation for structures is manually generated.","breadcrumbs":"Smithy » Aggregate Shapes » Structure","id":"38","title":"Structure"},"380":{"body":"To enable any of the features from this RFC, user must pass --cfg aws-sdk-unstable to rustc. You can do this by specifying it on env-variable or by config.toml. specifying it on .cargo/config.toml [build]\nrustflags = [\"--cfg\", \"aws-sdk-unstable\"] As an environment variable export RUSTFLAGS=\"--cfg aws-sdk-unstable\"\ncargo build We considered allowing users to enable this feature on a crate-level. e.g. [dependencies]\naws_sdk_dynamodb = { version = \"0.22.0\", features = [\"unstable\", \"serialize\"] } Compared to the cfg approach, it is lot easier for the users to enable this feature. However, we believe that cfg approach ensure users won't enable this feature by surprise, and communicate to users that features behind this feature gate can be taken-away or exprience breaking changes any time in future.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enabling Feature","id":"380","title":"Enabling Feature"},"381":{"body":"Serde traits are implemented behind feature gates. Serialize is implemented behind serde-serialize, while Deserialize is implemented behind serde-deserialize. Users must enable the unstable feature to expose those features. We considered giving each feature a dedicated feature gate such as unstable-serde-serialize. In this case, we will need to change the name of feature gates entirely once it leaves the unstable status which will cause users to make changes to their code base. We conclude that this brings no benefit to the users. Furthermore, we considered naming the fature-gate serialize/deserialize. However, this way it would be confusing for the users when we add support for different serialization/deserialization framework such as deser. Thus, to emphasize that the traits is from serde crate, we decided to name it serde-serialize/serde-deserialize","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate for Serialization and De-serialization","id":"381","title":"Feature Gate for Serialization and De-serialization"},"382":{"body":"We considered keeping both features behind the same feature gate. There is no significant difference in the complexity of implementation. We do not see any benefit in keeping them behind the same feature gate as this will only increase compile time when users do not need one of the features.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Keeping both features behind the same feature gate","id":"382","title":"Keeping both features behind the same feature gate"},"383":{"body":"We considered implementing different feature gates for output, input, and their corresponding data types. For example, output and input types can have output-serde-* and input-serde-*. We are unable to do this as relevant metadata is not available during the code-gen.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Different feature gates for different data types","id":"383","title":"Different feature gates for different data types"},"384":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Implementation","id":"384","title":"Implementation"},"385":{"body":"aws_smithy_types is a crate that implements smithy's data types. These data types must implement serde traits as well since SDK uses the data types.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Smithy Types","id":"385","title":"Smithy Types"},"386":{"body":"Serialize and Deserialize is not implemented with derive macro. In human-readable format, Blob is serialized as a base64 encoded string and any data to be deserialized as this data type must be encoded in base 64. Encoding must be carried out by base64::encode function available from aws_smithy_types crate. Non-human readable format serializes Blob with fn serialize_bytes. Reason behind the implementation of human-readable format aws_smithy_types crate comes with functions for encoding/decoding base 64, which makes the implementation simpler. Additionally, AWS CLI and AWS SDK for other languages require data to be encoded in base 64 when it requires Blob type as input. We also considered serializing them with serialize_bytes, without encoding them with serialize_bytes. In this case, the implementation will depend on the implementation of the library author. There are many different crates, so we decided to survey how some of the most popular crates implement this feature. library version implementation all-time downloads on crate.io as of writing (Dec 2022) serde_json 1.0 Array of number 109,491,713 toml 0.5.9 Array of number 63,601,994 serde_yaml 0.9.14 Unsupported 23,767,300 First of all, bytes could have hundreds of elements; reading an array of hundreds of numbers will never be a pleasing experience, and it is especially troubling when you are writing data for test cases. Additionally, it has come to our attention that some crates just doesn't support it, which would hinder users' ability to be productive and tie users' hand. For the reasons described above, we believe that it is crucial to encode them to string and base64 is favourable over other encoding schemes such as base 16, 32, or Ascii85. Reason behind the implementation of a non-human readable format We considered using the same logic for non-human readable format as well. However, readable-ness is not necessary for non-human readable format. Additionally, non-human readable format tends to emphasize resource efficiency over human-readable format; Base64 encoded string would take up more space, which is not what the users would want. Thus, we believe that implementing a tailored serialization logic would be beneficial to the users.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Blob","id":"386","title":"Blob"},"387":{"body":"Serialize and Deserialize is not implemented with derive macro. For human-readable format, DateTime is serialized in RFC-3339 format; It expects the value to be in RFC-3339 format when it is Deserialized. Non-human readable implements DateTime as a tuple of u32 and i64; the latter corresponds to seconds field and the first is the seubsecond_nanos. Reason behind the implementation of a human-readable format For serialization, DateTime format already implements a function to encode itself into RFC-3339 format. For deserialization, it is possible to accept other formats, we can add this later if we find it reasonable. Reason behind the implementation of a non-human readable format Serializing them as tuples of two integers results in a smaller data size and requires less computing power than any string-based format. Tuple will be smaller in size as it does not require tagging like in maps.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » DateTime","id":"387","title":"DateTime"},"388":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without tagging thanks to the difference in each variant's datatypes.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Document","id":"388","title":"Document"},"389":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without a tag as each variant's content is different.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Number","id":"389","title":"Number"},"39":{"body":"Smithy Input : @documentation(\"

    Contains I/O usage metrics...\")\nstructure IOUsage { @documentation(\"... elided\") ReadIOs: ReadIOs, @documentation(\"... elided\") WriteIOs: WriteIOs\n} long ReadIOs long WriteIOs Rust Output : ///

    Contains I/O usage metrics for a command that was invoked.

    \n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct IoUsage { ///

    The number of read I/O requests that the command made.

    pub read_i_os: i64, ///

    The number of write I/O requests that the command made.

    pub write_i_os: i64,\n}\nimpl std::fmt::Debug for IoUsage { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"IoUsage\"); formatter.field(\"read_i_os\", &self.read_i_os); formatter.field(\"write_i_os\", &self.write_i_os); formatter.finish() }\n}\n/// See [`IoUsage`](crate::model::IoUsage)\npub mod io_usage { /// A builder for [`IoUsage`](crate::model::IoUsage) #[non_exhaustive] #[derive(Debug, Clone, Default)] pub struct Builder { read_i_os: std::option::Option, write_i_os: std::option::Option, } impl Builder { ///

    The number of read I/O requests that the command made.

    pub fn read_i_os(mut self, inp: i64) -> Self { self.read_i_os = Some(inp); self } ///

    The number of read I/O requests that the command made.

    pub fn set_read_i_os(mut self, inp: Option) -> Self { self.read_i_os = inp; self } ///

    The number of write I/O requests that the command made.

    pub fn write_i_os(mut self, inp: i64) -> Self { self.write_i_os = Some(inp); self } ///

    The number of write I/O requests that the command made.

    pub fn set_write_i_os(mut self, inp: Option) -> Self { self.write_i_os = inp; self } /// Consumes the builder and constructs a [`IoUsage`](crate::model::IoUsage) pub fn build(self) -> crate::model::IoUsage { crate::model::IoUsage { read_i_os: self.read_i_os.unwrap_or_default(), write_i_os: self.write_i_os.unwrap_or_default(), } } }\n}\nimpl IoUsage { /// Creates a new builder-style object to manufacture [`IoUsage`](crate::model::IoUsage) pub fn builder() -> crate::model::io_usage::Builder { crate::model::io_usage::Builder::default() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Example Structure Output","id":"39","title":"Example Structure Output"},"390":{"body":"Builder types and non Builder types implement Serialize and Deserialize with derive macro. Example: #[cfg_attr( all(aws-sdk-unstable, feature = \"serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct UploadPartCopyOutput { ...\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Builder Types and Non-Builder Types","id":"390","title":"Builder Types and Non-Builder Types"},"391":{"body":"serde allows programmers to use one of four different tagging ( internal, external, adjacent, and untagged ) when serializing an enum.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enum Representation","id":"391","title":"Enum Representation"},"392":{"body":"You cannot deserialize serialized data in some cases. For example, aws_sdk_dynamodb::model::AttributeValue has Null(bool) and Bool(bool), which you cannot distinguish serialized values without a tag.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » untagged","id":"392","title":"untagged"},"393":{"body":"This results in compile time error. Using a #[serde(tag = \"...\")] attribute on an enum containing a tuple variant is an error at compile time .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » internal","id":"393","title":"internal"},"394":{"body":"We are left with external and adjacent tagging. External tagging is the default way. This RFC can be achieved either way. The resulting size of the serialized data is smaller when tagged externally, as adjacent tagging will require a tag even when a variant has no content. For the reasons mentioned above, we implement an enum that is externally tagged.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » external and adjacent","id":"394","title":"external and adjacent"},"395":{"body":"We are going to skip serialization and deserialization of fields that have the datatype that corresponds to @streaming blob from smithy. Any fields with these data types are tagged with #[serde(skip)]. By skipping, corresponding field's value will be assigned the value generated by Default trait. As of writing, aws_smithy_http::byte_stream::ByteStream is the only data type that is affected by this decision. Here is an example of data types affected by this decision: aws_sdk_s3::input::put_object_input::PutObjectInput We considered serializing them as bytes, however, it could take some time for a stream to reach the end, and the resulting serialized data may be too big for itself to fit into the ram. Here is an example snippet. #[allow(missing_docs)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::fmt::Debug)]\npub struct PutObjectInput { pub acl: std::option::Option, pub body: aws_smithy_http::byte_stream::ByteStream, // ... other fields\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data Types to Skip Serialization/Deserialization","id":"395","title":"Data Types to Skip Serialization/Deserialization"},"396":{"body":"For data types that include @streaming union in any of their fields, we do NOT implement serde traits. As of writing, following Rust data types corresponds to @streaming union. aws_smithy_http::event_stream::Receiver aws_smithy_http::event_stream::EventStreamSender Here is an example of data type affected by this decision; aws_sdk_transcribestreaming::client::fluent_builders::StartMedicalStreamTranscription We considered skipping relevant fields on serialization and creating a custom de-serialization function which creates event stream that will always result in error when a user tries to send/receive data. However, we believe that our decision is justified for following reason. All for operations that feature event streams since the stream is ephemeral (tied to the HTTP connection), and is effectively unusable after serialization and deserialization Most event stream operations don't have fields that go along with them, making the stream the sole component in them, which makes ser/de not so useful SDK that uses event stream, such as aws-sdk-transcribestreaming only has just over 5000 all-time downloads with recent downloads of just under 1000 as of writing (2023/01/21); It makes it difficult to justify since the implementation impacts smaller number of people.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data types to exclude from ser/de code generation","id":"396","title":"Data types to exclude from ser/de code generation"},"397":{"body":"Output data, such as aws_sdk_dynamodb::output::UpdateTableOutput has builder types. These builder types are available to users, however, no API requires users to build data types by themselves. We considered removing traits from these data types. Removing serde traits on these types will help reduce compile time, however, builder type can be useful, for example, for testing. We have prepared examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Serde traits implemented on Builder of Output Types","id":"397","title":"Serde traits implemented on Builder of Output Types"},"398":{"body":"Currently, to set the value to fluent builders, users must call setter methods for each field. SDK does not have a method that allows users to use deserialized Input. Thus, we add a new method fn set_fields to Client types. This method accepts inputs and replaces all parameters that Client has with the new one. pub fn set_fields(mut self, input_type: path::to::input_type) -> path::to::input_type { self.inner = input_type; self\n} Users can use fn set_fields to replace the parameters in fluent builders. You can find examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » fn set_fields to allow users to use externally created Input","id":"398","title":"fn set_fields to allow users to use externally created Input"},"399":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Other Concerns","id":"399","title":"Other Concerns"},"4":{"body":"The Rust SDK is code generated from Smithy models, using Smithy codegeneration utilities. The Code generation is written in Kotlin. More details can be found in the Smithy section.","breadcrumbs":"Design Overview » Code Generation","id":"4","title":"Code Generation"},"40":{"body":"Smithy Union is modeled as enum in Rust. Generated enums must be marked #[non_exhaustive]. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue . Union members (enum variants) are not nullable, because Smithy union members cannot contain null values. When union members contain references to other shapes, we generate a wrapping variant (see below). Union members do not require #[non_exhaustive], because changing the shape targeted by a union member is not backwards compatible. is_variant and as_variant helper functions are generated to improve ergonomics.","breadcrumbs":"Smithy » Aggregate Shapes » Union","id":"40","title":"Union"},"400":{"body":"SDK will introduce new fields and we may see new data types in the future. We believe that this will not be a problem.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Model evolution","id":"400","title":"Model evolution"},"401":{"body":"Most fields are Option type. When the user de-serializes data written for a format before the new fields were introduced, new fields will be assigned with None type. If a field isn't Option, serde uses Default trait unless a custom de-serialization/serialization is specified to generate data to fill the field. If the new field is not an Option type and has no Default implementation, we must implement a custom de-serialization logic. In the case of serialization, the introduction of new fields will not be an issue unless the data format requires a schema. (e.g. parquet, avro) However, this is outside the scope of this RFC.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Fields","id":"401","title":"Introduction of New Fields"},"402":{"body":"If a new field introduces a new data type, it will not require any additional work if the data type can derive serde traits. If the data cannot derive serde traits on its own, then we have two options. To clarify, this is the same approach we took on Data Type to skip section. skip We will simply skip serializing/de-serializing. However, we may need to implement custom serialization/de-serialization logic if a value is not wrapped with Option. custom serialization/de-serialization logic We can implement tailored serialization/de-serialization logic. Either way, we will mention this on the generated docs to avoid surprising users. e.g. #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV1 { string_field: Option\n} #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV2 { string_field: Option, // this will always be treated as None value by serde #[serde(skip)] skip_not_serializable: Option, // We can implement a custom serialization logic #[serde(serialize_with = \"custom_serilization_logic\", deserialize_with = \"custom_deserilization_logic\")] not_derive_able: SomeComplexDataType, // Serialization will be skipped, and de-serialization will be handled with the function provided on default tag #[serde(skip, default = \"default_value\")] skip_with_custom: DataTypeWithoutDefaultTrait,\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Data Type","id":"402","title":"Introduction of New Data Type"},"403":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Discussions","id":"403","title":"Discussions"},"404":{"body":"If serialized data contains sensitive information, it will not be masked. We mention that fields can compromise such information on every struct field to ensure that users know this.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Sensitive Information","id":"404","title":"Sensitive Information"},"405":{"body":"We ran the following benchmark on C6a.2xlarge instance with 50gb of GP2 SSD. The commit hash of the code is a8e2e19129aead4fbc8cf0e3d34df0188a62de9f. It clearly shows an increase in compile time. Users are advised to consider the use of software such as sccache or mold to reduce the compile time. aws-sdk-dynamodb when compiled with debug profile command real time user time sys time cargo build 0m35.728s 2m24.243s 0m11.868s cargo build --features unstable-serde-serialize 0m38.079s 2m26.082s 0m11.631s cargo build --features unstable-serde-deserialize 0m45.689s 2m34.000s 0m11.978s cargo build --all-features 0m48.959s 2m45.688s 0m13.359s when compiled with release profile command real time user time sys time cargo build --release 0m52.040s 5m0.841s 0m11.313s cargo build --release --features unstable-serde-serialize 0m53.153s 5m4.069s 0m11.577s cargo build --release --features unstable-serde-deserialize 1m0.107s 5m10.231s 0m11.699s cargo build --release --all-features 1m3.198s 5m26.076s 0m12.311s aws-sdk-ec2 when compiled with debug profile command real time user time sys time cargo build 1m20.041s 2m14.592s 0m6.611s cargo build --features unstable-serde-serialize 2m0.555s 4m24.881s 0m16.131s cargo build --features unstable-serde-deserialize 3m10.857s 5m34.246s 0m18.844s cargo build --all-features 3m31.473s 6m1.052s 0m19.681s when compiled with release profile command real time user time sys time cargo build --release 2m29.480s 9m19.530s 0m15.957s cargo build --release --features unstable-serde-serialize 2m45.002s 9m43.098s 0m16.886s cargo build --release --features unstable-serde-deserialize 3m47.531s 10m52.017s 0m18.404s cargo build --release --all-features 3m45.208s 8m46.168s 0m10.211s","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Compile Time","id":"405","title":"Compile Time"},"406":{"body":"SDK team previously expressed concern that serialized data may be misleading. We believe that features implemented as part of this RFC do not produce a misleading result as we focus on builder types and it's corresponding data types which are mapped to serde's data type model with the derive macro.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Misleading Results","id":"406","title":"Misleading Results"},"407":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Appendix","id":"407","title":"Appendix"},"408":{"body":"use aws_sdk_dynamodb::{Client, Error}; async fn example(read_builder: bool) -> Result<(), Error> { // getting the client let shared_config = aws_config::load_from_env().await; let client = Client::new(&shared_config); // de-serializing input's builder types and input types from json let deserialized_input = if read_builder { let mut parameter: aws_sdk_dynamodb::input::list_tables_input::Builder = serde_json::from_str(include_str!(\"./builder.json\")); parameter.set_exclusive_start_table_name(\"some_name\").build() } else { let input: aws_sdk_dynamodb::input::ListTablesInput = serde_json::from_str(include_str!(\"./input.json\")); input }; // sending request using the deserialized input let res = client.list_tables().set_fields(deserialized_input).send().await?; println!(\"DynamoDB tables: {:?}\", res.table_names); let out: aws_sdk_dynamodb::output::ListTablesOutput = { // say you want some of the field to have certain values let mut out_builder: aws_sdk_dynamodb::output::list_tables_output::Builder = serde_json::from_str(r#\" { table_names: [ \"table1\", \"table2\" ] } \"#); // but you don't really care about some other values out_builder.set_last_evaluated_table_name(res.last_evaluated_table_name()).build() }; assert_eq!(res, out); // serializing json output let json_output = serde_json::to_string(res).unwrap(); // you can save the serialized input println!(json_output); Ok(())\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case Examples","id":"408","title":"Use Case Examples"},"409":{"body":"Implement human-redable serialization for DateTime and Blob in aws_smithy_types Implement non-human-redable serialization for DateTime and Blob in aws_smithy_types Implement Serialize and Deserialize for relevant data types in aws_smithy_types Modify Kotlin's codegen so that generated Builder and non-Builder types implement Serialize and Deserialize Add feature gate for Serialize and Deserialize Prepare examples Prepare reproducible compile time benchmark","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Changes checklist","id":"409","title":"Changes checklist"},"41":{"body":"The union generated for a simplified dynamodb::AttributeValue Smithy : namespace test union AttributeValue { @documentation(\"A string value\") string: String, bool: Boolean, bools: BoolList, map: ValueMap\n} map ValueMap { key: String, value: AttributeValue\n} list BoolList { member: Boolean\n} Rust : #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { /// a string value String(std::string::String), Bool(bool), Bools(std::vec::Vec), Map(std::collections::HashMap),\n} impl AttributeValue { pub fn as_bool(&self) -> Result<&bool, &crate::model::AttributeValue> { if let AttributeValue::Bool(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bool(&self) -> bool { self.as_bool().is_some() } pub fn as_bools(&self) -> Result<&std::vec::Vec, &crate::model::AttributeValue> { if let AttributeValue::Bools(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bools(&self) -> bool { self.as_bools().is_some() } pub fn as_map(&self) -> Result<&std::collections::HashMap, &crate::model::AttributeValue> { if let AttributeValue::Map(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_map(&self) -> bool { self.as_map().is_some() } pub fn as_string(&self) -> Result<&std::string::String, &crate::model::AttributeValue> { if let AttributeValue::String(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_string(&self) -> bool { self.as_string().is_some() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Generated Union Example","id":"41","title":"Generated Union Example"},"410":{"body":"Status: Implemented in smithy-rs#2246 Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a fallback mechanism for credentials providers on external timeout (see the Terminology section), allowing them to continue serving (possibly expired) credentials for the sake of overall reliability of the intended service; The IMDS credentials provider is an example that must fulfill such a requirement to support static stability.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » RFC: Providing fallback credentials on external timeout","id":"410","title":"RFC: Providing fallback credentials on external timeout"},"411":{"body":"External timeout: The name of the timeout that occurs when a duration elapses before an async call to provide_credentials returns. In this case, provide_credentials returns no credentials. Internal timeout: The name of the timeout that occurs when a duration elapses before an async call to some function, inside the implementation of provide_credentials, returns. Examples include connection timeouts, TLS negotiation timeouts, and HTTP request timeouts. Implementations of provide_credentials may handle these failures at their own discretion e.g. by returning (possibly expired) credentials or a CredentialsError. Static stability: Continued availability of a service in the face of impaired dependencies.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Terminology","id":"411","title":"Terminology"},"412":{"body":"This RFC is concerned only with external timeouts, as the cost of poor API design is much higher in this case than for internal timeouts. The former will affect a public trait implemented by all credentials providers whereas the latter can be handled locally by individual credentials providers without affecting one another.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Assumption","id":"412","title":"Assumption"},"413":{"body":"We have mentioned static stability. Supporting it calls for the following functional requirement, among others: REQ 1: Once a credentials provider has served credentials, it should continue serving them in the event of a timeout (whether internal or external) while obtaining refreshed credentials. Today, we have the following trait method to obtain credentials: fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>\nwhere Self: 'a, This method returns a future, which can be raced against a timeout future as demonstrated by the following code snippet from LazyCredentialsCache: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| async move { let credentials = future.await.map_err(|_err| { CredentialsError::provider_timed_out(load_timeout) })??; // --snip-- }).await;\n// --snip-- This creates an external timeout for provide_credentials. If timeout_future wins the race, a future for provide_credentials gets dropped, timeout_future returns an error, and the error is mapped to CredentialsError::ProviderTimedOut and returned. This makes it impossible for the variable provider above to serve credentials as stated in REQ 1. A more complex use case involves CredentialsProviderChain. It is a manifestation of the chain of responsibility pattern and keeps calling the provide_credentials method on each credentials provider down the chain until credentials are returned by one of them. In addition to REQ 1, we have the following functional requirement with respect to CredentialsProviderChain: REQ 2: Once a credentials provider in the chain has returned credentials, it should continue serving them even in the event of a timeout (whether internal or external) without falling back to another credentials provider. Referring back to the code snippet above, we analyze two relevant cases (and suppose provider 2 below must meet REQ 1 and REQ 2 in each case): Case 1: Provider 2 successfully loaded credentials but later failed to do so because an external timeout kicked in. The figure above illustrates an example. This CredentialsProviderChain consists of three credentials providers. When CredentialsProviderChain::provide_credentials is called, provider 1's provide_credentials is called but does not find credentials so passes the torch to provider 2, which in turn successfully loads credentials and returns them. The next time the method is called, provider 1 does not find credentials but neither does provider 2 this time, because an external timeout by timeout_future given to the whole chain kicked in and the future is dropped while provider 2's provide_credentials was running. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns a CredentialsError::ProviderTimedOut instead. Case 2: Provider 2 successfully loaded credentials but later was not reached because its preceding provider was still running when an external timeout kicked in. The figure above illustrates an example with the same setting as the previous figure. Again, when CredentialsProviderChain::provide_credentials is called the first time, provider 1 does not find credentials but provider 2 does. The next time the method is called, provider 1 is still executing provide_credentials and then an external timeout by timeout_future kicked in. Consequently, the execution of CredentialsProviderChain::provide_credentials has been terminated. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns CredentialsError::ProviderTimedOut instead.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Problem","id":"413","title":"Problem"},"414":{"body":"To address the problem in the previous section, we propose to add a new method to the ProvideCredentials trait called fallback_on_interrupt. This method allows credentials providers to have a fallback mechanism on an external timeout and to serve credentials to users if needed. There are two options as to how it is implemented, either as a synchronous primitive or as an asynchronous primitive. Option A: Synchronous primitive pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt(&self) -> Option { None }\n} :+1: Users can be guided to use only synchronous primitives when implementing fallback_on_interrupt. :-1: It cannot support cases where fallback credentials are asynchronously retrieved. :-1: It may turn into a blocking operation if it takes longer than it should. Option B: Asynchronous primitive mod future { // --snip-- // This cannot use `OnlyReady` in place of `BoxFuture` because // when a chain of credentials providers implements its own // `fallback_on_interrupt`, it needs to await fallback credentials // in its inner providers. Thus, `BoxFuture` is required. pub struct FallbackOnInterrupt<'a>(NowOrLater, BoxFuture<'a, Option>>); // impls for FallbackOnInterrupt similar to those for the ProvideCredentials future newtype\n} pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt<'a>(&'a self) -> future::FallbackOnInterrupt<'a> { future::FallbackOnInterrupt::ready(None) }\n} :+1: It is async from the beginning, so less likely to introduce a breaking change. :-1: We may have to consider yet another timeout for fallback_on_interrupt itself. Option A cannot be reversible in the future if we are to support the use case for asynchronously retrieving the fallback credentials, whereas option B allows us to continue supporting both ready and pending futures when retrieving the fallback credentials. However, fallback_on_interrupt is supposed to return credentials that have been set aside in case provide_credentials is timed out. To express that intent, we choose option A and document that users should NOT go fetch new credentials in fallback_on_interrupt. The user experience for the code snippet in question will look like this once this proposal is implemented: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| { async move { let credentials = match future.await { Ok(creds) => creds?, Err(_err) => match provider.fallback_on_interrupt() { // can provide fallback credentials Some(creds) => creds, None => return Err(CredentialsError::provider_timed_out(load_timeout)), } }; // --snip-- } }).await;\n// --snip--","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Proposal","id":"414","title":"Proposal"},"415":{"body":"Almost all credentials providers do not have to implement their own fallback_on_interrupt except for CredentialsProviderChain (ImdsCredentialsProvider also needs to implement fallback_on_interrupt when we are adding static stability support to it but that is outside the scope of this RFC). Considering the two cases we analyzed above, implementing CredentialsProviderChain::fallback_on_interrupt is not so straightforward. Keeping track of whose turn in the chain it is to call provide_credentials when an external timeout has occurred is a challenging task. Even if we figured it out, that would still not satisfy Case 2 above, because it was provider 1 that was actively running when the external timeout kicked in, but the chain should return credentials from provider 2, not from provider 1. With that in mind, consider instead the following approach: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn fallback_on_interrupt(&self) -> Option { { for (_, provider) in &self.providers { match provider.fallback_on_interrupt() { creds @ Some(_) => return creds, None => {} } } None }\n} CredentialsProviderChain::fallback_on_interrupt will invoke each provider's fallback_on_interrupt method until credentials are returned by one of them. It ensures that the updated code snippet for LazyCredentialsCache can return credentials from provider 2 in both Case 1 and Case 2. Even if timeout_future wins the race, the execution subsequently calls provider.fallback_on_interrupt() to obtain fallback credentials from provider 2, assuming provider 2's fallback_on_interrupt is implemented to return fallback credentials accordingly. The downside of this simple approach is that the behavior is not clear if more than one credentials provider in the chain can return credentials from their fallback_on_interrupt. Note, however, that it is the exception rather than the norm for a provider's fallback_on_interrupt to return fallback credentials, at least at the time of writing (01/13/2023). The fact that it returns fallback credentials means that the provider successfully loaded credentials at least once, and it usually continues serving credentials on subsequent calls to provide_credentials. Should we have more than one provider in the chain that can potentially return fallback credentials from fallback_on_interrupt, we could configure the behavior of CredentialsProviderChain managing in what order and how each fallback_on_interrupt should be executed. See the Possible enhancement section for more details. The use case described there is an extreme edge case, but it's worth exploring what options are available to us with the proposed design.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » How to actually implement this RFC","id":"415","title":"How to actually implement this RFC"},"416":{"body":"In this section, we will describe an alternative approach that we ended up dismissing as unworkable. Instead of fallback_on_interrupt, we considered the following method to be added to the ProvideCredentials trait: pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- /// Returns a future that provides credentials within the given `timeout`. /// /// The default implementation races `provide_credentials` against /// a timeout future created from `timeout`. fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { let timeout_future = sleeper.sleep(timeout); let future = Timeout::new(self.provide_credentials(), timeout_future); future::ProvideCredentials::new(async move { let credentials = future .await .map_err(|_err| CredentialsError::provider_timed_out(timeout))?; credentials }) } provide_credentials_with_timeout encapsulated the timeout race and allowed users to specify how long the external timeout for provide_credentials would be. The code snippet from LazyCredentialsCache then looked like let sleeper = Arc::clone(&self.sleeper);\nlet load_timeout = self.load_timeout; // by default self.load_timeout is 5 seconds.\n// --snip--\nlet result = cache .get_or_load(|| { async move { let credentials = provider .provide_credentials_with_timeout(sleeper, load_timeout) .await?; // --snip-- } }).await;\n// --snip-- However, implementing CredentialsProviderChain::provide_credentials_with_timeout quickly ran into the following problem: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.credentials_with_timeout(sleeper, timeout)) }\n} impl CredentialsProviderChain { // --snip-- async fn credentials_with_timeout( &self, sleeper: Arc, timeout: Duration, ) -> provider::Result { for (_, provider) in &self.providers { match provider .provide_credentials_with_timeout(Arc::clone(&sleeper), /* how do we calculate timeout for each provider ? */) .await { Ok(credentials) => { return Ok(credentials); } Err(CredentialsError::ProviderTimedOut(_)) => { // --snip-- } Err(err) => { // --snip-- } } } Err(CredentialsError::provider_timed_out(timeout)) } There are mainly two problems with this approach. The first problem is that as shown above, there is no sensible way to calculate a timeout for each provider in the chain. The second problem is that exposing a parameter like timeout at a public trait's level is giving too much control to users; delegating overall timeout to the individual provider means each provider has to get it right.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Alternative","id":"416","title":"Alternative"},"417":{"body":"Add fallback_on_interrupt method to the ProvideCredentials trait with the default implementation Implement CredentialsProviderChain::fallback_on_interrupt Implement DefaultCredentialsChain::fallback_on_interrupt Add unit tests for Case 1 and Case 2","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Changes checklist","id":"417","title":"Changes checklist"},"418":{"body":"We will describe how to customize the behavior for CredentialsProviderChain::fallback_on_interrupt. We are only demonstrating how much the proposed design can be extended and currently do not have concrete use cases to implement using what we present in this section. As described in the Proposal section, CredentialsProviderChain::fallback_on_interrupt traverses the chain from the head to the tail and returns the first fallback credentials found. This precedence policy works most of the time, but when we have more than one provider in the chain that can potentially return fallback credentials, it could break in the following edge case (we are still basing our discussion on the code snippet from LazyCredentialsCache but forget REQ 1 and REQ 2 for the sake of simplicity). During the first call to CredentialsProviderChain::provide_credentials, provider 1 fails to load credentials, maybe due to an internal timeout, and then provider 2 succeeds in loading its credentials (call them credentials 2) and internally stores them for Provider2::fallback_on_interrupt to return them subsequently. During the second call, provider 1 succeeds in loading credentials (call them credentials 1) and internally stores them for Provider1::fallback_on_interrupt to return them subsequently. Suppose, however, that credentials 1's expiry is earlier than credentials 2's expiry. Finally, during the third call, CredentialsProviderChain::provide_credentials did not complete due to an external timeout. CredentialsProviderChain::fallback_on_interrupt then returns credentials 1, when it should return credentials 2 whose expiry is later, because of the precedence policy. This a case where CredentialsProviderChain::fallback_on_interrupt requires the recency policy for fallback credentials found in provider 1 and provider 2, not the precedence policy. The following figure shows how we can set up such a chain: The outermost chain is a CredentialsProviderChain and follows the precedence policy for fallback_on_interrupt. It contains a sub-chain that, in turn, contains provider 1 and provider 2. This sub-chain implements its own fallback_on_interrupt to realize the recency policy for fallback credentials found in provider 1 and provider 2. Conceptually, we have pub struct FallbackRecencyChain { provider_chain: CredentialsProviderChain,\n} impl ProvideCredentials for FallbackRecencyChain { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { // Can follow the precedence policy for loading credentials // if it chooses to do so. } fn fallback_on_interrupt(&self) -> Option { // Iterate over `self.provider_chain` and return // fallback credentials whose expiry is the most recent. }\n} We can then compose the entire chain like so: let provider_1 = /* ... */\nlet provider_2 = /* ... */\nlet provider_3 = /* ... */ let sub_chain = CredentialsProviderChain::first_try(\"Provider1\", provider_1) .or_else(\"Provider2\", provider_2); let recency_chain = /* Create a FallbackRecencyChain with sub_chain */ let final_chain = CredentialsProviderChain::first_try(\"fallback_recency\", recency_chain) .or_else(\"Provider3\", provider_3); The fallback_on_interrupt method on final_chain still traverses from the head to the tail, but once it hits recency_chain, fallback_on_interrupt on recency_chain respects the expiry of fallback credentials found in its inner providers. What we have presented in this section can be generalized thanks to chain composability. We could have different sub-chains, each implementing its own policy for fallback_on_interrupt.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Possible enhancement","id":"418","title":"Possible enhancement"},"419":{"body":"Status: Accepted Applies to: server During and after the design and the core implementation of constraint traits in the server SDK, some problems relating to constraint violations were identified. This RFC sets out to explain and address three of them: impossible constraint violations , collecting constraint violations , and \"tightness\" of constraint violations . The RFC explains each of them in turn, solving them in an iterative and pedagogical manner, i.e. the solution of a problem depends on the previous ones having been solved with their proposed solutions. The three problems are meant to be addressed atomically in one changeset (see the Checklist ) section. Note: code snippets from generated SDKs in this document are abridged so as to be didactic and relevant to the point being made. They are accurate with regards to commit 2226fe .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » RFC: Better Constraint Violations","id":"419","title":"RFC: Better Constraint Violations"},"42":{"body":"","breadcrumbs":"Smithy » Endpoint Resolution » Endpoint Resolution","id":"42","title":"Endpoint Resolution"},"420":{"body":"The design and the description of the PR where the core implementation of constraint traits was made are recommended prior reading to understand this RFC. Shape closure : the set of shapes a shape can \"reach\", including itself. Transitively constrained shape : a shape whose closure includes: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape ; or an intEnum shape . A directly constrained shape is any of these: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape , an intEnum shape ; or a structure shape with at least one required member shape. Constrained type : the Rust type a constrained shape gets rendered as. For shapes that are not structure, union, enum or intEnum shapes, these are wrapper newtype s. In the absence of a qualifier, \"constrained shape\" should be interpreted as \"transitively constrained shape\".","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Terminology","id":"420","title":"Terminology"},"421":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Impossible constraint violations","id":"421","title":"Impossible constraint violations"},"422":{"body":"A constrained type has a fallible constructor by virtue of it implementing the TryFrom trait. The error type this constructor may yield is known as a constraint violation : impl TryFrom for ConstrainedType { type Error = ConstraintViolation; fn try_from(value: UnconstrainedType) -> Result { ... }\n} The ConstraintViolation type is a Rust enum with one variant per way \"constraining\" the input value may fail. So, for example, the following Smithy model: structure A { @required member: String,\n} Yields: /// See [`A`](crate::model::A).\npub mod a { #[derive(std::cmp::PartialEq, std::fmt::Debug)] /// Holds one variant for each of the ways the builder can fail. pub enum ConstraintViolation { /// `member` was not provided but it is required when building `A`. MissingMember, }\n} Constraint violations are always Rust enums, even if they only have one variant. Constraint violations can occur in application code: use my_server_sdk::model let res = model::a::Builder::default().build(); // We forgot to set `member`. match res { Ok(a) => { ... }, Err(e) => { assert_eq!(model::a::ConstraintViolation::MissingMember, e); }\n}","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"422","title":"Background"},"423":{"body":"Currently, the constraint violation types we generate are used by both : the server framework upon request deserialization; and by users in application code. However, the kinds of constraint violations that can occur in application code can sometimes be a strict subset of those that can occur during request deserialization. Consider the following model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString This produces: pub struct LengthMap( pub(crate) std::collections::HashMap,\n); impl std::convert::TryFrom< std::collections::HashMap, > for LengthMap\n{ type Error = crate::model::length_map::ConstraintViolation; /// Constructs a `LengthMap` from an /// [`std::collections::HashMap`], failing when the provided value does not /// satisfy the modeled constraints. fn try_from( value: std::collections::HashMap, ) -> Result { let length = value.len(); if (1..=69).contains(&length) { Ok(Self(value)) } else { Err(crate::model::length_map::ConstraintViolation::Length(length)) } }\n} pub mod length_map { pub enum ConstraintViolation { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), } ...\n} Observe how the ConstraintViolation::Value variant is never constructed. Indeed, this variant is impossible to be constructed in application code : a user has to provide a map whose values are already constrained LengthStrings to the try_from constructor, which only enforces the map's @length trait. The reason why these seemingly \"impossible violations\" are being generated is because they can arise during request deserialization. Indeed, the server framework deserializes requests into fully unconstrained types . These are types holding unconstrained types all the way through their closures. For instance, in the case of structure shapes, builder types (the unconstrained type corresponding to the structure shape) hold builders all the way down. In the case of the above model, below is the alternate pub(crate) constructor the server framework uses upon deserialization. Observe how LengthMapOfLengthStringsUnconstrained is fully unconstrained and how the try_from constructor can yield ConstraintViolation::Value. pub(crate) mod length_map_of_length_strings_unconstrained { #[derive(Debug, Clone)] pub(crate) struct LengthMapOfLengthStringsUnconstrained( pub(crate) std::collections::HashMap, ); impl std::convert::TryFrom for crate::model::LengthMapOfLengthStrings { type Error = crate::model::length_map_of_length_strings::ConstraintViolation; fn try_from(value: LengthMapOfLengthStringsUnconstrained) -> Result { let res: Result< std::collections::HashMap, Self::Error, > = value .0 .into_iter() .map(|(k, v)| { let v: crate::model::LengthString = k.try_into().map_err(Self::Error::Key)?; Ok((k, v)) }) .collect(); let hm = res?; Self::try_from(hm) } }\n} In conclusion, the user is currently exposed to an internal detail of how the framework operates that has no bearing on their application code. They shouldn't be exposed to impossible constraint violation variants in their Rust docs, nor have to match on these variants when handling errors. Note: this comment alludes to the problem described above.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"423","title":"Problem"},"424":{"body":"The problem can be mitigated by adding #[doc(hidden)] to the internal variants and #[non_exhaustive] to the enum. We're already doing this in some constraint violation types. However, a \"less leaky\" solution is achieved by splitting the constraint violation type into two types, which this RFC proposes: one for use by the framework, with pub(crate) visibility, named ConstraintViolationException; and one for use by user application code, with pub visibility, named ConstraintViolation. pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), }\n} Note that, to some extent, the spirit of this approach is already currently present in the case of builder types when publicConstrainedTypes is set to false: ServerBuilderGenerator.kt renders the usual builder type that enforces constraint traits, setting its visibility to pub (crate), for exclusive use by the framework. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the builder type the user is exposed to: this builder does not take in constrained types and does not enforce all modeled constraints.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"424","title":"Solution proposal"},"425":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Collecting constraint violations","id":"425","title":"Collecting constraint violations"},"426":{"body":"Constrained operations are currently required to have smithy.framework#ValidationException as a member in their errors property . This is the shape that is rendered in responses when a request contains data that violates the modeled constraints. The shape is defined in the smithy-validation-model Maven package, as follows : $version: \"2.0\" namespace smithy.framework /// A standard error for input validation failures.\n/// This should be thrown by services when a member of the input structure\n/// falls outside of the modeled or documented constraints.\n@error(\"client\")\nstructure ValidationException { /// A summary of the validation failure. @required message: String, /// A list of specific failures encountered while validating the input. /// A member can appear in this list more than once if it failed to satisfy multiple constraints. fieldList: ValidationExceptionFieldList\n} /// Describes one specific validation failure for an input member.\nstructure ValidationExceptionField { /// A JSONPointer expression to the structure member whose value failed to satisfy the modeled constraints. @required path: String, /// A detailed description of the validation failure. @required message: String\n} list ValidationExceptionFieldList { member: ValidationExceptionField\n} It was mentioned in the constraint traits RFC , and implicit in the definition of Smithy's smithy.framework.ValidationException shape, that server frameworks should respond with a complete collection of errors encountered during constraint trait enforcement to the client.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"426","title":"Background"},"427":{"body":"As of writing, the TryFrom constructor of constrained types whose shapes have more than one constraint trait attached can only yield a single error. For example, the following shape: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString Yields: pub struct LengthPatternString(pub(crate) std::string::String); impl LengthPatternString { fn check_length( string: &str, ) -> Result<(), crate::model::length_pattern_string::ConstraintViolation> { let length = string.chars().count(); if (5..=10).contains(&length) { Ok(()) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Length(length)) } } fn check_pattern( string: String, ) -> Result { let regex = Self::compile_regex(); if regex.is_match(&string) { Ok(string) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Pattern(string)) } } pub fn compile_regex() -> &'static regex::Regex { static REGEX: once_cell::sync::Lazy = once_cell::sync::Lazy::new(|| { regex::Regex::new(r#\"[a-f0-5]*\"#).expect(r#\"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/smithy-lang/smithy-rs/issues for support\"#) }); ®EX }\n} impl std::convert::TryFrom for LengthPatternString { type Error = crate::model::length_pattern_string::ConstraintViolation; /// Constructs a `LengthPatternString` from an [`std::string::String`], /// failing when the provided value does not satisfy the modeled constraints. fn try_from(value: std::string::String) -> Result { Self::check_length(&value)?; let value = Self::check_pattern(value)?; Ok(Self(value)) }\n} Observe how a failure to adhere to the @length trait will short-circuit the evaluation of the constructor, when the value could technically also not adhere with the @pattern trait. Similarly, constrained structures fail upon encountering the first member that violates a constraint. Additionally, in framework request deserialization code : collections whose members are constrained fail upon encountering the first member that violates the constraint, maps whose keys and/or values are constrained fail upon encountering the first violation; and structures whose members are constrained fail upon encountering the first member that violates the constraint, In summary, any shape that is transitively constrained yields types whose constructors (both the internal one and the user-facing one) currently short-circuit upon encountering the first violation.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"427","title":"Problem"},"428":{"body":"The deserializing architecture lends itself to be easily refactored so that we can collect constraint violations before returning them. Indeed, note that deserializers enforce constraint traits in a two-step phase: first, the entirety of the unconstrained value is deserialized, then constraint traits are enforced by feeding the entire value to the TryFrom constructor. Let's consider a ConstraintViolations type (note the plural) that represents a collection of constraint violations that can occur within user application code . Roughly: pub ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} The main reason for wrapping a vector in ConstraintViolations as opposed to directly returning the vector is forwards-compatibility: we may want to expand ConstraintViolations with conveniences. If the constrained type can only ever yield a single violation, we will dispense with ConstraintViolations and keep directly returning the crate::model::shape_name::ConstraintViolation type. We will analogously introduce a ConstraintViolationExceptions type that represents a collection of constraint violations that can occur within the framework's request deserialization code . This type will be pub(crate) and will be the one the framework will map to Smithy's ValidationException that eventually gets serialized into the response. Collecting constraint violations may constitute a DOS attack vector This is a problem that already exists as of writing, but that collecting constraint violations highlights, so it is a good opportunity, from a pedagogical perspective, to explain it here. Consider the following model: @length(max: 3)\nlist ListOfPatternStrings { member: PatternString\n} @pattern(\"expensive regex to evaluate\")\nstring PatternString Our implementation currently enforces constraints from the leaf to the root : when enforcing the @length constraint, the TryFrom constructor the server framework uses gets a Vec and first checks the members adhere to the @pattern trait, and only after is the @length trait checked. This means that if a client sends a request with n >>> 3 list members, the expensive check runs n times, when a constant-time check inspecting the length of the input vector would have sufficed to reject the request. Additionally, we may want to avoid serializing n ValidationExceptionFields due to performance concerns. A possibility to circumvent this is making the @length validator special, having it bound the other validators via effectively permuting the order of the checks and thus short-circuiting. In general, it's unclear what constraint traits should cause short-circuiting. A probably reasonable rule of thumb is to include traits that can be attached directly to aggregate shapes: as of writing, that would be @uniqueItems on list shapes and @length on list shapes. Another possiblity is to do nothing and value complete validation exception response messages over trying to mitigate this with special handling. One could argue that these kind of DOS attack vectors should be taken care of with a separate solution e.g. a layer that bounds a request body's size to a reasonable default (see how Axum added this ). We will provide a similar request body limiting mechanism regardless. This RFC advocates for implementing the first option, arguing that it's fair to say that the framework should return an error that is as informative as possible, but it doesn't necessarily have to be complete . However, we will also write a layer, applied by default to all server SDKs, that bounds a request body's size to a reasonable (yet high) default. Relying on users to manually apply the layer is dangerous, since such a configuration is trivially exploitable . Users can always manually apply the layer again to their resulting service if they want to further restrict a request's body size.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"428","title":"Solution proposal"},"429":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » \"Tightness\" of constraint violations","id":"429","title":"\"Tightness\" of constraint violations"},"43":{"body":"The core codegen generates HTTP requests that do not contain an authority, scheme or post. These properties must be set later based on configuration. Existing AWS services have a number of requirements that increase the complexity: Endpoints must support manual configuration by end users: let config = dynamodb::Config::builder() .endpoint(StaticEndpoint::for_uri(\"http://localhost:8000\")) When a user specifies a custom endpoint URI, typically they will want to avoid having this URI mutated by other endpoint discovery machinery. Endpoints must support being customized on a per-operation basis by the endpoint trait. This will prefix the base endpoint, potentially driven by fields of the operation. Docs Endpoints must support being customized by endpoint discovery . A request, customized by a predefined set of fields from the input operation is dispatched to a specific URI. That operation returns the endpoint that should be used. Endpoints must be cached by a cache key containing: (access_key_id, [all input fields], operation) Endpoints retrieved in this way specify a TTL. Endpoints must be able to customize the signing (and other phases of the operation). For example, requests sent to a global region will have a region set by the endpoint provider.","breadcrumbs":"Smithy » Endpoint Resolution » Requirements","id":"43","title":"Requirements"},"430":{"body":"ConstraintViolationExceptions is not \"tight\" in that there's nothing in the type system that indicates to the user, when writing the custom validation error mapping function, that the iterator will not return a sequence of ConstraintViolationExceptions that is actually impossible to occur in practice. Recall that ConstraintViolationExceptions are enums that model both direct constraint violations as well as transitive ones. For example, given the model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString The corresponding ConstraintViolationException Rust type for the LengthMap shape is: pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolationException, ), }\n} ConstraintViolationExceptions is just a container over this type: pub ConstraintViolationExceptions(pub(crate) Vec); impl IntoIterator for ConstraintViolationExceptions { ... } There might be multiple map values that fail to adhere to the constraints in LengthString, which would make the iterator yield multiple length_map::ConstraintViolationException::Values; however, at most one length_map::ConstraintViolationException::Length can be yielded in practice . This might be obvious to the service owner when inspecting the model and the Rust docs, but it's not expressed in the type system. The above tightness problem has been formulated in terms of ConstraintViolationExceptions, because the fact that ConstraintViolationExceptions contain transitive constraint violations highlights the tightness problem. Note, however, that the tightness problem also afflicts ConstraintViolations . Indeed, consider the following model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield: pub struct ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } pub mod length_pattern_string { pub enum ConstraintViolation { Length(usize), Pattern(String) }\n} impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} Observe how the iterator of an instance of ConstraintViolations, may, a priori, yield e.g. the length_pattern_string::ConstraintViolation::Length variant twice, when it's clear that the iterator should contain at most one of each of length_pattern_string::ConstraintViolation's variants.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"430","title":"Problem"},"431":{"body":"We propose a tighter API design. We substitute enums for structs whose members are all Optional, representing all the constraint violations that can occur. For list shapes and map shapes: we implement IntoIterator on an additional struct Members representing only the violations that can occur on the collection's members. we add a non Option-al field to the struct representing the constraint violations of type Members. Let's walk through an example. Take the last model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield, as per the first substitution: pub mod length_pattern_string { pub struct ConstraintViolations { pub length: Option, pub pattern: Option, } pub mod constraint_violation { pub struct Length(usize); pub struct Pattern(String); }\n} impl std::convert::TryFrom for LengthPatternString { type Error = length_pattern_string::ConstraintViolations; // The error type returned by this constructor, `ConstraintViolations`, // will always have _at least_ one member set. fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} We now expand the model to highlight the second step of the algorithm: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} This gives us: pub mod length_map { pub struct ConstraintViolations { pub length: Option, // Would be `Option` in the case of an aggregate shape that is _not_ a // list shape or a map shape. pub member_violations: constraint_violation::Members, } pub mod constraint_violation { // Note that this could now live outside the `length_map` module and be // reused across all `@length`-constrained shapes, if we expanded it with // another `usize` indicating the _modeled_ value in the `@length` trait; by // keeping it inside `length_map` we can hardcode that value in the // implementation of e.g. error messages. pub struct Length(usize); pub struct Members { pub(crate) Vec } pub struct Member { // If the map's key shape were constrained, we'd have a `key` // field here too. value: Option } pub struct Value( std::string::String, crate::model::length_string::ConstraintViolation, ); impl IntoIterator for Members { ... } }\n} The above examples have featured the tight API design with ConstraintViolations. Of course, we will apply the same design in the case of ConstraintViolationExceptions. For the sake of completeness, let's expand our model yet again with a structure shape: structure A { @required member: String, @required length_map: LengthMap,\n} And this time let's feature both the resulting ConstraintViolationExceptions and ConstraintViolations types: pub mod a { pub struct ConstraintViolationExceptions { // All fields must be `Option`, despite the members being `@required`, // since no violations for their values might have occurred. pub missing_member_exception: Option, pub missing_length_map_exception: Option, pub length_map_exceptions: Option, } pub mod constraint_violation_exception { pub struct MissingMember; pub struct MissingLengthMap; } pub struct ConstraintViolations { pub missing_member: Option, pub missing_length_map: Option, } pub mod constraint_violation { pub struct MissingMember; pub struct MissingLengthMap; }\n} As can be intuited, the only differences are that: ConstraintViolationExceptions hold transitive violations while ConstraintViolations only need to expose direct violations (as explained in the Impossible constraint violations section), ConstraintViolationExceptions have members suffixed with _exception, as is the module name. Note that while the constraint violation (exception) type names are plural, the module names are always singular. We also make a conscious decision of, in this case of structure shapes, making the types of all members Options, for simplicity. Another choice would have been to make length_map_exceptions not Option-al, and, in the case where no violations in LengthMap values occurred, set length_map::ConstraintViolations::length to None and length_map::ConstraintViolations::member_violations eventually reach an empty iterator. However, it's best that we use the expressiveness of Options at the earliest (\"highest\" in the shape hierarchy) opportunity: if a member is Some, it means it (eventually) reaches data.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Final solution proposal","id":"431","title":"Final solution proposal"},"432":{"body":"Unfortunately, while this RFC could be implemented iteratively (i.e. solve each of the problems in turn), it would introduce too much churn and throwaway work: solving the tightness problem requires a more or less complete overhaul of the constraint violations code generator. It's best that all three problems be solved in the same changeset. Generate ConstraintViolations and ConstraintViolationExceptions types so as to not reify impossible constraint violations , add the ability to collect constraint violations , and solve the \"tightness\" problem of constraint violations . Special-case generated request deserialization code for operations using @length and @uniqueItems constrained shapes whose closures reach other constrained shapes so that the validators for these two traits short-circuit upon encountering a number of inner constraint violations above a certain threshold. Write and expose a layer, applied by default to all generated server SDKs, that bounds a request body's size to a reasonable (yet high) default, to prevent trivial DoS attacks .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Checklist","id":"432","title":"Checklist"},"433":{"body":"Status: Implemented in #2129 Applies to: AWS SDK clients At time of writing, customers can retrieve a request ID in one of four ways in the Rust SDK: For error cases where the response parsed successfully, the request ID can be retrieved via accessor method on operation error. This also works for unmodeled errors so long as the response parsing succeeds. For error cases where a response was received but parsing fails, the response headers can be retrieved from the raw response on the error, but customers have to manually extract the request ID from those headers (there's no convenient accessor method). For all error cases where the request ID header was sent in the response, customers can call SdkError::into_service_error to transform the SdkError into an operation error, which has a request_id accessor on it. For success cases, the customer can't retrieve the request ID at all if they use the fluent client. Instead, they must manually make the operation and call the underlying Smithy client so that they have access to SdkSuccess, which provides the raw response where the request ID can be manually extracted from headers. Only one of these mechanisms is convenient and ergonomic. The rest need considerable improvements. Additionally, the request ID should be attached to tracing events where possible so that enabling debug logging reveals the request IDs without any code changes being necessary. This RFC proposes changes to make the request ID easier to access.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » RFC: Improving access to request IDs in SDK clients","id":"433","title":"RFC: Improving access to request IDs in SDK clients"},"434":{"body":"Request ID: A unique identifier assigned to and associated with a request to AWS that is sent back in the response headers. This identifier is useful to customers when requesting support. Operation Error: Operation errors are code generated for each operation in a Smithy model. They are an enum of every possible modeled error that that operation can respond with, as well as an Unhandled variant for any unmodeled or unrecognized errors. Modeled Errors: Any error that is represented in a Smithy model with the @error trait. Unmodeled Errors: Errors that a service responds with that do not appear in the Smithy model. SDK Clients: Clients generated for the AWS SDK, including \"adhoc\" or \"one-off\" clients. Smithy Clients: Any clients not generated for the AWS SDK, excluding \"adhoc\" or \"one-off\" clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Terminology","id":"434","title":"Terminology"},"435":{"body":"Before proposing any changes, the topic of purity needs to be covered. Request IDs are not currently a Smithy concept. However, at time of writing, the request ID concept is leaked into the non-SDK rust runtime crates and generated code via the generic error struct and the request_id functions on generated operation errors (e.g., GetObjectError example in S3 ). This RFC attempts to remove these leaks from Smithy clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » SDK/Smithy Purity","id":"435","title":"SDK/Smithy Purity"},"436":{"body":"First, we'll explore making it easier to retrieve a request ID from errors, and then look at making it possible to retrieve them from successful responses. To see the customer experience of these changes, see the Example Interactions section below.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Proposed Changes","id":"436","title":"Proposed Changes"},"437":{"body":"One could argue that customers being able to convert a SdkError into an operation error that has a request ID on it is sufficient. However, there's no way to write a function that takes an error from any operation and logs a request ID, so it's still not ideal. The aws-http crate needs to have a RequestId trait on it to facilitate generic request ID retrieval: pub trait RequestId { /// Returns the request ID if it's available. fn request_id(&self) -> Option<&str>;\n} This trait will be implemented for SdkError in aws-http where it is declared, complete with logic to pull the request ID header out of the raw HTTP responses (it will always return None for event stream Message responses; an additional trait may need to be added to aws-smithy-http to facilitate access to the headers). This logic will try different request ID header names in order of probability since AWS services have a couple of header name variations. x-amzn-requestid is the most common, with x-amzn-request-id being the second most common. aws-http will also implement RequestId for aws_smithy_types::error::Error, and the request_id method will be removed from aws_smithy_types::error::Error. Places that construct Error will place the request ID into its extras field, where the RequestId trait implementation can retrieve it. A codegen decorator will be added to sdk-codegen to implement RequestId for operation errors, and the existing request_id accessors will be removed from CombinedErrorGenerator in codegen-core. With these changes, customers can directly access request IDs from SdkError and operations errors by importing the RequestId trait. Additionally, the Smithy/SDK purity is improved since both places where request IDs are leaked to Smithy clients will be resolved.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Make request ID retrieval on errors consistent","id":"437","title":"Make request ID retrieval on errors consistent"},"438":{"body":"To make it possible to retrieve request IDs when using the fluent client, the new RequestId trait can be implemented for outputs. Some services (e.g., Transcribe Streaming) model the request ID header in their outputs, while other services (e.g., Directory Service) model a request ID field on errors. In some cases, services take RequestId as a modeled input (e.g., IoT Event Data). It follows that it is possible, but unlikely, that a service could have a field named RequestId that is not the same concept in the future. Thus, name collisions are going to be a concern for putting a request ID accessor on output. However, if it is implemented as a trait, then this concern is partially resolved. In the vast majority of cases, importing RequestId will provide the accessor without any confusion. In cases where it is already modeled and is the same concept, customers will likely just use it and not even realize they didn't import the trait. The only concern is future cases where it is modeled as a separate concept, and as long as customers don't import RequestId for something else in the same file, that confusion can be avoided. In order to implement RequestId for outputs, either the original response needs to be stored on the output, or the request ID needs to be extracted earlier and stored on the output. The latter will lead to a small amount of header lookup code duplication. In either case, the StructureGenerator needs to be customized in sdk-codegen (Appendix B outlines an alternative approach to this and why it was dismissed). This will be done by adding customization hooks to StructureGenerator similar to the ones for ServiceConfigGenerator so that a sdk-codegen decorator can conditionally add fields and functions to any generated structs. A hook will also be needed to additional trait impl blocks. Once the hooks are in place, a decorator will be added to store either the original response or the request ID on outputs, and then the RequestId trait will be implemented for them. The ParseResponse trait implementation will be customized to populate this new field. Note: To avoid name collisions of the request ID or response on the output struct, these fields can be prefixed with an underscore. It shouldn't be possible for SDK fields to code generate with this prefix given the model validation rules in place.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for outputs","id":"438","title":"Implement RequestId for outputs"},"439":{"body":"In the case that a customer wants to ditch the fluent client, it should still be easy to retrieve a request ID. To do this, aws-http will provide RequestId implementations for Operation and operation::Response. These implementations will likely make the other RequestId implementations easier to implement as well.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Operation and operation::Response","id":"439","title":"Implement RequestId for Operation and operation::Response"},"44":{"body":"Configuration objects for services must contain an Endpoint. This endpoint may be set by a user or it will default to the endpointPrefix from the service definition. In the case of endpoint discovery, this is the endpoint that we will start with. During operation construction (see Operation Construction ) an EndpointPrefix may be set on the property bag. The eventual endpoint middleware will search for this in the property bag and (depending on the URI mutability) utilize this prefix when setting the endpoint. In the case of endpoint discovery, we envision a different pattern: // EndpointClient manages the endpoint cache\nlet (tx, rx) = dynamodb::EndpointClient::new();\nlet client = aws_hyper::Client::new();\n// `endpoint_req` is an operation that can be dispatched to retrieve endpoints\n// During operation construction, the endpoint resolver is configured to be `rx` instead static endpoint\n// resolver provided by the service.\nlet (endpoint_req, req) = GetRecord::builder().endpoint_disco(rx).build_with_endpoint();\n// depending on the duration of endpoint expiration, this may be spawned into a separate task to continuously\n// refresh endpoints.\nif tx.needs(endpoint_req) { let new_endpoint = client. call(endpoint_req) .await; tx.send(new_endpoint)\n}\nlet rsp = client.call(req).await?; We believe that this design results in an SDK that both offers customers more control & reduces the likelihood of bugs from nested operation dispatch. Endpoint resolution is currently extremely rare in AWS services so this design may remain a prototype while we solidify other behaviors.","breadcrumbs":"Smithy » Endpoint Resolution » Design","id":"44","title":"Design"},"440":{"body":"The Result returned by the SDK should directly implement RequestId when both its Ok and Err variants implement RequestId. This will make it possible for a customer to feed the return value from send() directly to a request ID logger.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Result","id":"440","title":"Implement RequestId for Result"},"441":{"body":"","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Example Interactions","id":"441","title":"Example Interactions"},"442":{"body":"// A re-export of the RequestId trait\nuse aws_sdk_service::primitives::RequestId; fn my_request_id_logging_fn(request_id: &dyn RequestId) { println!(\"request ID: {:?}\", request_id.request_id());\n} let result = client.some_operation().send().await?;\nmy_request_id_logging_fn(&result);","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Generic Handling Case","id":"442","title":"Generic Handling Case"},"443":{"body":"use aws_sdk_service::primitives::RequestId; let output = client.some_operation().send().await?;\nprintln!(\"request ID: {:?}\", output.request_id());","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Success Case","id":"443","title":"Success Case"},"444":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => { println!(\"request ID: {:?}\", output.request_id()); }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with SdkError","id":"444","title":"Error Case with SdkError"},"445":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => match err.into_service_err() { err @ SomeOperationError::SomeError(_) => { println!(\"request ID: {:?}\", err.request_id()); } _ => { /* don't care */ } }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with operation error","id":"445","title":"Error Case with operation error"},"446":{"body":"Create the RequestId trait in aws-http Implement for errors Implement RequestId for SdkError in aws-http Remove request_id from aws_smithy_types::error::Error, and store request IDs in its extras instead Implement RequestId for aws_smithy_types::error::Error in aws-http Remove generation of request_id accessors from CombinedErrorGenerator in codegen-core Implement for outputs Add customization hooks to StructureGenerator Add customization hook to ParseResponse Add customization hook to HttpBoundProtocolGenerator Customize output structure code gen in sdk-codegen to add either a request ID or a response field Customize ParseResponse in sdk-codegen to populate the outputs Implement RequestId for Operation and operation::Response Implement RequestId for Result where O and E both implement RequestId Re-export RequestId in generated crates Add integration tests for each request ID access point","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Changes Checklist","id":"446","title":"Changes Checklist"},"447":{"body":"Alternatively, for successful responses, a second send method (that is difficult to name)w be added to the fluent client that has a return value that includes both the output and the request ID (or entire response). This solution was dismissed due to difficulty naming, and the risk of name collision.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix A: Alternate solution for access on successful responses","id":"447","title":"Appendix A: Alternate solution for access on successful responses"},"448":{"body":"The request ID could be stored on outputs by doing a model transform in sdk-codegen to add a RequestId member field. However, this causes problems when an output already has a RequestId field, and requires the addition of a synthetic trait to skip binding the field in the generated serializers/deserializers.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix B: Adding RequestId as a string to outputs via model transform","id":"448","title":"Appendix B: Adding RequestId as a string to outputs via model transform"},"449":{"body":"status: implemented applies-to: The smithy client This RFC proposes a new process for constructing client requests and handling service responses. This new process is intended to: Improve the user experience by Simplifying several aspects of sending a request Adding more extension points to the request/response lifecycle Improve the maintainer experience by Making our SDK more similar in structure to other AWS SDKs Simplifying many aspects of the request/response lifecycle Making room for future changes Additionally, functionality that the SDKs currently provide like retries, logging, and auth with be incorporated into this new process in such a way as to make it more configurable and understandable. This RFC references but is not the source of truth on: Interceptors: To be described in depth in a future RFC. Runtime Plugins: To be described in depth in a future RFC.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Smithy Orchestrator","id":"449","title":"Smithy Orchestrator"},"45":{"body":"AWS SDKs require that clients can evolve in a backwards compatible way as new fields and operations are added. The types generated by smithy-rs are specifically designed to meet these requirements. Specifically, the following transformations must not break compilation when upgrading to a new version: New operation added New member added to structure New union variant added New error added (todo) New enum variant added (todo) However, the following changes are not backwards compatible: Error removed from operation. In general, the best tool in Rust to solve these issues in the #[non_exhaustive] attribute which will be explored in detail below.","breadcrumbs":"Smithy » Backwards Compatibility » Backwards Compatibility","id":"45","title":"Backwards Compatibility"},"450":{"body":"When a smithy client communicates with a smithy service, messages are handled by an \"orchestrator.\" The orchestrator runs in two main phases: Constructing configuration. This process is user-configurable with \"runtime plugins.\" Configuration is stored in a typemap. Transforming a client request into a server response. This process is user-configurable with \"interceptors.\" Interceptors are functions that are run by \"hooks\" in the request/response lifecycle.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » TLDR;","id":"450","title":"TLDR;"},"451":{"body":"SDK Client : A high-level abstraction allowing users to make requests to remote services. Remote Service : A remote API that a user wants to use. Communication with a remote service usually happens over HTTP. The remote service is usually, but not necessarily, an AWS service. Operation : A high-level abstraction representing an interaction between an *SDK Client and a remote service . Input Message : A modeled request passed into an SDK client . For example, S3’s ListObjectsRequest. Transport Request Message : A message that can be transmitted to a remote service . For example, an HTTP request. Transport Response Message : A message that can be received from a remote service . For example, an HTTP response. Output Message : A modeled response or exception returned to an SDK client caller. For example, S3’s ListObjectsResponse or NoSuchBucketException. The request/response lifecycle : The process by which an SDK client makes requests and receives responses from a remote service . This process is enacted and managed by the orchestrator . Orchestrator : The code within an SDK client that handles the process of making requests and receiving responses from remote services . The orchestrator is configurable by modifying the runtime plugins it's built from. The orchestrator is responsible for calling interceptors at the appropriate times in the request/response lifecycle . Interceptor / Hook : A generic extension point within the orchestrator . Supports \"anything that someone should be able to do\", NOT \"anything anyone might want to do\". These hooks are: Either read-only or read/write . Able to read and modify the Input , Transport Request , Transport Response , or Output messages. Runtime Plugin : Runtime plugins are similar to interceptors, but they act on configuration instead of requests and response. Both users and services may define runtime plugins. Smithy also defines several default runtime plugins used by most clients. See the F.A.Q. for a list of plugins with descriptions. ConfigBag : A typemap that's equivalent to http::Extensions . Used to store configuration for the orchestrator.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Terminology","id":"451","title":"Terminology"},"452":{"body":"For many users, the changes described by this RFC will be invisible. Making a request with an orchestrator-based SDK client looks very similar to the way requests were made pre-RFC: let sdk_config = aws_config::load_from_env().await;\nlet client = aws_sdk_s3::Client::new(&sdk_config);\nlet res = client.get_object() .bucket(\"a-bucket\") .key(\"a-file.txt\") .send() .await?; match res { Ok(res) => println!(\"success: {:?}\"), Err(err) => eprintln!(\"failure: {:?}\")\n}; Users may further configure clients and operations with runtime plugins , and they can modify requests and responses with interceptors . We'll examine each of these concepts in the following sections.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The user experience if this RFC is implemented","id":"452","title":"The user experience if this RFC is implemented"},"453":{"body":"The exact implementation of runtime plugins is left for another RFC. That other RFC will be linked here once it's written. To get an idea of what they may look like, see the \"Layered configuration, stored in type maps\" section of this RFC. Runtime plugins construct and modify client configuration. Plugin initialization is the first step of sending a request, and plugins set in later steps can override the actions of earlier plugins. Plugin ordering is deterministic and non-customizable. While AWS services define a default set of plugins, users may define their own plugins, and set them by calling the appropriate methods on a service's config, client, or operation. Plugins are specifically meant for constructing service and operation configuration. If a user wants to define behavior that should occur at specific points in the request/response lifecycle , then they should instead consider defining an interceptor .","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Service clients and operations are configured with runtime plugins","id":"453","title":"Service clients and operations are configured with runtime plugins"},"454":{"body":"Interceptors are similar to middlewares, in that they are functions that can read and modify request and response state. However, they are more restrictive than middlewares in that they can't modify the \"control flow\" of the request/response lifecycle. This is intentional. Interceptors can be registered on a client or operation, and the orchestrator is responsible for calling interceptors at the appropriate time. Users MUST NOT perform blocking IO within an interceptor. Interceptors are sync, and are not intended to perform large amounts of work. This makes them easier to reason about and use. Depending on when they are called, interceptors may read and modify input messages , transport request messages , transport response messages , and output messages . Additionally, all interceptors may write to a context object that is shared between all interceptors. Currently supported hooks Read Before Execution (Read-Only) : Before anything happens. This is the first thing the SDK calls during operation execution. Modify Before Serialization (Read/Write) : Before the input message given by the customer is marshalled into a transport request message. Allows modifying the input message. Read Before Serialization (Read-Only) : The last thing the SDK calls before marshaling the input message into a transport message. Read After Serialization (Read-Only) : The first thing the SDK calls after marshaling the input message into a transport message. (Retry Loop) Modify Before Retry Loop (Read/Write) : The last thing the SDK calls before entering the retry look. Allows modifying the transport message. Read Before Attempt (Read-Only) : The first thing the SDK calls “inside” of the retry loop. Modify Before Signing (Read/Write) : Before the transport request message is signed. Allows modifying the transport message. Read Before Signing (Read-Only) : The last thing the SDK calls before signing the transport request message. **Read After Signing (Read-Only)****: The first thing the SDK calls after signing the transport request message. Modify Before Transmit (Read/Write) : Before the transport request message is sent to the service. Allows modifying the transport message. Read Before Transmit (Read-Only) : The last thing the SDK calls before sending the transport request message. Read After Transmit (Read-Only) : The last thing the SDK calls after receiving the transport response message. Modify Before Deserialization (Read/Write) : Before the transport response message is unmarshaled. Allows modifying the transport response message. Read Before Deserialization (Read-Only) : The last thing the SDK calls before unmarshalling the transport response message into an output message. Read After Deserialization (Read-Only) : The last thing the SDK calls after unmarshaling the transport response message into an output message. Modify Before Attempt Completion (Read/Write) : Before the retry loop ends. Allows modifying the unmarshaled response (output message or error). Read After Attempt (Read-Only) : The last thing the SDK calls “inside” of the retry loop. Modify Before Execution Completion (Read/Write) : Before the execution ends. Allows modifying the unmarshaled response (output message or error). Read After Execution (Read-Only) : After everything has happened. This is the last thing the SDK calls during operation execution.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Requests and responses are modified by interceptors","id":"454","title":"Requests and responses are modified by interceptors"},"455":{"body":"As mentioned above, interceptors may read/write a context object that is shared between all interceptors: pub struct InterceptorContext { // a.k.a. the input message modeled_request: ModReq, // a.k.a. the transport request message tx_request: Option, // a.k.a. the output message modeled_response: Option, // a.k.a. the transport response message tx_response: Option, // A type-keyed map properties: SharedPropertyBag,\n} The optional request and response types in the interceptor context can only be accessed by interceptors that are run after specific points in the request/response lifecycle . Rather than go into depth in this RFC, I leave that to a future \"Interceptors RFC.\"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Interceptor context","id":"455","title":"Interceptor context"},"456":{"body":"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » How to implement this RFC","id":"456","title":"How to implement this RFC"},"457":{"body":"Imagine we have some sort of request signer. This signer doesn't refer to any orchestrator types. All it needs is a HeaderMap along with two strings, and will return a signature in string form. struct Signer; impl Signer { fn sign(headers: &http::HeaderMap, signing_name: &str, signing_region: &str) -> String { todo!() }\n} Now imagine things from the orchestrator's point of view. It requires something that implements an AuthOrchestrator which will be responsible for resolving the correct auth scheme, identity, and signer for an operation, as well as signing the request pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} // And it calls that `AuthOrchestrator` like so:\nfn invoke() { // code omitted for brevity // Get the request to be signed let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); // Fetch the auth orchestrator from the bag let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; // Auth the request auth_orchestrator.auth_request(tx_req_mut, cfg)?; // code omitted for brevity\n} The specific implementation of the AuthOrchestrator is what brings these two things together: struct Sigv4AuthOrchestrator; impl AuthOrchestrator for Sigv4AuthOrchestrator { fn auth_request(&self, req: &mut http::Request, cfg: &ConfigBag) -> Result<(), BoxError> { let signer = Signer; let signing_name = cfg.get::().ok_or(Error::MissingSigningName)?; let signing_region = cfg.get::().ok_or(Error::MissingSigningRegion)?; let headers = req.headers_mut(); let signature = signer.sign(headers, signing_name, signing_region); match cfg.get::() { Some(SignatureLocation::Query) => req.query.set(\"sig\", signature), Some(SignatureLocation::Header) => req.headers_mut().insert(\"sig\", signature), None => return Err(Error::MissingSignatureLocation), }; Ok(()) }\n} This intermediate code should be free from as much logic as possible. Whenever possible, we must maintain this encapsulation. Doing so will make the Orchestrator more flexible, maintainable, and understandable.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Integrating with the orchestrator","id":"457","title":"Integrating with the orchestrator"},"458":{"body":"Type map : A data structure where stored values are keyed by their type. Hence, only one value can be stored for a given type. See typemap , type-map , http::Extensions , and actix_http::Extensions for examples. let conf: ConfigBag = aws_config::from_env() // Configuration can be common to all smithy clients .with(RetryConfig::builder().disable_retries().build()) // Or, protocol-specific .with(HttpClient::builder().build()) // Or, AWS-specific .with(Region::from(\"us-east-1\")) // Or, service-specific .with(S3Config::builder().force_path_style(false).build()) .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() // Configuration can be set on operations as well as clients .with(HttpConfig::builder().conn(some_other_conn).build()) .send() .await; Setting configuration that will not be used wastes memory and can make debugging more difficult. Therefore, configuration defaults are only set when they're relevant. For example, if a smithy service doesn't support HTTP, then no HTTP client will be set. What is \"layered\" configuration? Configuration has precedence. Configuration set on an operation will override configuration set on a client, and configuration set on a client will override default configuration. However, configuration with a higher precedence can also augment configuration with a lower precedence. For example: let conf: ConfigBag = aws_config::from_env() .with( SomeConfig::builder() .option_a(1) .option_b(2) .option_c(3) ) .build() .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() .with( SomeConfig::builder() .option_a(0) .option_b(Value::Inherit) .option_c(Value::Unset) ) .build() .send() .await; In the above example, when the option_a, option_b, option_c, values of SomeConfig are accessed, they'll return: option_a: 0 option_b: 2 option_c: No value Config values are wrapped in a special enum called Value with three variants: Value::Set: A set value that will override values from lower layers. Value::Unset: An explicitly unset value that will override values from lower layers. Value::Inherit: An explicitly unset value that will inherit a value from a lower layer. Builders are defined like this: struct SomeBuilder { value: Value,\n} impl struct SomeBuilder { fn new() -> Self { // By default, config values inherit from lower-layer configs Self { value: Value::Inherit } } fn some_field(&mut self, value: impl Into>) -> &mut self { self.value = value.into(); self }\n} Because of impl Into>, users don't need to reference the Value enum unless they want to \"unset\" a value. Layer separation and precedence Codegen defines default sets of interceptors and runtime plugins at various \"levels\": AWS-wide defaults set by codegen. Service-wide defaults set by codegen. Operation-specific defaults set by codegen. Likewise, users may mount their own interceptors and runtime plugins: The AWS config level, e.g. aws_types::Config. The service config level, e.g. aws_sdk_s3::Config. The operation config level, e.g. aws_sdk_s3::Client::get_object. Configuration is resolved in a fixed manner by reading the \"lowest level\" of config available, falling back to \"higher levels\" only when no value has been set. Therefore, at least 3 separate ConfigBags are necessary, and user configuration has precedence over codegen-defined default configuration. With that in mind, resolution of configuration would look like this: Check user-set operation config. Check codegen-defined operation config. Check user-set service config. Check codegen-defined service config. Check user-set AWS config. Check codegen-defined AWS config.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Layered configuration, stored in type maps","id":"458","title":"Layered configuration, stored in type maps"},"459":{"body":"I've omitted some of the error conversion to shorten this example and make it easier to understand. The real version will be messier. /// `In`: The input message e.g. `ListObjectsRequest`\n/// `Req`: The transport request message e.g. `http::Request`\n/// `Res`: The transport response message e.g. `http::Response`\n/// `Out`: The output message. A `Result` containing either:\n/// - The 'success' output message e.g. `ListObjectsResponse`\n/// - The 'failure' output message e.g. `NoSuchBucketException`\npub async fn invoke( input: In, interceptors: &mut Interceptors>, runtime_plugins: &RuntimePlugins, cfg: &mut ConfigBag,\n) -> Result where // The input must be Clone in case of retries In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ let mut ctx: InterceptorContext> = InterceptorContext::new(input); runtime_plugins.apply_client_configuration(cfg)?; interceptors.client_read_before_execution(&ctx, cfg)?; runtime_plugins.apply_operation_configuration(cfg)?; interceptors.operation_read_before_execution(&ctx, cfg)?; interceptors.read_before_serialization(&ctx, cfg)?; interceptors.modify_before_serialization(&mut ctx, cfg)?; let request_serializer = cfg .get::>>() .ok_or(\"missing serializer\")?; let req = request_serializer.serialize_request(ctx.modeled_request_mut(), cfg)?; ctx.set_tx_request(req); interceptors.read_after_serialization(&ctx, cfg)?; interceptors.modify_before_retry_loop(&mut ctx, cfg)?; loop { make_an_attempt(&mut ctx, cfg, interceptors).await?; interceptors.read_after_attempt(&ctx, cfg)?; interceptors.modify_before_attempt_completion(&mut ctx, cfg)?; let retry_strategy = cfg .get::>>>() .ok_or(\"missing retry strategy\")?; let mod_res = ctx .modeled_response() .expect(\"it's set during 'make_an_attempt'\"); if retry_strategy.should_retry(mod_res, cfg)? { continue; } interceptors.modify_before_completion(&mut ctx, cfg)?; let trace_probe = cfg .get::>() .ok_or(\"missing trace probes\")?; trace_probe.dispatch_events(cfg); interceptors.read_after_execution(&ctx, cfg)?; break; } let (modeled_response, _) = ctx.into_responses()?; modeled_response\n} // Making an HTTP request can fail for several reasons, but we still need to\n// call lifecycle events when that happens. Therefore, we define this\n// `make_an_attempt` function to make error handling simpler.\nasync fn make_an_attempt( ctx: &mut InterceptorContext>, cfg: &mut ConfigBag, interceptors: &mut Interceptors>,\n) -> Result<(), BoxError> where In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ interceptors.read_before_attempt(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let endpoint_orchestrator = cfg .get::>>() .ok_or(\"missing endpoint orchestrator\")?; endpoint_orchestrator.resolve_and_apply_endpoint(tx_req_mut, cfg)?; interceptors.modify_before_signing(ctx, cfg)?; interceptors.read_before_signing(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; auth_orchestrator.auth_request(tx_req_mut, cfg)?; interceptors.read_after_signing(ctx, cfg)?; interceptors.modify_before_transmit(ctx, cfg)?; interceptors.read_before_transmit(ctx, cfg)?; // The connection consumes the request but we need to keep a copy of it // within the interceptor context, so we clone it here. let res = { let tx_req = ctx.tx_request_mut().expect(\"tx_request has been set\"); let connection = cfg .get::>>() .ok_or(\"missing connector\")?; connection.call(tx_req, cfg).await? }; ctx.set_tx_response(res); interceptors.read_after_transmit(ctx, cfg)?; interceptors.modify_before_deserialization(ctx, cfg)?; interceptors.read_before_deserialization(ctx, cfg)?; let tx_res = ctx.tx_response_mut().expect(\"tx_response has been set\"); let response_deserializer = cfg .get::>>>() .ok_or(\"missing response deserializer\")?; let res = response_deserializer.deserialize_response(tx_res, cfg)?; ctx.set_modeled_response(res); interceptors.read_after_deserialization(ctx, cfg)?; Ok(())\n} Traits At various points in the execution of invoke, trait objects are fetched from the ConfigBag. These are preliminary definitions of those traits: pub trait TraceProbe: Send + Sync + Debug { fn dispatch_events(&self, cfg: &ConfigBag) -> BoxFallibleFut<()>;\n} pub trait RequestSerializer: Send + Sync + Debug { fn serialize_request(&self, req: &mut In, cfg: &ConfigBag) -> Result;\n} pub trait ResponseDeserializer: Send + Sync + Debug { fn deserialize_response(&self, res: &mut TxRes, cfg: &ConfigBag) -> Result;\n} pub trait Connection: Send + Sync + Debug { fn call(&self, req: &mut TxReq, cfg: &ConfigBag) -> BoxFallibleFut;\n} pub trait RetryStrategy: Send + Sync + Debug { fn should_retry(&self, res: &Out, cfg: &ConfigBag) -> Result;\n} pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} pub trait EndpointOrchestrator: Send + Sync + Debug { fn resolve_and_apply_endpoint(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>; fn resolve_auth_schemes(&self) -> Result, BoxError>;\n}","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The aws-smithy-orchestrator crate","id":"459","title":"The aws-smithy-orchestrator crate"},"46":{"body":"Before $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject]\n} After $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject, PutObject]\n} Adding support for a new operation is backwards compatible because SDKs to not expose any sort of \"service trait\" that provides an interface over an entire service. This prevents clients from inheriting or implementing an interface that would be broken by the addition of a new operation.","breadcrumbs":"Smithy » Backwards Compatibility » New Operation Added","id":"46","title":"New Operation Added"},"460":{"body":"The orchestrator is a large and complex feature, with many moving parts. How can we ensure that multiple people can contribute in parallel? By defining the entire orchestrator and agreeing on its structure, we can then move on to working on individual runtime plugins and interceptors. What is the precedence of interceptors? The precedence of interceptors is as follows: Interceptors registered via Smithy default plugins. (AWS Services only) Interceptors registered via AWS default plugins. Interceptors registered via service-customization plugins. Interceptors registered via client-level plugins. Interceptors registered via client-level configuration. Interceptors registered via operation-level plugins. Interceptors registered via operation-level configuration. What runtime plugins will be defined in smithy-rs? RetryStrategy: Configures how requests are retried. TraceProbes: Configures locations to which SDK metrics are published. EndpointProviders: Configures which hostname an SDK will call when making a request. HTTPClients: Configures how remote services are called. IdentityProviders: Configures how customers identify themselves to remote services. HTTPAuthSchemes & AuthSchemeResolvers: Configures how customers authenticate themselves to remote services. Checksum Algorithms: Configures how an SDK calculates request and response checksums.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » F.A.Q.","id":"460","title":"F.A.Q."},"461":{"body":"Create a new aws-smithy-runtime crate. Add orchestrator implementation Define the orchestrator/runtime plugin interface traits TraceProbe RequestSerializer ResponseDeserializer Connection RetryStrategy AuthOrchestrator EndpointOrchestrator Create a new aws-smithy-runtime-api crate. Add ConfigBag module Add retries module Add rate_limiting sub-module Add interceptors module Interceptor trait InterceptorContext impl Add runtime_plugins module Create a new integration test that ensures the orchestrator works.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Changes checklist","id":"461","title":"Changes checklist"},"462":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a breaking change to how generated clients automatically provide default values for collections. Currently the SDK generated fields for List generate optional values: ///

    Container for elements related to a particular part. pub fn parts(&self) -> Option<&[crate::types::Part]> { self.parts.as_deref() } This is almost never what users want and leads to code noise when using collections: async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project .ids() .unwrap_or_default(); // ^^^^^^^^^^^^^^^^^^ this is pure noise\n} This RFC proposes unwrapping into default values in our accessor methods.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » RFC: Collection Defaults","id":"462","title":"RFC: Collection Defaults"},"463":{"body":"Accessor : The Rust SDK defines accessor methods on modeled structures for fields to make them more convenient for users Struct field : The accessors point to concrete fields on the struct itself.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Terminology","id":"463","title":"Terminology"},"464":{"body":"In the current version of the SDK, users must call .unwrap_or_default() frequently. Once this RFC is implemented, users will be able to use these accessors directly. In the rare case where users need to distinguish be None and [], we will direct users towards model..is_some(). async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project.ids(); // Goodbye to this line: // .unwrap_or_default();\n}","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » The user experience if this RFC is implemented","id":"464","title":"The user experience if this RFC is implemented"},"465":{"body":"In order to implement this feature, we need update the code generate accessors for lists and maps to add .unwrap_or_default(). Because we are returning slices unwrap_or_default() does not produce any additional allocations for empty collection.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » How to actually implement this RFC","id":"465","title":"How to actually implement this RFC"},"466":{"body":"This works for lists because we are returning a slice (allowing a statically owned &[] to be returned.) If we want to support HashMaps in the future this is possible by using OnceCell to create empty HashMaps for requisite types. This would allow us to return references to those empty maps.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Could this be implemented for HashMap?","id":"466","title":"Could this be implemented for HashMap?"},"467":{"body":"No, many existing APIs don't have the default trait.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Isn't this handled by the default trait?","id":"467","title":"Isn't this handled by the default trait?"},"468":{"body":"Estimated total work: 2 days Update accessor method generation to auto flatten lists Update docs for accessors to guide users to .field.is_some() if they MUST determine if the field was set.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Changes checklist","id":"468","title":"Changes checklist"},"469":{"body":"Status: Accepted Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how we plan to refactor the SDK to allow the SDK to consume a 1.0 version of hyper, http-body, and http at a later date. Currently, hyper is 0.14.x and a 1.0 release candidate series is in progress. However, there are open questions that may significantly delay the launch of these three crates. We do not want to tie the 1.0 of the Rust SDK to these crates.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » RFC: Eliminating Public http dependencies","id":"469","title":"RFC: Eliminating Public http dependencies"},"47":{"body":"","breadcrumbs":"Smithy » Backwards Compatibility » New member added to structure","id":"47","title":"New member added to structure"},"470":{"body":"http-body : A crate (and trait) defining how HTTP bodies work. Notably, the change from 0.* to 1.0 changes http-body to operate on frames instead of having separate methods. http (crate): a low level crate of http primitives (no logic, just requests and responses) ossified dependency: An ossified dependency describes a dependency that, when a new version is released, cannot be utilized without breaking changes. For example, if the mutate_request function on every operation operates on &mut http::Request where http = 0.2, that dependency is \"ossified.\" Compare this to a function that offers the ability to convert something into an http = 0.2 request—since http=1 and http=0.2 are largely equivalent, the existence of this function does not prevent us from using http = 1 in the future. In general terms, functions that operate on references are much more likely to ossify —There is no practical way for someone to mutate an http = 0.2 request if you have an http = 1 request other than a time-consuming clone, and reconversion process.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Terminology","id":"470","title":"Terminology"},"471":{"body":"Performance : At some point in the Future, hyper = 1, http = 1 and http-body = 1 will be released. It takes ~1-2 microseconds to rebuild an HTTP request. If we assume that hyper = 1 will only operate on http = 1 requests, then if we can't use http = 1 requests internally, our only way of supporting hyper = 1 will be to convert the HTTP request at dispatch time. Besides pinning us to a potentially unsupported version of the HTTP crate, this will prevent us from directly dispatching requests in an efficient manner. With a total overhead of 20µs for the SDK, 1µs is not insignificant. Furthermore, it grows as the number of request headers grow. A benchmark should be run for a realistic HTTP request e.g. one that we send to S3. Hyper Upgrade : Hyper 1 is significantly more flexible than Hyper 0.14.x, especially WRT to connection management & pooling. If we don't make these changes, the upgrade to Hyper 1.x could be significantly more challenging. Security Fixes : If we're still on http = 0.* and a vulnerability is identified, we may end up needing to manually contribute the patch. The http crate is not trivial and contains parsing logic and optimized code (including a non-trivial amount of unsafe). See this GitHub issue . Notable is that one issue may be unsound and result in changing the public API. API Friendliness If we ship with an API that public exposes customers to http = 0.*, we have the API forever. We have to consider that we aren't shipping the Rust SDK for this month or even this year but probably the Rust SDK for the next 5-10 years. Future CRT Usage If we make this change, we enable a future where we can use the CRT HTTP request type natively without needing a last minute conversion to the CRT HTTP Request type. struct HttpRequest { inner: Inner\n} enum Inner { Httpv0(http_0::Request), Httpv1(http_1::Request), Crt(aws_crt_http::Request)\n}","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Why is this important?","id":"471","title":"Why is this important?"},"472":{"body":"Customers are impacted in 3 main locations: HTTP types in Interceptors HTTP types in customize(...) HTTP types in Connectors In all three of these cases, users would interact with our http wrapper types instead. In the current version of the SDK, we expose public dependencies on the http crate in several key places: The sigv4 crate. The sigv4 crate currently operates directly on many types from the http crate. This is unnecessary and actually makes the crate more difficult to use. Although http may be used internally, http will be removed from the public API of this crate. Interceptor Context: interceptors can mutate the HTTP request through an unshielded interface. This requires creating a wrapper layer around http::Request and updating already written interceptors. aws-config: http::Response and uri A long tail of exposed requests and responses in the runtime crates. Many of these crates will be removed post-orchestrator so this can be temporarily delayed.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » The user experience if this RFC is implemented","id":"472","title":"The user experience if this RFC is implemented"},"473":{"body":"","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » How to actually implement this RFC","id":"473","title":"How to actually implement this RFC"},"474":{"body":"One key mechanism that we SHOULD use for allowing our APIs to evolve in the future is usage of ~ version bounds for the runtime crates after releasing 1.0.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Enabling API evolution","id":"474","title":"Enabling API evolution"},"475":{"body":"In order to enable HTTP evolution, we will create a set of wrapper structures around http::Request and http::Response. These will use http = 0 internally. Since the HTTP crate itself is quite small, including private dependencies on both versions of the crate is a workable solution. In general, we will aim for an API that is close to drop-in compatible to the HTTP crate while ensuring that a different crate could be used as the backing storage. // since it's our type, we can default `SdkBody`\npub struct Request { // this uses the http = 0.2 request. In the future, we can make an internal enum to allow storing an http = 1 http_0: http::Request\n} Conversion to/from http::Request One key property here is that although converting to/from an http::Request can be expensive, this is not ossification of the API. This is because the API can support converting from/to both http = 0 and http = 1 in the future—because it offers mutation of the request via a unified interface, the request would only need to be converted once for dispatch if there was a mismatch (instead of repeatedly). At some point in the future, the http = 0 representation could be deprecated and removed or feature gated. Challenges Creating an HTTP API which is forwards compatible, idiomatic and \"truthful\" without relying on existing types from Hyper—e.g. when adding a header, we need to account for the possibility that a header is invalid. Allow for future forwards-compatible evolution in the API—A lot of thought went into the http crate API w.r.t method parameters, types, and generics. Although we can aim for a simpler solution in some cases (e.g. accepting &str instead of HeaderName), we need to be careful that we do so while allowing API evolution.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Http Request Wrapper","id":"475","title":"Http Request Wrapper"},"476":{"body":"The SigV4 crate signs a number of HTTP types directly. We should change it to accept strings, and when appropriate, iterators of strings for headers.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the SigV4 HTTP dependency","id":"476","title":"Removing the SigV4 HTTP dependency"},"477":{"body":"Generated clients currently include a public HTTP dependency in customize. This should be changed to accept our HTTP wrapper type instead or be restricted to a subset of operations (e.g. add_header) while forcing users to add an interceptor if they need full control.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the HTTP dependency from generated clients","id":"477","title":"Removing the HTTP dependency from generated clients"},"478":{"body":"Create the http::Request wrapper. Carefully audit for compatibility without breaking changes. 5 Days. Refactor currently written interceptors to use the wrapper: 2 days. Refactor the SigV4 crate to remove the HTTP dependency from the public interface: 2 days. Add / validate support for SdkBody http-body = 1.0rc.2 either in a PR or behind a feature gate. Test this to ensure it works with Hyper. Some previous work here exists: 1 week Remove http::Response and Uri from the public exposed types in aws-config: 1-4 days. Long tail of other usages: 1 week Implement ~ versions for SDK Crate => runtime crate dependencies: 1 week","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Changes checklist","id":"478","title":"Changes checklist"},"479":{"body":"Status: RFC Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the API of our wrapper types around http::Request and http::Response. For more information about why we are wrapping these types, see RFC 0036: The HTTP Dependency .","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » RFC: The HTTP Wrapper Type","id":"479","title":"RFC: The HTTP Wrapper Type"},"48":{"body":"Structures are marked #[non_exhaustive] Structures must be instantiated using builders Structures must not derive Default in the event that required fields are added in the future. In general, adding a new public member to a structure in Rust is not backwards compatible. However, by applying the #[non_exhaustive] to the structures generated by the Rust SDK, the Rust compiler will prevent users from using our structs in ways that prevent new fields from being added in the future. Note : in this context, the optionality of the fields is irrelevant. Specifically, #[non_exhaustive] prohibits the following patterns: Direct structure instantiation: # fn foo() {\nlet ip_addr = IpAddress { addr: \"192.168.1.1\" };\n# } If a new member is_local: boolean was added to the IpAddress structure, this code would not compile. To enable users to still construct our structures while maintaining backwards compatibility, all structures expose a builder, accessible at SomeStruct::Builder: # fn foo() {\nlet ip_addr = IpAddress::builder().addr(\"192.168.1.1\").build();\n# } Structure destructuring: # fn foo() {\nlet IpAddress { addr } = some_ip_addr();\n# } This will also fail to compile if a new member is added, however, by adding #[non_exhaustive], the .. multifield wildcard MUST be added to support new fields being added in the future: # fn foo() {\nlet IpAddress { addr, .. } = some_ip_addr();\n# }","breadcrumbs":"Smithy » Backwards Compatibility » Summary","id":"48","title":"Summary"},"480":{"body":"Extensions / \"Request Extensions\": The http crate Request/Response types include a typed property bag to store additional metadata along with the request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Terminology","id":"480","title":"Terminology"},"481":{"body":"In the current version of the SDK, external customers and internal code interacts directly with the http crate. Once this RFC is implemented, interactions at the public API level will occur with our own http types instead. Our types aim to be nearly drop-in-compatible for types in the http crate, however: We will not expose existing HTTP types in public APIs in ways that are ossified. When possible, we aim to simplify the APIs to make them easier to use. We will add SDK specific helper functionality when appropriate, e.g. first-level support for applying an endpoint to a request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » The user experience if this RFC is implemented","id":"481","title":"The user experience if this RFC is implemented"},"482":{"body":"We will need to add two types, HttpRequest and HttpResponse. To string or not to String Our header library restricts header names and values to Strings (UTF-8). Although the http library is very precise in its representation—it allows for HeaderValues that are both a super and subset of String—a superset because headers support arbitrary binary data but a subset because headers cannot contain control characters like \\n. Although technically allowed, headers containing arbitrary binary data are not widely supported. Generally, Smithy protocols will use base-64 encoding when storing binary data in headers. Finally, it's nicer for users if they can stay in \"string land\". Because of this, HttpRequest and Response expose header names and values as strings. Internally, the current design uses HeaderName and HeaderValue, however, there is a gate on construction that enforces that values are valid UTF-8. This is a one way door because .as_str() would panic in the future if we allow non-string values into headers. Where should these types live? These types will be used by all orchestrator functionality, so they will be housed in aws-smithy-runtime-api What's in and what's out? At the onset, these types focus on supporting the most ossified usages: &mut modification of HTTP types. They do not support construction of HTTP types, other than impl From and From. We will also make it possible to use http::HeaderName / http::HeaderValue in a zero-cost way. The AsHeaderComponent trait All header insertion methods accept impl AsHeaderComponent. This allows us to provide a nice user experience while taking advantage of zero-cost usage of 'static str. We will seal this trait to prevent external usage. We will have separate implementation for: &'static str String http02x::HeaderName Additional Functionality Our wrapper type will add the following additional functionality: Support for self.try_clone() Support for &mut self.apply_endpoint(...) Handling failure There is no stdlib type that cleanly defines what may be placed into headers—String is too broad (even if we restrict to ASCII). This RFC proposes moving fallibility to the APIs: impl HeadersMut<'_> { pub fn try_insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result, BoxError> { // ... }\n} This allows us to offer user-friendly types while still avoiding runtime panics. We also offer insert and append which panic on invalid values. Request Extensions There is ongoing work which MAY restrict HTTP extensions to clone types. We will preempt that by: Preventing Extensions from being present when initially constructing our HTTP request wrapper. Forbidding non-clone extensions from being inserted into the wrapped request. This also enables supporting request extensions for different downstream providers by allowing cloning into different extension types. Proposed Implementation Proposed Implementation of `request` {{#include ../../../rust-runtime/aws-smithy-runtime-api/src/client/http/request.rs}}","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » How to actually implement this RFC","id":"482","title":"How to actually implement this RFC"},"483":{"body":"Currently, the only way to construct Request is from a compatible type (e.g. http02x::Request)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Future Work","id":"483","title":"Future Work"},"484":{"body":"Implement initial implementation and test it against the SDK as written Add test suite of HTTP wrapper External design review Update the SigV4 crate to remove http API dependency Update the SDK to use the new type (breaking change)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Changes checklist","id":"484","title":"Changes checklist"},"485":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the user experience and implementation of user-configurable retry classification. Custom retry classifiers enable users to change what responses are retried while still allowing them to rely on defaults set by SDK authors when desired.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » RFC: User-configurable retry classification","id":"485","title":"RFC: User-configurable retry classification"},"486":{"body":"Smithy Service : An HTTP service, whose API is modeled with the Smithy IDL . Smithy Client : An HTTP client generated by smithy-rs from a .smithy model file. AWS SDK : A smithy client that's specifically configured to work with an AWS service. Operation : A modeled interaction with a service, defining the proper input and expected output shapes, as well as important metadata related to request construction. \"Sending\" an operation implies sending one or more HTTP requests to a Smithy service , and then receiving an output or error in response. Orchestrator : The client code which manages the request/response pipeline. The orchestrator is responsible for: Constructing, serializing, and sending requests. Receiving, deserializing, and (optionally) retrying requests. Running interceptors (not covered in this RFC) and handling errors. Runtime Component : A part of the orchestrator responsible for a specific function. Runtime components are used by the orchestrator itself, may depend on specific configuration, and must not be changed by interceptors. Examples include the endpoint resolver, retry strategy, and request signer. Runtime Plugin : Code responsible for setting and runtime components and related configuration. Runtime plugins defined by codegen are responsible for setting default configuration and altering the behavior of Smithy clients including the AWS SDKs .","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Terminology","id":"486","title":"Terminology"},"487":{"body":"A Retry Strategy is the process by which the orchestrator determines when and how to retry failed requests. Only one retry strategy may be set at any given time. During its operation, the retry strategy relies on a series of Retry Classifiers to determine if and how a failed request should be retried. Retry classifiers each have a Retry Classifier Priority so that regardless of whether they are set during config or operation construction, they'll always run in a consistent order. Classifiers are each run in turn by the retry strategy: pub fn run_classifiers_on_ctx( classifiers: impl Iterator, ctx: &InterceptorContext,\n) -> RetryAction { // By default, don't retry let mut result = RetryAction::NoActionIndicated; for classifier in classifiers { let new_result = classifier.classify_retry(ctx); // If the result is `NoActionIndicated`, continue to the next classifier // without overriding any previously-set result. if new_result == RetryAction::NoActionIndicated { continue; } // Otherwise, set the result to the new result. tracing::trace!( \"Classifier '{}' set the result of classification to '{}'\", classifier.name(), new_result ); result = new_result; // If the result is `RetryForbidden`, stop running classifiers. if result == RetryAction::RetryForbidden { tracing::trace!(\"retry classification ending early because a `RetryAction::RetryForbidden` was emitted\",); break; } } result\n} NOTE: User-defined retry strategies are responsible for calling run_classifiers_on_ctx. Lower-priority classifiers run first, but the retry actions they return may be overridden by higher-priority classifiers. Classification stops immediately if any classifier returns RetryAction::RetryForbidden.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How the orchestrator should model retries","id":"487","title":"How the orchestrator should model retries"},"488":{"body":"In the current version of the SDK, users are unable to configure retry classification, except by defining a custom retry strategy. Once this RFC is implemented, users will be able to define and set their own classifiers.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The user experience if this RFC is implemented","id":"488","title":"The user experience if this RFC is implemented"},"489":{"body":"#[derive(Debug)]\nstruct CustomRetryClassifier; impl ClassifyRetry for CustomRetryClassifier { fn classify_retry( &self, ctx: &InterceptorContext, ) -> Option { // Check for a result let output_or_error = ctx.output_or_error(); // Check for an error let error = match output_or_error { // Typically, when the response is OK or unset // then `RetryAction::NoActionIndicated` is returned. Some(Ok(_)) | None => return RetryAction::NoActionIndicated, Some(Err(err)) => err, }; todo!(\"inspect the error to determine if a retry attempt should be made.\") } fn name(&self) -> &'static str { \"my custom retry classifier\" } fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n} Choosing a retry classifier priority Sticking with the default priority is often the best choice. Classifiers should restrict the number of cases they can handle in order to avoid having to compete with other classifiers. When two classifiers would classify a response in two different ways, the priority system gives us the ability to decide which classifier should be respected. Internally, priority is implemented with a simple numeric system. In order to give the smithy-rs team the flexibility to make future changes, this numeric system is private and inaccessible to users. Instead, users may set the priority of classifiers relative to one another with the with_lower_priority_than and with_higher_priority_than methods: impl RetryClassifierPriority { /// Create a new `RetryClassifierPriority` with lower priority than the given priority. pub fn with_lower_priority_than(other: Self) -> Self { ... } /// Create a new `RetryClassifierPriority` with higher priority than the given priority. pub fn with_higher_priority_than(other: Self) -> Self { ... }\n} For example, if it was important for our CustomRetryClassifier in the previous example to run before the default HttpStatusCodeClassifier, a user would define the CustomRetryClassifier priority like this: impl ClassifyRetry for CustomRetryClassifier { fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::run_before(RetryClassifierPriority::http_status_code_classifier()) }\n} The priorities of the three default retry classifiers (HttpStatusCodeClassifier, ModeledAsRetryableClassifier, and TransientErrorClassifier) are all public for this purpose. Users may ONLY set a retry priority relative to an existing retry priority. RetryAction and RetryReason Retry classifiers communicate to the retry strategy by emitting RetryActions: /// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug, Default)]\npub enum RetryAction { /// When a classifier can't run or has no opinion, this action is returned. /// /// For example, if a classifier requires a parsed response and response parsing failed, /// this action is returned. If all classifiers return this action, no retry should be /// attempted. #[default] NoActionIndicated, /// When a classifier runs and thinks a response should be retried, this action is returned. RetryIndicated(RetryReason), /// When a classifier runs and decides a response must not be retried, this action is returned. /// /// This action stops retry classification immediately, skipping any following classifiers. RetryForbidden,\n} When a retry is indicated by a classifier, the action will contain a RetryReason: /// The reason for a retry.\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryReason { /// When an error is received that should be retried, this reason is returned. RetryableError { /// The kind of error. kind: ErrorKind, /// A server may tell us to retry only after a specific time has elapsed. retry_after: Option, },\n} NOTE: RetryReason currently only has a single variant, but it's defined as an enum for forward compatibility purposes. RetryAction's impl defines several convenience methods: impl RetryAction { /// Create a new `RetryAction` indicating that a retry is necessary. pub fn retryable_error(kind: ErrorKind) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: None, }) } /// Create a new `RetryAction` indicating that a retry is necessary after an explicit delay. pub fn retryable_error_with_explicit_delay(kind: ErrorKind, retry_after: Duration) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: Some(retry_after), }) } /// Create a new `RetryAction` indicating that a retry is necessary because of a transient error. pub fn transient_error() -> Self { Self::retryable_error(ErrorKind::TransientError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a throttling error. pub fn throttling_error() -> Self { Self::retryable_error(ErrorKind::ThrottlingError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a server error. pub fn server_error() -> Self { Self::retryable_error(ErrorKind::ServerError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a client error. pub fn client_error() -> Self { Self::retryable_error(ErrorKind::ClientError) }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Defining a custom classifier","id":"489","title":"Defining a custom classifier"},"49":{"body":"Adding a required member to a structure is not considered backwards compatible. When a required member is added to a structure: The builder will change to become fallible, meaning that instead of returning T it will return Result. Previous builder invocations that did not set the new field will still stop compiling if this was the first required field. Previous builder invocations will now return a BuildError because the required field is unset.","breadcrumbs":"Smithy » Backwards Compatibility » Validation & Required Members","id":"49","title":"Validation & Required Members"},"490":{"body":"The interface for setting classifiers is very similar to the interface of settings interceptors: // All service configs support these setters. Operations support a nearly identical API.\nimpl ServiceConfigBuilder { /// Add type implementing ClassifyRetry that will be used by the RetryStrategy /// to determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn retry_classifier(mut self, retry_classifier: impl ClassifyRetry + 'static) -> Self { self.push_retry_classifier(SharedRetryClassifier::new(retry_classifier)); self } /// Add a SharedRetryClassifier that will be used by the RetryStrategy to /// determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn push_retry_classifier(&mut self, retry_classifier: SharedRetryClassifier) -> &mut Self { self.runtime_components.push_retry_classifier(retry_classifier); self } /// Set SharedRetryClassifiers for the builder, replacing any that were /// previously set. pub fn set_retry_classifiers(&mut self, retry_classifiers: impl IntoIterator) -> &mut Self { self.runtime_components.set_retry_classifiers(retry_classifiers.into_iter()); self }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Setting classifiers","id":"490","title":"Setting classifiers"},"491":{"body":"Smithy clients have three classifiers enabled by default: ModeledAsRetryableClassifier: Checks for errors that are marked as retryable in the smithy model. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. TransientErrorClassifier: Checks for timeout, IO, and connector errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. HttpStatusCodeClassifier: Checks the HTTP response's status code. By default, this classifies 500, 502, 503, and 504 errors as RetryAction::RetryIndicated. The list of retryable status codes may be customized when creating this classifier with the HttpStatusCodeClassifier::new_from_codes method. AWS clients enable the three smithy classifiers as well as one more by default: AwsErrorCodeClassifier: Checks for errors with AWS error codes marking them as either transient or throttling errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. This classifier will also check the HTTP response for an x-amz-retry-after header. If one is set, then the returned RetryAction will include the explicit delay. The priority order of these classifiers is as follows: (highest priority) TransientErrorClassifier ModeledAsRetryableClassifier AwsErrorCodeClassifier (lowest priority) HttpStatusCodeClassifier The priority order of the default classifiers is not configurable. However, it's possible to wrap a default classifier in a newtype and set your desired priority when implementing the ClassifyRetry trait, delegating the classify_retry and name fields to the inner classifier. Disable default classifiers Disabling the default classifiers is possible, but not easy. They are set at different points during config and operation construction, and must be unset at each of those places. A far simpler solution is to implement your own classifier that has the highest priority. Still, if completely removing the other classifiers is desired, use the set_retry_classifiers method on the config to replace the config-level defaults and then set a config override on the operation that does the same.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Default classifiers","id":"491","title":"Default classifiers"},"492":{"body":"In order to implement this feature, we must: Update the current retry classification system so that individual classifiers as well as collections of classifiers can be easily composed together. Create two new configuration mechanisms for users that allow them to customize retry classification at the service level and at the operation level. Update retry classifiers so that they may 'short-circuit' the chain, ending retry classification immediately.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How to actually implement this RFC","id":"492","title":"How to actually implement this RFC"},"493":{"body":"/// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryAction { /// When an error is received that should be retried, this action is returned. Retry(ErrorKind), /// When the server tells us to retry after a specific time has elapsed, this action is returned. RetryAfter(Duration), /// When a response should not be retried, this action is returned. NoRetry,\n} /// Classifies what kind of retry is needed for a given [`InterceptorContext`].\npub trait ClassifyRetry: Send + Sync + fmt::Debug { /// Run this classifier on the [`InterceptorContext`] to determine if the previous request /// should be retried. If the classifier makes a decision, `Some(RetryAction)` is returned. /// Classifiers may also return `None`, signifying that they have no opinion of whether or /// not a request should be retried. fn classify_retry( &self, ctx: &InterceptorContext, preceding_action: Option, ) -> Option; /// The name of this retry classifier. /// /// Used for debugging purposes. fn name(&self) -> &'static str; /// The priority of this retry classifier. Classifiers with a higher priority will run before /// classifiers with a lower priority. Classifiers with equal priorities make no guarantees /// about which will run first. fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The RetryClassifier trait","id":"493","title":"The RetryClassifier trait"},"494":{"body":"Because each classifier has a defined priority, and because RetryClassifierPriority implements PartialOrd and Ord, the standard library's sort method may be used to correctly arrange classifiers. The RuntimeComponents struct is responsible for storing classifiers, so it's also responsible for sorting them whenever a new classifier is added. Thus, when a retry strategy fetches the list of classifiers, they'll already be in the expected order.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Resolving the correct order of multiple retry classifiers","id":"494","title":"Resolving the correct order of multiple retry classifiers"},"495":{"body":"Q: Should retry classifiers be fallible? A: I think no, because of the added complexity. If we make them fallible then we'll have to decide what happens when classifiers fail. Do we skip them or does classification end? The retry strategy is responsible for calling the classifiers, so it be responsible for deciding how to handle a classifier error. I don't foresee a use case where an error returned by a classifier would be interpreted either by classifiers following the failed classifier or the retry strategy.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Questions and answers","id":"495","title":"Questions and answers"},"496":{"body":"Add retry classifiers field and setters to RuntimeComponents and RuntimeComponentsBuilder. Add unit tests ensuring that classifier priority is respected by RuntimeComponents::retry_classifiers, especially when multiple layers of config are in play. Add codegen customization allowing users to set retry classifiers on service configs. Add codegen for setting default classifiers at the service level. Add integration tests for setting classifiers at the service level. Add codegen for settings default classifiers that require knowledge of operation error types at the operation level. Add integration tests for setting classifiers at the operation level. Implement retry classifier priority. Add unit tests for retry classifier priority. Update existing tests that would fail for lack of a retry classifier.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Changes checklist","id":"496","title":"Changes checklist"},"497":{"body":"This is a collection of written resources for smithy-rs and SDK contributors. Writing and debugging a low-level feature that relies on HTTP","breadcrumbs":"Contributing » Contributing","id":"497","title":"Contributing"},"498":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Writing and debugging a low-level feature that relies on HTTP","id":"498","title":"Writing and debugging a low-level feature that relies on HTTP"},"499":{"body":"This article came about as a result of all the difficulties I encountered while developing the request checksums feature laid out in the internal-only Flexible Checksums spec (the feature is also highlighted in this public blog post .) I spent much more time developing the feature than I had anticipated. In this article, I'll talk about: How the SDK sends requests with a body How the SDK sends requests with a streaming body The various issues I encountered and how I addressed them Key takeaways for contributors developing similar low-level features","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Background","id":"499","title":"Background"},"5":{"body":"Unless you know better ones! These are our tenets today, but we'd love your thoughts. Do you wish we had different priorities? Let us know by opening and issue or starting a discussion. Batteries included, but replaceable. The AWS SDK for Rust should provide a best-in-class experience for many use cases, but , customers will use the SDK in unique and unexpected ways. Meet customers where they are; strive to be compatible with their tools. Provide mechanisms to allow customers make different choices. Make common problems easy to solve. The AWS SDK for Rust should make common problems solvable. Guide customers to patterns that set them up for long-term success. Design for the Future. The AWS SDK for Rust should evolve with AWS without breaking existing customers. APIs will evolve in unpredictable directions, new protocols will gain adoption, and new services will be created that we never could have imagined. Don’t simplify or unify code today that prevents evolution tomorrow.","breadcrumbs":"Tenets » Rust SDK Design Tenets","id":"5","title":"Rust SDK Design Tenets"},"50":{"body":"Similar to structures, #[non_exhaustive] also applies to unions. In order to allow new union variants to be added in the future, all unions (enum in Rust) generated by the Rust SDK must be marked with #[non_exhaustive]. Note : because new fields cannot be added to union variants, the union variants themselves do not need to be #[non_exhaustive]. To support new variants from services, each union contains an Unknown variant. By marking Unknown as non_exhaustive, we prevent customers from instantiating it directly. #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { B(aws_smithy_types::Blob), Bool(bool), Bs(std::vec::Vec), L(std::vec::Vec), M(std::collections::HashMap), N(std::string::String), Ns(std::vec::Vec), Null(bool), S(std::string::String), Ss(std::vec::Vec), // By marking `Unknown` as non_exhaustive, we prevent client code from instantiating it directly. #[non_exhaustive] Unknown,\n}","breadcrumbs":"Smithy » Backwards Compatibility » New union variant added","id":"50","title":"New union variant added"},"500":{"body":"All interactions between the SDK and a service are modeled as \"operations\" . Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler Users create operations piecemeal with a fluent builder. The options set in the builder are then used to create the inner HTTP request, becoming headers or triggering specific request-building functionality (In this case, calculating a checksum and attaching it either as a header or a trailer.) Here's an example from the QLDB SDK of creating a body from inputs and inserting it into the request to be sent: let body = aws_smithy_http::body::SdkBody::from( crate::operation_ser::serialize_operation_crate_operation_send_command(&self)?,\n); if let Some(content_length) = body.content_length() { request = aws_smithy_http::header::set_request_header_if_absent( request, http::header::CONTENT_LENGTH, content_length, );\n}\nlet request = request.body(body).expect(\"should be valid request\"); Most all request body creation in the SDKs looks like that. Note how it automatically sets the Content-Length header whenever the size of the body is known; It'll be relevant later. The body is read into memory and can be inspected before the request is sent. This allows for things like calculating a checksum and then inserting it into the request as a header.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a body","id":"500","title":"How the SDK sends requests with a body"},"501":{"body":"Often, sending a request with a streaming body looks much the same. However, it's not possible to read a streaming body until you've sent the request. Any metadata that needs to be calculated by inspecting the body must be sent as trailers. Additionally, some metadata, like Content-Length, can't be sent as a trailer at all. MDN maintains a helpful list of metadata that can only be sent as a header. // When trailers are set, we must send an AWS-specific header that lists them named `x-amz-trailer`.\n// For example, when sending a SHA256 checksum as a trailer,\n// we have to send an `x-amz-trailer` header telling the service to watch out for it:\nrequest .headers_mut() .insert( http::header::HeaderName::from_static(\"x-amz-trailer\"), http::header::HeaderValue::from_static(\"x-amz-checksum-sha256\"), );","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a streaming body","id":"501","title":"How the SDK sends requests with a streaming body"},"502":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » The issues I encountered while implementing checksums for streaming request bodies","id":"502","title":"The issues I encountered while implementing checksums for streaming request bodies"},"503":{"body":"When sending a request body with trailers, we must use an AWS-specific content encoding called aws-chunked. To encode a request body for aws-chunked requires us to know the length of each chunk we're going to send before we send it. We have to prefix each chunk with its size in bytes, represented by one or more hexadecimal digits. To close the body, we send a final chunk with a zero. For example, the body \"Hello world\" would look like this when encoded: B\\r\\n\nHello world\\r\\n\n0\\r\\n When sending a request body encoded in this way, we need to set two length headers: Content-Length is the length of the entire request body, including the chunk size prefix and zero terminator. In the example above, this would be 19. x-amz-decoded-content-length is the length of the decoded request body. In the example above, this would be 11. NOTE: Content-Encoding is distinct from Transfer-Encoding . It's possible to construct a request with both Content-Encoding: chunked AND Transfer-Encoding: chunked, although we don't ever need to do that for SDK requests.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Content-Encoding: aws-chunked","id":"503","title":"Content-Encoding: aws-chunked"},"504":{"body":"S3 does not require you to send a Content-Length header if you set the Transfer-Encoding: chunked header. That's very helpful because it's not always possible to know the total length of a stream of bytes if that's what you're constructing your request body from. However, when sending trailers, this part of the spec can be misleading. When sending a streaming request, we must send metadata like checksums as trailers To send a request body with trailers, we must set the Content-Encoding: aws-chunked header When using aws-chunked encoding for a request body, we must set the x-amz-decoded-content-length header with the pre-encoding length of the request body. This means that we can't actually avoid having to know and specify the length of the request body when sending a request to S3. This turns out to not be much of a problem for common use of the SDKs because most streaming request bodies are constructed from files. In these cases we can ask the operating system for the file size before sending the request. So long as that size doesn't change during sending of the request, all is well. In any other case, the request will fail.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » S3 requires a Content-Length unless you also set Transfer-Encoding: chunked","id":"504","title":"S3 requires a Content-Length unless you also set Transfer-Encoding: chunked"},"505":{"body":"Headers don't count towards the size of a request body, but trailers do. That means we need to take trailers (which aren't sent until after the body) into account when setting the Content-Length header (which are sent before the body.) This means that without setting Transfer-Encoding: chunked, the SDKs only support trailers of known length. In the case of checksums, we're lucky because they're always going to be the same size. We must also take into account the fact that checksum values are base64 encoded before being set (this lengthens them.)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Adding trailers to a request changes the size of that request","id":"505","title":"Adding trailers to a request changes the size of that request"},"506":{"body":"This was a big source of confusion for me, and I only figured out what was happening with the help of @seanmonstar . When using aws-chunked encoding, the trailers have to be appended to the body as part of poll_data instead of relying on the poll_trailers method. The working http_body::Body implementation of an aws-chunked encoded body looked like this: impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); if *this.already_wrote_trailers { return Poll::Ready(None); } if *this.already_wrote_chunk_terminator { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.already_wrote_trailers = true; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().sum(); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(err) => Poll::Ready(Some(err)), }; }; match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let bytes = if *this.already_wrote_chunk_size_prefix { data.copy_to_bytes(data.len()) } else { // A chunk must be prefixed by chunk size in hexadecimal *this.already_wrote_chunk_size_prefix = true; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); prefix_with_total_chunk_size(data, total_chunk_size) }; Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => { *this.already_wrote_chunk_terminator = true; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // When using aws-chunked content encoding, trailers have to be appended to the body Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.already_wrote_trailers } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked","id":"506","title":"hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked"},"507":{"body":"In my early implementation of http_body::Body for an aws-chunked encoded body, the body wasn't being completely read out. The problem turned out to be that I was delegating to the is_end_stream trait method of the inner body. Because the innermost body had no knowledge of the trailers I needed to send, it was reporting that the stream had ended. The fix was to instead rely on the outermost body's knowledge of its own state in order to determine if all data had been read.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » \"The stream is closing early, and I don't know why\"","id":"507","title":"\"The stream is closing early, and I don't know why\""},"508":{"body":"Reaching out to others that had specific knowledge of a problem: Talking to a developer that had tackled this feature for another SDK was a big help. Special thanks is due to @jasdel and the Go v2 SDK team. Their implementation of an aws-chunked encoded body was the basis for my own implementation. Avoiding codegen : The process of updating codegen code and then running codegen for each new change you make is slow compared to running codegen once at the beginning of development and then just manually editing the generated SDK as necessary. I still needed to run ./gradlew :aws:sdk:relocateAwsRuntime :aws:sdk:relocateRuntime whenever I made changes to a runtime crate but that was quick because it's just copying the files. Keep as much code out of codegen as possible. It's much easier to modify/debug Rust than it is to write a working codegen module that does the same thing. Whenever possible, write the codegen modules later, once the design has settled. Using the Display impl for errors: The Display impl for an error can ofter contain helpful info that might not be visible when printing with the Debug impl. Case in point was an error I was getting because of the is_end_stream issue. When Debug printed, the error looked like this: DispatchFailure(ConnectorError { err: hyper::Error(User(Body), hyper::Error(BodyWriteAborted)), kind: User }) That wasn't too helpful for me on its own. I looked into the hyper source code and found that the Display impl contained a helpful message, so I matched into the error and printed the hyper::Error with the Display impl: user body write aborted: early end, expected 2 more bytes' This helped me understand that I wasn't encoding things correctly and was missing a CRLF. Echo Server : I first used netcat and then later a small echo server written in Rust to see the raw HTTP request being sent out by the SDK as I was working on it. The Rust SDK supports setting endpoints for request. This is often used to send requests to something like LocalStack , but I used it to send request to localhost instead: #[tokio::test]\nasync fn test_checksum_on_streaming_request_against_s3() { let sdk_config = aws_config::from_env() .endpoint_resolver(Endpoint::immutable(\"http://localhost:8080\".parse().expect(\"valid URI\"))) .load().await; let s3_client = aws_sdk_s3::Client::new(&sdk_config); let input_text = b\"Hello world\"; let _res = s3_client .put_object() .bucket(\"some-real-bucket\") .key(\"test.txt\") .body(aws_sdk_s3::types::ByteStream::from_static(input_text)) .checksum_algorithm(ChecksumAlgorithm::Sha256) .send() .await .unwrap();\n} The echo server was based off of an axum example and looked like this: use axum::{ body::{Body, Bytes}, http::{request::Parts, Request, StatusCode}, middleware::{self, Next}, response::IntoResponse, routing::put, Router,\n};\nuse std::net::SocketAddr;\nuse tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; #[tokio::main]\nasync fn main() { tracing_subscriber::registry().with(tracing_subscriber::EnvFilter::new( std::env::var(\"RUST_LOG\").unwrap_or_else(|_| \"trace\".into()), )) .with(tracing_subscriber::fmt::layer()) .init(); let app = Router::new() .route(\"/\", put(|| async move { \"200 OK\" })) .layer(middleware::from_fn(print_request_response)); let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); tracing::debug!(\"listening on {}\", addr); axum::Server::bind(&addr) .serve(app.into_make_service()) .await .unwrap();\n} async fn print_request_response( req: Request, next: Next,\n) -> Result { let (parts, body) = req.into_parts(); print_parts(&parts).await; let bytes = buffer_and_print(\"request\", body).await?; let req = Request::from_parts(parts, Body::from(bytes)); let res = next.run(req).await; Ok(res)\n} async fn print_parts(parts: &Parts) { tracing::debug!(\"{:#?}\", parts);\n} async fn buffer_and_print(direction: &str, body: B) -> Result\nwhere B: axum::body::HttpBody, B::Error: std::fmt::Display,\n{ let bytes = match hyper::body::to_bytes(body).await { Ok(bytes) => bytes, Err(err) => { return Err(( StatusCode::BAD_REQUEST, format!(\"failed to read {} body: {}\", direction, err), )); } }; if let Ok(body) = std::str::from_utf8(&bytes) { tracing::debug!(\"{} body = {:?}\", direction, body); } Ok(bytes)\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » What helped me to understand the problems and their solutions","id":"508","title":"What helped me to understand the problems and their solutions"},"509":{"body":"](writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.md)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP »","id":"509","title":"Contributing"},"51":{"body":"smithy-rs provides the ability to generate a client whose operations defined by a smithy model. The documents referenced here explain aspects of the client in greater detail. What is the 'orchestrator' and why does it exist? Identity and Auth","breadcrumbs":"Client » Smithy Client","id":"51","title":"Smithy Client"},"52":{"body":"At a very high level, an orchestrator is a process for transforming requests into responses. Please enjoy this fancy chart: flowchart TB A(Orchestrate)-->|Input|B(Request serialization) B-->|Transmit Request|C(Connection) C-->|Transmit Response|D(Response deserialization) D-->|Success|E(\"Ok(Output)\") D-->|Unretryable Failure|F(\"Err(SdkError)\") D-->|Retryable Failure|C This process is also referred to as the \"request/response lifecycle.\" In this example, the types of \"transmit request\" and \"transmit response\" are protocol-dependent. Typical operations use HTTP , but we plan to support other protocols like MQTT in the future. In addition to the above steps, the orchestrator must also handle: Endpoint resolution: figuring out which URL to send a request to. Authentication, identity resolution, and request signing: Figuring out who is sending the request, their credentials, and how we should insert the credentials into a request. Interceptors : Running lifecycle hooks at each point in the request/response lifecycle. Runtime Plugins: Resolving configuration from config builders. Retries: Categorizing responses from services and deciding whether to retry and how long to wait before doing so. Trace Probes: A sink for events that occur during the request/response lifecycle.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What is the orchestrator?","id":"52","title":"What is the orchestrator?"},"53":{"body":"While the structure of an orchestrator is fixed, the actions it takes during its lifecycle are highly configurable. Users have two ways to configure this process: Runtime Plugins : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? In two batches, at the very beginning of orchestrate. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can set interceptors. Are they user-definable? No. At present, only smithy-rs maintainers may define these. Interceptors : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? At each step in the request-response lifecycle. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can log information. Depending on when they're run, they can modify the input, transmit request, transmit response, and the output/error. Are they user-definable? Yes. Configuration for a request is constructed by runtime plugins just after calling orchestrate. Configuration is stored in a ConfigBag: a hash map that's keyed on type's TypeId (an opaque object, managed by the Rust compiler, which references some type.)","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is an orchestrator configured?","id":"53","title":"How is an orchestrator configured?"},"54":{"body":"The orchestrator's work is divided into four phases: NOTE: If an interceptor fails, then the other interceptors for that lifecycle event are still run. All resulting errors are collected and emitted together. Building the ConfigBag and mounting interceptors . This phase is fallible. An interceptor context is created. This will hold request and response objects, making them available to interceptors. All runtime plugins set at the client-level are run. These plugins can set config and mount interceptors. Any \"read before execution\" interceptors that have been set get run. All runtime plugins set at the operation-level are run. These plugins can also set config and mount interceptors. Any new \"read before execution\" interceptors that have been set get run. Request Construction This phase is fallible. The \"read before serialization\" and \"modify before serialization\" interceptors are called. The input is serialized into a transmit request. The \"read after serialization\" and \"modify before retry loop\" interceptors are called. Before making an attempt, the retry handler is called to check if an attempt should be made. The retry handler makes this decision for an initial attempt as well as for the retry attempts. If an initial attempt should be made, then the orchestrator enters the Dispatch phase. Otherwise, a throttling error is returned. Request Dispatch This phase is fallible. This phase's tasks are performed in a loop. Retryable request failures will be retried, and unretryable failures will end the loop. The \"read before attempt\" interceptors are run. An endpoint is resolved according to an endpoint resolver. The resolved endpoint is then applied to the transmit request. The \"read before signing\" and \"modify before signing\" interceptors are run. An identity and a signer are resolved according to an authentication resolver. The signer then signs the transmit request with the identity. The \"read after signing\" , \"read before transmit\" , and \"modify before transmit\" interceptors are run. The transmit request is passed into the connection, and a transmit response is received. The \"read after transmit\" , \"read before deserialization\" , and \"modify before deserialization\" interceptors are run. The transmit response is deserialized. The \"read after attempt\" and \"modify before attempt completion\" interceptors are run. The retry strategy is called to check if a retry is necessary. If a retry is required, the Dispatch phase restarts. Otherwise, the orchestrator enters the Response Handling phase. Response Handling This phase is fallible. The \"read after deserialization\" and \"modify before completion\" interceptors are run. Events are dispatched to any trace probes that the user has set. The \"read after execution\" interceptors are run. At the end of all this, the response is returned. If an error occurred at any point, then the response will contain one or more errors, depending on what failed. Otherwise, the output will be returned.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What does the orchestrator do?","id":"54","title":"What does the orchestrator do?"},"55":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is the orchestrator implemented in Rust?","id":"55","title":"How is the orchestrator implemented in Rust?"},"56":{"body":"In designing the orchestrator, we sought to solve the problems we had with the original smithy client. The client made heavy use of generics, allowing for increased performance, but at the cost of increased maintenance burden and increased compile times . The Rust compiler, usually very helpful, isn't well-equipped to explain trait errors when bounds are this complex, and so the resulting client was difficult to extend. Trait aliases would have helped, but they're not (at the time of writing) available. The type signatures for the old client and its call method: impl Client\nwhere C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ pub async fn call(&self, op: Operation) -> Result> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { self.call_raw(op).await.map(|res| res.parsed) } pub async fn call_raw( &self, op: Operation, ) -> Result, SdkError> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, // This bound is not _technically_ inferred by all the previous bounds, but in practice it // is because _we_ know that there is only implementation of Service for Parsed // (ParsedResponseService), and it will apply as long as the bounds on C, M, and R hold, // and will produce (as expected) Response = SdkSuccess, Error = SdkError. But Rust // doesn't know that -- there _could_ theoretically be other implementations of Service for // Parsed that don't return those same types. So, we must give the bound. bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { // The request/response lifecycle }\n} The type signature for the new orchestrate method: pub async fn orchestrate( input: Input, runtime_plugins: &RuntimePlugins, // Currently, SdkError is HTTP-only. We currently use it for backwards-compatibility purposes. // The `HttpResponse` generic will likely be removed in the future.\n) -> Result> { // The request/response lifecycle\n} Wait a second, I hear you ask. \"I see an Input and Output there, but you're not declaring any generic type arguments. What gives?\" I'm glad you asked. Generally, when you need traits, but you aren't willing to use generic type arguments, then you must Box . Polymorphism is achieved through dynamic dispatch instead of static dispatch , and this comes with a small runtime cost. So, what are Input and Output? They're our own special flavor of a boxed trait object. pub type Input = TypeErasedBox;\npub type Output = TypeErasedBox;\npub type Error = TypeErasedBox; /// A new-type around `Box`\n#[derive(Debug)]\npub struct TypeErasedBox { inner: Box,\n} The orchestrator itself doesn't know about any concrete types. Instead, it passes boxed data between the various components of the request/response lifecycle. Individual components access data in two ways: From the ConfigBag: (with an accessor) let retry_strategy = cfg.retry_strategy(); (with the get method) let retry_strategy = cfg.get::>() From the InterceptorContext: (owned) let put_object_input: PutObjectInput = ctx.take_input().unwrap().downcast().unwrap()?; (by reference) let put_object_input = ctx.input().unwrap().downcast_ref::().unwrap(); Users can only call ConfigBag::get or downcast a TypeErasedBox to types they have access to, which allows maintainers to ensure encapsulation. For example: a plugin writer may declare a private type, place it in the config bag, and then later retrieve it. Because the type is private, only code in the same crate/module can ever insert or retrieve it. Therefore, there's less worry that someone will depend on a hidden, internal detail and no worry they'll accidentally overwrite a type in the bag. NOTE: When inserting values into a config bag, using one of the set_ methods is always preferred, as this prevents mistakes related to inserting similar, but incorrect types.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Avoiding generics at all costs","id":"56","title":"Avoiding generics at all costs"},"57":{"body":"The current implementation of orchestrate is defined here , in the aws-smithy-runtime crate . Related code can be found in the aws-smithy-runtime-api crate .","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » The actual code","id":"57","title":"The actual code"},"58":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Frequently asked questions","id":"58","title":"Frequently asked questions"},"59":{"body":"We chose to hide the runtime plugin API from users because we are concerned that exposing it will cause more problems than it solves. Instead, we encourage users to use interceptors. This is because, when setting a runtime plugin, any existing runtime plugin with the same type will be replaced. For example, there can only be one retry strategy or response deserializer. Errors resulting from unintentionally overriding a plugin would be difficult for users to diagnose, and would consume valuable development time.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why can't users create and use their own runtime plugins?","id":"59","title":"Why can't users create and use their own runtime plugins?"},"6":{"body":"","breadcrumbs":"Tenets » Details, Justifications, and Ramifications","id":"6","title":"Details, Justifications, and Ramifications"},"60":{"body":"The orchestrator exists because there is an AWS-internal initiative to bring the architecture of all AWS SDKs closer to one another.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does the orchestrator exist?","id":"60","title":"Why does the orchestrator exist?"},"61":{"body":"Because RFCs become outdated as designs evolve. It is our intention to keep this document up to date with our current implementation.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does this document exist when there's already an orchestrator RFC?","id":"61","title":"Why does this document exist when there's already an orchestrator RFC?"},"62":{"body":"The Smithy specification establishes several auth related modeling traits that can be applied to operation and service shapes. To briefly summarize: The auth schemes that are supported by a service are declared on the service shape Operation shapes MAY specify the subset of service-defined auth schemes they support. If none are specified, then all service-defined auth schemes are supported. A smithy code generator MUST support at least one auth scheme for every modeled operation, but it need not support ALL modeled auth schemes. This design document establishes how smithy-rs implements this specification.","breadcrumbs":"Client » Identity and Auth » Identity and Auth in Clients","id":"62","title":"Identity and Auth in Clients"},"63":{"body":"Auth: Either a shorthand that represents both of the authentication and authorization terms below, or an ambiguous representation of one of them. In this doc, this term will always refer to both. Authentication: The process of proving an entity is who they claim they are, sometimes referred to as AuthN. Authorization: The process of granting an authenticated entity the permission to do something, sometimes referred to as AuthZ. Identity: The information required for authentication. Signing: The process of attaching metadata to a request that allows a server to authenticate that request.","breadcrumbs":"Client » Identity and Auth » Terminology","id":"63","title":"Terminology"},"64":{"body":"There are two stages to identity and auth: Configuration Execution","breadcrumbs":"Client » Identity and Auth » Overview of Smithy Client Auth","id":"64","title":"Overview of Smithy Client Auth"},"65":{"body":"First, let's establish the aspects of auth that can be configured from the model at codegen time. Data AuthSchemeOptionResolverParams: parameters required to resolve auth scheme options. These parameters are allowed to come from both the client config and the operation input structs. AuthSchemes: a list of auth schemes that can be used to sign HTTP requests. This information comes directly from the service model. AuthSchemeProperties: configuration from the auth scheme for the signer. IdentityResolvers: list of available identity resolvers. Implementations IdentityResolver: resolves an identity for use in authentication. There can be multiple identity resolvers that need to be selected from. Signer: a signing implementation that signs a HTTP request. ResolveAuthSchemeOptions: resolves a list of auth scheme options for a given operation and its inputs. As it is undocumented (at time of writing), this document assumes that the code generator creates one service-level runtime plugin, and an operation-level runtime plugin per operation, hence referred to as the service runtime plugin and operation runtime plugin. The code generator emits code to add identity resolvers and HTTP auth schemes to the config bag in the service runtime plugin. It then emits code to register an interceptor in the operation runtime plugin that reads the operation input to generate the auth scheme option resolver params (which also get added to the config bag).","breadcrumbs":"Client » Identity and Auth » The configuration stage","id":"65","title":"The configuration stage"},"66":{"body":"At a high-level, the process of resolving an identity and signing a request looks as follows: Retrieve the AuthSchemeOptionResolverParams from the config bag. The AuthSchemeOptionResolverParams allow client config and operation inputs to play a role in which auth scheme option is selected. Retrieve the ResolveAuthSchemeOptions impl from the config bag, and use it to resolve the auth scheme options available with the AuthSchemeOptionResolverParams. The returned auth scheme options are in priority order. Retrieve the IdentityResolvers list from the config bag. For each auth scheme option: Attempt to find an HTTP auth scheme for that auth scheme option in the config bag (from the AuthSchemes list). If an auth scheme is found: Use the auth scheme to extract the correct identity resolver from the IdentityResolvers list. Retrieve the Signer implementation from the auth scheme. Use the IdentityResolver to resolve the identity needed for signing. Sign the request with the identity, and break out of the loop from step #4. In general, it is assumed that if an HTTP auth scheme exists for an auth scheme option, then an identity resolver also exists for that auth scheme option. Otherwise, the auth option was configured incorrectly during codegen.","breadcrumbs":"Client » Identity and Auth » The execution stage","id":"66","title":"The execution stage"},"67":{"body":"The client will use trait objects and dynamic dispatch for the IdentityResolver, Signer, and AuthSchemeOptionResolver implementations. Generics could potentially be used, but the number of generic arguments and trait bounds in the orchestrator would balloon to unmaintainable levels if each configurable implementation in it was made generic. These traits look like this: #[derive(Clone, Debug)]\npub struct AuthSchemeId { scheme_id: &'static str,\n} pub trait ResolveAuthSchemeOptions: Send + Sync + Debug { fn resolve_auth_scheme_options<'a>( &'a self, params: &AuthSchemeOptionResolverParams, ) -> Result, BoxError>;\n} pub trait IdentityResolver: Send + Sync + Debug { fn resolve_identity(&self, config: &ConfigBag) -> BoxFallibleFut;\n} pub trait Signer: Send + Sync + Debug { /// Return a signed version of the given request using the given identity. /// /// If the provided identity is incompatible with this signer, an error must be returned. fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag, ) -> Result<(), BoxError>;\n} IdentityResolver and Signer implementations are both given an Identity, but will need to understand what the concrete data type underlying that identity is. The Identity struct uses a Arc to represent the actual identity data so that generics are not needed in the traits: #[derive(Clone, Debug)]\npub struct Identity { data: Arc, expiration: Option,\n} Identities can often be cached and reused across several requests, which is why the Identity uses Arc rather than Box. This also reduces the allocations required. The signer implementations will use downcasting to access the identity data types they understand. For example, with AWS SigV4, it might look like the following: fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag,\n) -> Result<(), BoxError> { let aws_credentials = identity.data::() .ok_or_else(|| \"The SigV4 signer requires AWS credentials\")?; let access_key = &aws_credentials.secret_access_key; // -- snip --\n} Also note that identity data structs are expected to censor their own sensitive fields, as Identity implements the automatically derived Debug trait.","breadcrumbs":"Client » Identity and Auth » How this looks in Rust","id":"67","title":"How this looks in Rust"},"68":{"body":"A keen observer would note that there is an expiration field on Identity, and may ask, \"what about non-expiring identities?\" This is the result of a limitation on Box, where it can only be downcasted to concrete types. There is no way to downcast to a dyn Trait since the information required to verify that that type is that trait is lost at compile time (a std::any::TypeId only encodes information about the concrete type). In an ideal world, it would be possible to extract the expiration like this: pub trait ExpiringIdentity { fn expiration(&self) -> SystemTime;\n} let identity: Identity = some_identity();\nif let Some(expiration) = identity.data::<&dyn ExpiringIdentity>().map(ExpiringIdentity::expiration) { // make a decision based on that expiration\n} Theoretically, you should be able to save off additional type information alongside the Box and use unsafe code to transmute to known traits, but it is difficult to implement in practice, and adds unsafe code in a security critical piece of code that could otherwise be avoided. The expiration field is a special case that is allowed onto the Identity struct directly since identity cache implementations will always need to be aware of this piece of information, and having it as an Option still allows for non-expiring identities. Ultimately, this design constrains Signer implementations to concrete types. There is no world where an Signer can operate across multiple unknown identity data types via trait, and that should be OK since the signer implementation can always be wrapped with an implementation that is aware of the concrete type provided by the identity resolver, and can do any necessary conversions.","breadcrumbs":"Client » Identity and Auth » Challenges with this Identity design","id":"68","title":"Challenges with this Identity design"},"69":{"body":"Smithy Rust provides the ability to generate a server whose operations are provided by the customer. Middleware Instrumentation Accessing Un-modelled Data The Anatomy of a Service Generating Common Service Code","breadcrumbs":"Server » Smithy Server","id":"69","title":"Smithy Server"},"7":{"body":"Some customers will use the Rust SDK as their first experience with async Rust, potentially any Rust. They may not be familiar with Tokio or the concept of an async executor. We are not afraid to have an opinion about the best solution for most customers. Other customers will come to the SDK with specific requirements. Perhaps they're integrating the SDK into a much larger project that uses async_std. Maybe they need to set custom headers, modify the user agent, or audit every request. They should be able to use the Rust SDK without forking it to meet their needs.","breadcrumbs":"Tenets » Batteries included, but replaceable.","id":"7","title":"Batteries included, but replaceable."},"70":{"body":"The following document provides a brief survey of the various positions middleware can be inserted in Smithy Rust. We use the Pokémon service as a reference model throughout. /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n}","breadcrumbs":"Server » Middleware » Middleware","id":"70","title":"Middleware"},"71":{"body":"Smithy Rust is built on top of tower . Tower is a library of modular and reusable components for building robust networking clients and servers. The tower library is centered around two main interfaces, the Service trait and the Layer trait. The Service trait can be thought of as an asynchronous function from a request to a response, async fn(Request) -> Result, coupled with a mechanism to handle back pressure , while the Layer trait can be thought of as a way of decorating a Service, transforming either the request or response. Middleware in tower typically conforms to the following pattern, a Service implementation of the form pub struct NewService { inner: S, /* auxillary data */\n} and a complementary # extern crate tower;\n# pub struct NewService { inner: S }\nuse tower::{Layer, Service}; pub struct NewLayer { /* auxiliary data */\n} impl Layer for NewLayer { type Service = NewService; fn layer(&self, inner: S) -> Self::Service { NewService { inner, /* auxiliary fields */ } }\n} The NewService modifies the behavior of the inner Service S while the NewLayer takes auxiliary data and constructs NewService from S. Customers are then able to stack middleware by composing Layers using combinators such as ServiceBuilder::layer and Stack .","breadcrumbs":"Server » Middleware » Introduction to Tower","id":"71","title":"Introduction to Tower"},"72":{"body":"One of the primary goals is to provide configurability and extensibility through the application of middleware. The customer is able to apply Layers in a variety of key places during the request/response lifecycle. The following schematic labels each configurable middleware position from A to D: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradeLayer --> [*]: HTTP Response state A { state PokemonService { state RoutingService { in --> UpgradeLayer: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state B { state C1 { state C { state UpgradeLayer { direction LR [*] --> Handler: Model Input Handler --> [*] : Model Output state D { Handler } } } } C2 C3 C4 } } } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response where UpgradeLayer is the Layer converting Smithy model structures to HTTP structures and the RoutingService is responsible for routing requests to the appropriate operation.","breadcrumbs":"Server » Middleware » Applying Middleware","id":"72","title":"Applying Middleware"},"73":{"body":"The output of the Smithy service builder provides the user with a Service implementation. A Layer can be applied around the entire Service. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# extern crate tower;\n# use std::time::Duration;\n# struct TimeoutLayer;\n# impl TimeoutLayer { fn new(t: Duration) -> Self { Self }}\n# impl Layer for TimeoutLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService};\nuse tower::Layer; let config = PokemonServiceConfig::builder().build(); // This is a HTTP `Service`.\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; // Construct `TimeoutLayer`.\nlet timeout_layer = TimeoutLayer::new(Duration::from_secs(3)); // Apply a 3 second timeout to all responses.\nlet app = timeout_layer.layer(app);","breadcrumbs":"Server » Middleware » A. Outer Middleware","id":"73","title":"A. Outer Middleware"},"74":{"body":"A single layer can be applied to all routes inside the Router. This exists as a method on the PokemonServiceConfig builder object, which is passed into the service builder. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct MetricsLayer;\n# impl MetricsLayer { pub fn new() -> Self { Self } }\n# impl Layer for MetricsLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; // Construct `MetricsLayer`.\nlet metrics_layer = MetricsLayer::new(); let config = PokemonServiceConfig::builder().layer(metrics_layer).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; Note that requests pass through this middleware immediately after routing succeeds and therefore will not be encountered if routing fails. This means that the TraceLayer in the example above does not provide logs unless routing has completed. This contrasts to middleware A , which all requests/responses pass through when entering/leaving the service.","breadcrumbs":"Server » Middleware » B. Route Middleware","id":"74","title":"B. Route Middleware"},"75":{"body":"A \"HTTP layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use aws_smithy_http_server::{operation::OperationShapeExt, plugin::*, operation::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct LoggingLayer;\n# impl LoggingLayer { pub fn new() -> Self { Self } }\n# impl Layer for LoggingLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only log on `GetPokemonSpecies` and `GetStorage` struct LoggingScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `LoggingLayer`.\nlet logging_plugin = LayerPlugin(LoggingLayer::new());\nlet logging_plugin = Scoped::new::(logging_plugin);\nlet http_plugins = HttpPlugins::new().push(logging_plugin); let config = PokemonServiceConfig::builder().http_plugin(http_plugins).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; This middleware transforms the operations HTTP requests and responses.","breadcrumbs":"Server » Middleware » C. Operation Specific HTTP Middleware","id":"75","title":"C. Operation Specific HTTP Middleware"},"76":{"body":"A \"model layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::{operation::*, plugin::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# struct BufferLayer;\n# impl BufferLayer { pub fn new(size: usize) -> Self { Self } }\n# impl Layer for BufferLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only buffer on `GetPokemonSpecies` and `GetStorage` struct BufferScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `BufferLayer`.\nlet buffer_plugin = LayerPlugin(BufferLayer::new(3));\nlet buffer_plugin = Scoped::new::(buffer_plugin);\nlet config = PokemonServiceConfig::builder().model_plugin(buffer_plugin).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; In contrast to position C , this middleware transforms the operations modelled inputs to modelled outputs.","breadcrumbs":"Server » Middleware » D. Operation Specific Model Middleware","id":"76","title":"D. Operation Specific Model Middleware"},"77":{"body":"Suppose we want to apply a different Layer to every operation. In this case, position B (PokemonService::layer) will not suffice because it applies a single Layer to all routes and while position C (Operation::layer) would work, it'd require the customer constructs the Layer by hand for every operation. Consider the following middleware: # extern crate aws_smithy_http_server;\n# extern crate tower;\nuse aws_smithy_http_server::shape_id::ShapeId;\nuse std::task::{Context, Poll};\nuse tower::Service; /// A [`Service`] that adds a print log.\npub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId\n} impl Service for PrintService\nwhere S: Service,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, req: R) -> Self::Future { println!(\"Hi {} in {}\", self.operation_id.name(), self.service_id.name()); self.inner.call(req) }\n} The plugin system provides a way to construct then apply Layers in position C and D , using the protocol and operation shape as parameters. An example of a PrintPlugin which prints the operation name: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\n# pub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId }\nuse aws_smithy_http_server::{plugin::Plugin, operation::OperationShape, service::ServiceShape}; /// A [`Plugin`] for a service builder to add a [`PrintService`] over operations.\n#[derive(Debug)]\npub struct PrintPlugin; impl Plugin for PrintPlugin\nwhere Ser: ServiceShape, Op: OperationShape,\n{ type Output = PrintService; fn apply(&self, inner: T) -> Self::Output { PrintService { inner, operation_id: Op::ID, service_id: Ser::ID, } }\n} You can provide a custom method to add your plugin to a collection of HttpPlugins or ModelPlugins via an extension trait. For example, for HttpPlugins: # extern crate aws_smithy_http_server;\n# pub struct PrintPlugin;\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack}; /// This provides a [`print`](PrintExt::print) method on [`HttpPlugins`].\npub trait PrintExt { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> HttpPlugins>;\n} impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }\n} This allows for: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::plugin::{PluginStack, Plugin};\n# struct PrintPlugin;\n# impl Plugin for PrintPlugin { type Output = T; fn apply(&self, svc: T) -> Self::Output { svc }}\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\n# trait PrintExt { fn print(self) -> HttpPlugins>; }\n# impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }}\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse aws_smithy_http_server::plugin::{IdentityPlugin, HttpPlugins};\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; let http_plugins = HttpPlugins::new() // [..other plugins..] // The custom method! .print();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app /* : PokemonService> */ = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; The custom print method hides the details of the Plugin trait from the average consumer. They interact with the utility methods on HttpPlugins and enjoy the self-contained documentation.","breadcrumbs":"Server » Middleware » Plugin System","id":"77","title":"Plugin System"},"78":{"body":"A Smithy Rust server uses the tracing crate to provide instrumentation. The customer is responsible for setting up a Subscriber in order to ingest and process events - Smithy Rust makes no prescription on the choice of Subscriber. Common choices might include: tracing_subscriber::fmt for printing to stdout. tracing-log to providing compatibility with the log . Events are emitted and spans are opened by the aws-smithy-http-server, aws-smithy-http-server-python, and generated crate. The default target is always used The tracing macros default to using the module path where the span or event originated as the target, but it may be overridden. and therefore spans and events be filtered using the EnvFilter and/or Targets filters with crate and module paths. For example, RUST_LOG=aws_smithy_http_server=warn,aws_smithy_http_server_python=error and # extern crate tracing_subscriber;\n# extern crate tracing;\n# use tracing_subscriber::filter;\n# use tracing::Level;\nlet filter = filter::Targets::new().with_target(\"aws_smithy_http_server\", Level::DEBUG); In general, Smithy Rust is conservative when using high-priority log levels: ERROR Fatal errors, resulting in the termination of the service. Requires immediate remediation. WARN Non-fatal errors, resulting in incomplete operation. Indicates service misconfiguration, transient errors, or future changes in behavior. Requires inspection and remediation. INFO Informative events, which occur inside normal operating limits. Used for large state transitions, e.g. startup/shutdown. DEBUG Informative and sparse events, which occur inside normal operating limits. Used to debug coarse-grained progress of service. TRACE Informative and frequent events, which occur inside normal operating limits. Used to debug fine-grained progress of service.","breadcrumbs":"Server » Instrumentation » Instrumentation","id":"78","title":"Instrumentation"},"79":{"body":"Smithy Rust is built on top of tower , which means that middleware can be used to encompass different periods of the lifecycle of the request and response and identify them with a span. An open-source example of such a middleware is TraceLayer provided by the tower-http crate. Smithy provides an out-the-box middleware which: Opens a DEBUG level span, prior to request handling, including the operation name and request URI and headers. Emits a DEBUG level event, after to request handling, including the response headers and status code. This is enabled via the instrument method provided by the aws_smithy_http_server::instrumentation::InstrumentExt trait. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\nuse aws_smithy_http_server::{ instrumentation::InstrumentExt, plugin::{IdentityPlugin, HttpPlugins}\n};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService}; let http_plugins = HttpPlugins::new().instrument();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app;","breadcrumbs":"Server » Instrumentation » Spans over the Request/Response lifecycle","id":"79","title":"Spans over the Request/Response lifecycle"},"8":{"body":"If solving a common problem isn’t obvious from the API, it should be obvious from the documentation. The SDK should guide users towards the best solutions for common tasks, first with well named methods, second with documentation, and third with real -world usage examples. Provide misuse resistant APIs. Async Rust has the potential to introduce subtle bugs; the Rust SDK should help customers avoid them.","breadcrumbs":"Tenets » Make common problems easy to solve","id":"8","title":"Make common problems easy to solve"},"80":{"body":"The Pokémon service example, located at /examples/pokemon-service, sets up a tracing Subscriber as follows: # extern crate tracing_subscriber;\nuse tracing_subscriber::{prelude::*, EnvFilter}; /// Setup `tracing::subscriber` to read the log level from RUST_LOG environment variable.\npub fn setup_tracing() { let format = tracing_subscriber::fmt::layer().pretty(); let filter = EnvFilter::try_from_default_env() .or_else(|_| EnvFilter::try_new(\"info\")) .unwrap(); tracing_subscriber::registry().with(format).with(filter).init();\n} Running the Pokémon service example using RUST_LOG=aws_smithy_http_server=debug,pokemon_service=debug cargo r and then using cargo t to run integration tests against the server, yields the following logs: 2022-09-27T09:13:35.372517Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"content-length\": \"17\"}, status_code: 200 OK at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_server_statistics, method: GET, uri: /stats, headers: {\"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374104Z DEBUG pokemon_service: attempting to authenticate storage user at pokemon-service/src/lib.rs:184 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374152Z DEBUG pokemon_service: authentication failed at pokemon-service/src/lib.rs:188 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374230Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"x-amzn-errortype\": \"NotAuthorized\", \"content-length\": \"2\"}, status_code: 401 Unauthorized at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"}","breadcrumbs":"Server » Instrumentation » Example","id":"80","title":"Example"},"81":{"body":"Instrumentation interacts with Smithy's sensitive trait . Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). For this reason, Smithy runtime will never use tracing to emit events or open spans that include any sensitive data. This means that the customer can ingest all logs from aws-smithy-http-server and aws-smithy-http-server-* without fear of violating the sensitive trait. The Smithy runtime will not, and cannot, prevent the customer violating the sensitive trait within the operation handlers and custom middleware. It is the responsibility of the customer to not violate the sensitive contract of their own model, care must be taken. Smithy shapes can be sensitive while being coupled to the HTTP request/responses via the HTTP binding traits . This poses a risk when ingesting events which naively capture request/response information. The instrumentation middleware provided by Smithy Rust respects the sensitive trait and will replace sensitive data in its span and event with {redacted}. This feature can be seen in the Example above. For debugging purposes these redactions can be prevented using the aws-smithy-http-server feature flag, unredacted-logging. Some examples of inadvertently leaking sensitive information: Ingesting tracing events and spans from third-party crates which do not respect sensitivity. An concrete example of this would be enabling events from hyper or tokio. Applying middleware which ingests events including HTTP payloads or any other part of the HTTP request/response which can be bound.","breadcrumbs":"Server » Instrumentation » Interactions with Sensitivity","id":"81","title":"Interactions with Sensitivity"},"82":{"body":"For every Smithy Operation an input, output, and optional error are specified. This in turn constrains the function signature of the handler provided to the service builder - the input to the handler must be the input specified by the operation etc. But what if we, the customer, want to access data in the handler which is not modelled by our Smithy model? Smithy Rust provides an escape hatch in the form of the FromParts trait. In axum these are referred to as \"extractors\" . /// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n} Here Parts is the struct containing all items in a http::Request except for the HTTP body. A prolific example of a FromParts implementation is Extension: /// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n} impl FromParts for Extension\nwhere T: Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} This allows the service builder to accept the following handler async fn handler(input: ModelInput, extension: Extension) -> ModelOutput { /* ... */\n} where ModelInput and ModelOutput are specified by the Smithy Operation and SomeStruct is a struct which has been inserted, by middleware, into the http::Request::extensions . Up to 32 structures implementing FromParts can be provided to the handler with the constraint that they must be provided after the ModelInput: async fn handler(input: ModelInput, ext1: Extension, ext2: Extension, other: Other /* : FromParts */, /* ... */) -> ModelOutput { /* ... */\n} Note that the parts.extensions.remove::() in Extensions::from_parts will cause multiple Extension arguments in the handler to fail. The first extraction failure to occur is serialized via the IntoResponse trait (notice type Error: IntoResponse) and returned. The FromParts trait is public so customers have the ability specify their own implementations: struct CustomerDefined { /* ... */\n} impl

    FromParts

    for CustomerDefined { type Error = /* ... */; fn from_parts(parts: &mut Parts) -> Result { // Construct `CustomerDefined` using the request headers. let header_value = parts.headers.get(\"header-name\").ok_or(/* ... */)?; Ok(CustomerDefined { /* ... */ }) }\n} async fn handler(input: ModelInput, arg: CustomerDefined) -> ModelOutput { /* ... */\n}","breadcrumbs":"Server » Accessing Un-modelled Data » Accessing Un-modelled Data","id":"82","title":"Accessing Un-modelled Data"},"83":{"body":"What is Smithy ? At a high-level, it's a grammar for specifying services while leaving the business logic undefined. A Smithy Service specifies a collection of function signatures in the form of Operations , their purpose is to encapsulate business logic. A Smithy implementation should, for each Smithy Service, provide a builder, which accepts functions conforming to said signatures, and returns a service subject to the semantics specified by the model. This survey is disinterested in the actual Kotlin implementation of the code generator, and instead focuses on the structure of the generated Rust code and how it relates to the Smithy model. The intended audience is new contributors and users interested in internal details. During the survey we will use the pokemon.smithy model as a reference: /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n} Smithy Rust will use this model to produce the following API: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*, operation_shape::*, PokemonServiceConfig, PokemonService};\n// A handler for the `GetPokemonSpecies` operation (the `PokemonSpecies` resource).\nasync fn get_pokemon_species(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let config = PokemonServiceConfig::builder().build(); // Use the service builder to create `PokemonService`.\nlet pokemon_service = PokemonService::builder(config) // Pass the handler directly to the service builder... .get_pokemon_species(get_pokemon_species) /* other operation setters */ .build() .expect(\"failed to create an instance of the Pokémon service\");\n# let pokemon_service: PokemonService, RestJson1>> = pokemon_service;","breadcrumbs":"Server » The Anatomy of a Service » The Anatomy of a Service","id":"83","title":"The Anatomy of a Service"},"84":{"body":"A Smithy Operation specifies the input, output, and possible errors of an API operation. One might characterize a Smithy Operation as syntax for specifying a function type. We represent this in Rust using the OperationShape trait: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\npub trait OperationShape { /// The name of the operation. const ID: ShapeId; /// The operation input. type Input; /// The operation output. type Output; /// The operation error. [`Infallible`](std::convert::Infallible) in the case where no error /// exists. type Error;\n}\n# use aws_smithy_http_server::operation::OperationShape as OpS;\n# impl OperationShape for T {\n# const ID: ShapeId = ::ID;\n# type Input = ::Input;\n# type Output = ::Output;\n# type Error = ::Error;\n# } For each Smithy Operation shape, /// Retrieve information about a Pokémon species.\n@readonly\n@http(uri: \"/pokemon-species/{name}\", method: \"GET\")\noperation GetPokemonSpecies { input: GetPokemonSpeciesInput, output: GetPokemonSpeciesOutput, errors: [ResourceNotFoundException],\n} the following implementation is generated # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{operation::OperationShape, shape_id::ShapeId};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n/// Retrieve information about a Pokémon species.\npub struct GetPokemonSpecies; impl OperationShape for GetPokemonSpecies { const ID: ShapeId = ShapeId::new(\"com.aws.example#GetPokemonSpecies\", \"com.aws.example\", \"GetPokemonSpecies\"); type Input = GetPokemonSpeciesInput; type Output = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError;\n} where GetPokemonSpeciesInput, GetPokemonSpeciesOutput are both generated from the Smithy structures and GetPokemonSpeciesError is an enum generated from the errors: [ResourceNotFoundException]. Note that the GetPokemonSpecies marker structure is a zero-sized type (ZST), and therefore does not exist at runtime - it is a way to attach operation-specific data on an entity within the type system. The following nomenclature will aid us in our survey. We describe a tower::Service as a \"model service\" if its request and response are Smithy structures, as defined by the OperationShape trait - the GetPokemonSpeciesInput, GetPokemonSpeciesOutput, and GetPokemonSpeciesError described above. Similarly, we describe a tower::Service as a \"HTTP service\" if its request and response are http structures - http::Request and http::Response. The constructors exist on the marker ZSTs as an extension trait to OperationShape, namely OperationShapeExt : # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::operation::*;\n/// An extension trait over [`OperationShape`].\npub trait OperationShapeExt: OperationShape { /// Creates a new [`Service`] for well-formed [`Handler`]s. fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized; /// Creates a new [`Service`] for well-formed [`Service`](tower::Service)s. fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized;\n}\n# use aws_smithy_http_server::operation::OperationShapeExt as OpS;\n# impl OperationShapeExt for T {\n# fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized { ::from_handler(handler) }\n# fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized { ::from_service(svc) }\n# } Observe that there are two constructors provided: from_handler which takes a H: Handler and from_service which takes a S: OperationService. In both cases Self is passed as a parameter to the traits - this constrains handler: H and svc: S to the signature given by the implementation of OperationShape on Self. The Handler and OperationService both serve a similar purpose - they provide a common interface for converting to a model service S. The Handler trait covers all async functions taking GetPokemonSpeciesInput and asynchronously returning a Result. The OperationService trait covers all tower::Services with request GetPokemonSpeciesInput, response GetPokemonSpeciesOutput and error GetPokemonSpeciesOutput. The from_handler constructor is used in the following way: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt; async fn get_pokemon_service(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let operation = GetPokemonSpecies::from_handler(get_pokemon_service); Alternatively, from_service constructor: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# extern crate tower;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt;\nuse std::task::{Context, Poll};\nuse tower::Service; struct Svc { /* ... */\n} impl Service for Svc { type Response = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError; type Future = /* Future> */ # std::future::Ready>; fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll> { todo!() } fn call(&mut self, input: GetPokemonSpeciesInput) -> Self::Future { todo!() }\n} let svc: Svc = Svc { /* ... */ };\nlet operation = GetPokemonSpecies::from_service(svc); To summarize a model service constructed can be constructed from a Handler or a OperationService subject to the constraints of an OperationShape. More detailed information on these conversions is provided in the Handler and OperationService section Rust docs.","breadcrumbs":"Server » The Anatomy of a Service » Operations","id":"84","title":"Operations"},"85":{"body":"A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use aws_smithy_http_server::body::BoxBody;\n# use std::future::Future;\n/// Provides a protocol aware extraction from a [`Request`]. This consumes the\n/// [`Request`], in contrast to [`FromParts`].\npub trait FromRequest: Sized { type Rejection: IntoResponse; type Future: Future>; /// Extracts `self` from a [`Request`] asynchronously. fn from_request(request: http::Request) -> Self::Future;\n} /// A protocol aware function taking `self` to [`http::Response`].\npub trait IntoResponse { /// Performs a conversion into a [`http::Response`]. fn into_response(self) -> http::Response;\n}\n# use aws_smithy_http_server::request::FromRequest as FR;\n# impl> FromRequest for T {\n# type Rejection = >::Rejection;\n# type Future = >::Future;\n# fn from_request(request: http::Request) -> Self::Future {\n# >::from_request(request)\n# }\n# }\n# use aws_smithy_http_server::response::IntoResponse as IR;\n# impl> IntoResponse

    for T {\n# fn into_response(self) -> http::Response { >::into_response(self) }\n# } Note that both traits are parameterized by Protocol. These protocols exist as ZST marker structs: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::{\n# aws_json_10::AwsJson1_0 as _,\n# aws_json_11::AwsJson1_1 as _,\n# rest_json_1::RestJson1 as _,\n# rest_xml::RestXml as _,\n# };\n/// [AWS REST JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restjson1-protocol.html).\npub struct RestJson1; /// [AWS REST XML Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restxml-protocol.html).\npub struct RestXml; /// [AWS JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_0-protocol.html).\npub struct AwsJson1_0; /// [AWS JSON 1.1 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_1-protocol.html).\npub struct AwsJson1_1;","breadcrumbs":"Server » The Anatomy of a Service » Serialization and Deserialization","id":"85","title":"Serialization and Deserialization"},"86":{"body":"We can \"upgrade\" a model service to a HTTP service using FromRequest and IntoResponse described in the prior section: stateDiagram-v2 direction LR HttpService: HTTP Service [*] --> from_request: HTTP Request state HttpService { direction LR ModelService: Model Service from_request --> ModelService: Model Input ModelService --> into_response: Model Output } into_response --> [*]: HTTP Response This is formalized by the Upgrade HTTP service. The tower::Service implementation is approximately: impl Service for Upgrade\nwhere Input: FromRequest, S: Service, S::Response: IntoResponse

    , S::Error: IntoResponse

    ,\n{ async fn call(&mut self, request: http::Request) -> http::Response { let model_request = match ::from_request(request).await { Ok(ok) => ok, Err(err) => return err.into_response() }; let model_response = self.model_service.call(model_request).await; model_response.into_response() }\n} When we GetPokemonSpecies::from_handler or GetPokemonSpecies::from_service, the model service produced, S, will meet the constraints above. There is an associated Plugin, UpgradePlugin which constructs Upgrade from a service. The upgrade procedure is finalized by the application of the Layer L, referenced in Operation. In this way the entire upgrade procedure takes an Operation and returns a HTTP service. stateDiagram-v2 direction LR [*] --> UpgradePlugin: HTTP Request state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } UpgradePlugin --> [*]: HTTP Response Note that the S is specified by logic written, in Rust, by the customer, whereas UpgradePlugin is specified entirely by Smithy model via the protocol, HTTP bindings , etc.","breadcrumbs":"Server » The Anatomy of a Service » Upgrading a Model Service","id":"86","title":"Upgrading a Model Service"},"87":{"body":"Different protocols supported by Smithy enjoy different routing mechanisms, for example, AWS JSON 1.0 uses the X-Amz-Target header to select an operation, whereas AWS REST XML uses the HTTP label trait . Despite their differences, all routing mechanisms satisfy a common interface. This is formalized using the Router trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n/// An interface for retrieving an inner [`Service`] given a [`http::Request`].\npub trait Router { type Service; type Error; /// Matches a [`http::Request`] to a target [`Service`]. fn match_route(&self, request: &http::Request) -> Result;\n} which provides the ability to determine an inner HTTP service from a collection using a &http::Request. Types which implement the Router trait are converted to a HTTP service via the RoutingService struct: /// A [`Service`] using a [`Router`] `R` to redirect messages to specific routes.\n///\n/// The `Protocol` parameter is used to determine the serialization of errors.\npub struct RoutingService { router: R, _protocol: PhantomData,\n} impl Service for RoutingService\nwhere R: Router, R::Service: Service, R::Error: IntoResponse

    + Error,\n{ type Response = http::Response; type Error = /* implementation detail */; async fn call(&mut self, req: http::Request) -> Result { match self.router.match_route(&req) { // Successfully routed, use the routes `Service::call`. Ok(ok) => ok.oneshot(req).await, // Failed to route, use the `R::Error`s `IntoResponse

    `. Err(error) => { debug!(%error, \"failed to route\"); Err(Box::new(error.into_response())) } } }\n} The RouterService is the final piece necessary to form a functioning composition - it is used to aggregate together the HTTP services, created via the upgrade procedure, into a single HTTP service which can be presented to the customer. stateDiagram\nstate in <<fork>> direction LR [*] --> in state RouterService { direction LR in --> ServiceA in --> ServiceB in --> ServiceC } ServiceA --> [*] ServiceB --> [*] ServiceC --> [*]","breadcrumbs":"Server » The Anatomy of a Service » Routers","id":"87","title":"Routers"},"88":{"body":"A Plugin is a [tower::Layer] with two extra type parameters, Service and Operation, corresponding to Smithy Service and Smithy Operation . This allows the middleware to be parameterized them and change behavior depending on the context in which it's applied. # extern crate aws_smithy_http_server;\npub trait Plugin { type Output; fn apply(&self, input: T) -> Self::Output;\n}\n# use aws_smithy_http_server::plugin::Plugin as Pl;\n# impl> Plugin for U {\n# type Output = >::Output;\n# fn apply(&self, input: T) -> Self::Output { >::apply(self, input) }\n# } An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs . Plugins can be applied in two places: HTTP plugins, which are applied pre-deserialization/post-serialization, acting on HTTP requests/responses. Model plugins, which are applied post-deserialization/pre-serialization, acting on model inputs/outputs/errors. stateDiagram-v2 direction LR [*] --> S: HTTP Request state HttpPlugin { state UpgradePlugin { state ModelPlugin { S } } } S --> [*]: HTTP Response The service builder API requires plugins to be specified upfront - they must be registered in the config object, which is passed as an argument to builder. Plugins cannot be modified afterwards. You might find yourself wanting to apply multiple plugins to your service. This can be accommodated via [HttpPlugins] and [ModelPlugins]. # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::HttpPlugins;\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as MetricsPlugin; let http_plugins = HttpPlugins::new().push(LoggingPlugin).push(MetricsPlugin); The plugins' runtime logic is executed in registration order. In the example above, LoggingPlugin would run first, while MetricsPlugin is executed last. If you are vending a plugin, you can leverage HttpPlugins or ModelPlugins as an extension point: you can add custom methods to it using an extension trait. For example: # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack};\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as AuthPlugin; pub trait AuthPluginExt { fn with_auth(self) -> HttpPlugins>;\n} impl AuthPluginExt for HttpPlugins { fn with_auth(self) -> HttpPlugins> { self.push(AuthPlugin) }\n} let http_plugins = HttpPlugins::new() .push(LoggingPlugin) // Our custom method! .with_auth();","breadcrumbs":"Server » The Anatomy of a Service » Plugins","id":"88","title":"Plugins"},"89":{"body":"The service builder is the primary public API, generated for every Smithy Service . At a high-level, the service builder takes as input a function for each Smithy Operation and returns a single HTTP service. The signature of each function, also known as handlers , must match the constraints of the corresponding Smithy model. You can create an instance of a service builder by calling builder on the corresponding service struct. # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::routing::Route;\n/// The service builder for [`PokemonService`].\n///\n/// Constructed via [`PokemonService::builder`].\npub struct PokemonServiceBuilder { capture_pokemon_operation: Option>, empty_operation: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, get_storage: Option>, health_check_operation: Option>, http_plugin: HttpPl, model_plugin: ModelPl,\n} The builder has two setter methods for each Smithy Operation in the Smithy Service : pub fn get_pokemon_species(self, handler: HandlerType) -> Self where HandlerType:Handler, ModelPl: Plugin< PokemonService, GetPokemonSpecies, IntoService >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_handler(handler); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new() .apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_service(self, service: S) -> Self where S: OperationService, ModelPl: Plugin< PokemonService, GetPokemonSpecies, Normalize >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_service(service); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new().apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_custom(mut self, svc: S) -> Self where S: Service, Response = Response, Error = Infallible>, { self.get_pokemon_species = Some(Route::new(svc)); self } Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise. You can transform a builder instance into a complete service (PokemonService) using one of the following methods: build. The transformation fails if one or more operations do not have a registered handler; build_unchecked. The transformation never fails, but we return 500s for all operations that do not have a registered handler. Both builder methods take care of: Pair each handler with the routing information for the corresponding operation; Collect all (routing_info, handler) pairs into a Router; Transform the Router implementation into a HTTP service via RouterService; Wrap the RouterService in a newtype given by the service name, PokemonService. The final outcome, an instance of PokemonService, looks roughly like this: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{routing::RoutingService, protocol::rest_json_1::{router::RestRouter, RestJson1}};\n/// The Pokémon Service allows you to retrieve information about Pokémon species.\n#[derive(Clone)]\npub struct PokemonService { router: RoutingService, RestJson1>,\n} The following schematic summarizes the composition: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradePlugin --> [*]: HTTP Response state PokemonService { state RoutingService { in --> UpgradePlugin: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state C1 { state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } } C2 C3 C4 } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response","breadcrumbs":"Server » The Anatomy of a Service » Builders","id":"89","title":"Builders"},"9":{"body":"APIs evolve in unpredictable ways, and it's crucial that the SDK can evolve without breaking existing customers. This means designing the SDK so that fundamental changes to the internals can be made without altering the external interface we surface to customers: Keeping the shared core as small & opaque as possible. Don’t leak our internal dependencies to customers With every design choice, consider, \"Can I reverse this choice in the future?\" This may not result in DRY code, and that’s OK! Code that is auto generated has different goals and tradeoffs than code that has been written by hand.","breadcrumbs":"Tenets » Design for the Future","id":"9","title":"Design for the Future"},"90":{"body":"An additional omitted detail is that we provide an \"escape hatch\" allowing Handlers and OperationServices to accept data that isn't modelled. In addition to accepting Op::Input they can accept additional arguments which implement the FromParts trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use http::request::Parts;\n# use aws_smithy_http_server::response::IntoResponse;\n/// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n}\n# use aws_smithy_http_server::request::FromParts as FP;\n# impl> FromParts

    for T {\n# type Rejection = >::Rejection;\n# fn from_parts(parts: &mut Parts) -> Result { >::from_parts(parts) }\n# } This differs from FromRequest trait, introduced in Serialization and Deserialization , as it's synchronous and has non-consuming access to Parts , rather than the entire Request . pub struct Parts { pub method: Method, pub uri: Uri, pub version: Version, pub headers: HeaderMap, pub extensions: Extensions, /* private fields */\n} This is commonly used to access types stored within Extensions which have been inserted by a middleware. An Extension struct implements FromParts to support this use case: # extern crate aws_smithy_http_server;\n# extern crate http;\n# extern crate thiserror;\n# use aws_smithy_http_server::{body::BoxBody, request::FromParts, response::IntoResponse};\n# use http::status::StatusCode;\n# use thiserror::Error;\n# fn empty() -> BoxBody { todo!() }\n/// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); impl FromParts for Extension\nwhere T: Clone + Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n}","breadcrumbs":"Server » The Anatomy of a Service » Accessing Unmodelled Data","id":"90","title":"Accessing Unmodelled Data"},"91":{"body":"This document introduces the project and how code is being generated. It is written for developers who want to start contributing to smithy-rs.","breadcrumbs":"Server » Generating Common Service Code » Generating Common Service Code","id":"91","title":"Generating Common Service Code"},"92":{"body":"The project is divided in: /codegen-core: contains common code to be used for both client and server code generation /codegen-client: client code generation. Depends on codegen-core /codegen-server: server code generation. Depends on codegen-core /aws: the AWS Rust SDK, it deals with AWS services specifically. The folder structure reflects the project's, with the rust-runtime and the codegen /rust-runtime: the generated client and server crates may depend on crates in this folder. Crates here are not code generated. The only crate that is not published is inlineable, which contains common functions used by other crates, copied into the source crate Crates in /rust-runtime (informally referred to as \"runtime crates\") are added to a crate's dependency only when used. For example, if a model uses event streams, the generated crates will depend on aws-smithy-eventstream .","breadcrumbs":"Server » Generating Common Service Code » Folder structure","id":"92","title":"Folder structure"},"93":{"body":"smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and inherits from SmithyBuildPlugin in smithy-build . Code generation is in Kotlin and shared common, non-Rust specific code with the smithy Java repository . They plug into the Smithy gradle plugin, which is a gradle plugin. The comment at the beginning of execute describes what a Decorator is and uses the following terms: Context: contains the model being generated, projection and settings for the build Decorator: (also referred to as customizations) customizes how code is being generated. AWS services are required to sign with the SigV4 protocol, and a decorator adds Rust code to sign requests and responses. Decorators are applied in reverse order of being added and have a priority order. Writer: creates files and adds content; it supports templating, using # for substitutions Location: the file where a symbol will be written to The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method. CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor . CodegenVisitor, RustCodegenPlugin, and wherever there are different implementations between client and server, such as in generating error types, have corresponding server versions. Objects used throughout code generation are: Symbol: a node in a graph, an abstraction that represents the qualified name of a type; symbols reference and depend on other symbols, and have some common properties among languages (such as a namespace or a definition file). For Rust, we add properties to include more metadata about a symbol, such as its type RustType : Option, HashMap, ... along with their namespaces of origin such as std::collections RuntimeType : the information to locate a type, plus the crates it depends on ShapeId : an immutable object that identifies a Shape Useful conversions are: SymbolProvider.toSymbol(shape) where SymbolProvider constructs symbols for shapes. Some symbols require to create other symbols and types; event streams and other streaming shapes are an example. Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider , and all other providers will work with this new symbol. Model.expectShape(shapeId) Each model has a shapeId to shape map; this method returns the shape associated with this shapeId. Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape. CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust ; here is how a service is constructed, here a structure and so on. Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis . The complete result is a Rust crate , in which all dependencies are written into their modules and lib.rs is generated ( here ). execute() ends by running cargo fmt , to avoid having to format correctly Rust in Writers and to be sure the generated code follows the styling rules.","breadcrumbs":"Server » Generating Common Service Code » Generating code","id":"93","title":"Generating code"},"94":{"body":"What is an RFC?: An RFC is a document that proposes a change to smithy-rs or the AWS Rust SDK. Request for Comments means a request for discussion and oversight about the future of the project from maintainers, contributors and users. When should I write an RFC?: The AWS Rust SDK team proactively decides to write RFCs for major features or complex changes that we feel require extra scrutiny. However, the process can be used to request feedback on any change. Even changes that seem obvious and simple at first glance can be improved once a group of interested and experienced people have a chance to weigh in. Who can submit an RFC?: An RFC can be submitted by anyone. In most cases, RFCs are authored by SDK maintainers, but everyone is welcome to submit RFCs. Where do I start?: If you're ready to write and submit an RFC, please start a GitHub discussion with a summary of what you're trying to accomplish first. That way, the AWS Rust SDK team can ensure they have the bandwidth to review and shepherd the RFC through the whole process before you've expended effort in writing it. Once you've gotten the go-ahead, start with the RFC template .","breadcrumbs":"RFCs » RFCs","id":"94","title":"RFCs"},"95":{"body":"RFC-0001: AWS Configuration RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream RFC-0003: API for Presigned URLs RFC-0004: Retry Behavior RFC-0005: Service Generation RFC-0006: Service-specific middleware RFC-0007: Split Release Process RFC-0008: Paginators RFC-0009: Example Consolidation RFC-0010: Waiters RFC-0011: Publishing Alpha to Crates.io RFC-0012: Independent Crate Versioning RFC-0013: Body Callback APIs RFC-0014: Fine-grained timeout configuration RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates RFC-0016: Supporting Flexible Checksums RFC-0017: Customizable Client Operations RFC-0018: Logging in the Presence of Sensitive Data RFC-0019: Event Streams Errors RFC-0020: Service Builder Improvements RFC-0021: Dependency Versions RFC-0022: Error Context and Compatibility RFC-0023: Evolving the new service builder API RFC-0024: RequestID RFC-0025: Constraint traits RFC-0026: Client Crate Organization RFC-0027: Endpoints 2.0 RFC-0028: SDK Credential Cache Type Safety RFC-0029: Finding New Home for Credential Types RFC-0030: Serialization And Deserialization RFC-0031: Providing Fallback Credentials on Timeout RFC-0032: Better Constraint Violations RFC-0033: Improving access to request IDs in SDK clients RFC-0034: The Orchestrator Architecture RFC-0035: Sensible Defaults for Collection Values RFC-0036: Enabling HTTP crate upgrades in the future RFC-0037: The HTTP wrapper type","breadcrumbs":"RFCs » Previously Submitted RFCs","id":"95","title":"Previously Submitted RFCs"},"96":{"body":"Status: Implemented. For an ordered list of proposed changes see: Proposed changes . An AWS SDK loads configuration from multiple locations. Some of these locations can be loaded synchronously. Some are async. Others may actually use AWS services such as STS or SSO. This document proposes an overhaul to the configuration design to facilitate three things: Future-proof: It should be easy to add additional sources of region and credentials, sync and async, from many sources, including code-generated AWS services. Ergonomic: There should be one obvious way to create an AWS service client. Customers should be able to easily customize the client to make common changes. It should encourage sharing of things that are expensive to create. Shareable: A config object should be usable to configure multiple AWS services.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » AWS Configuration RFC","id":"96","title":"AWS Configuration RFC"},"97":{"body":"The following is an imagined usage guide if this RFC where implemented.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Usage Guide","id":"97","title":"Usage Guide"},"98":{"body":"Using the SDK requires two crates: aws-sdk-: The service you want to use (e.g. dynamodb, s3, sesv2) aws-config: AWS metaconfiguration. This crate contains all the of logic to load configuration for the SDK (regions, credentials, retry configuration, etc.) Add the following to your Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Let's write a small example project to list tables: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let config = aws_config::load_from_env().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n} Tip: Every AWS service exports a top level Error type (e.g. aws_sdk_dynamodb::Error ). Individual operations return specific error types that contain only the error variants returned by the operation . Because all the individual errors implement Into, you can use dynamodb::Error as the return type along with ?. Next, we'll explore some other ways to configure the SDK. Perhaps you want to override the region loaded from the environment with your region. In this case, we'll want more control over how we load config, using aws_config::from_env() directly: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let region_provider = RegionProviderChain::default_provider().or_else(\"us-west-2\"); let config = aws_config::from_env().region(region_provider).load().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Getting Started","id":"98","title":"Getting Started"},"99":{"body":"The Config produced by aws-config can be used with any AWS service. If we wanted to read our Dynamodb DB tables aloud with Polly, we could create a Polly client as well. First, we'll need to add Polly to our Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-sdk-polly = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Then, we can use the shared configuration to build both service clients. The region override will apply to both clients: use aws_sdk_dynamodb as dynamodb;\nuse aws_sdk_polly as polly; #[tokio::main]\nasync fn main() -> Result<(), Box> { // error type changed to `Box` because we now have dynamo and polly errors let config = aws_config::env_loader().with_region(Region::new(\"us-west-2\")).load().await; let dynamodb = dynamodb::Client::new(&config); let polly = polly::Client::new(&config); let resp = dynamodb.list_tables().send().await; let tables = resp.tables.unwrap_or_default(); let table_sentence = format!(\"my dynamo DB tables are: {}\", tables.join(\", \")); let audio = polly.synthesize_speech() .output_format(OutputFormat::Mp3) .text(table_sentence) .voice_id(VoiceId::Joanna) .send() .await?; // Get MP3 data from the response and save it let mut blob = resp .audio_stream .collect() .await .expect(\"failed to read data\"); let mut file = tokio::fs::File::create(\"tables.mp3\") .await .expect(\"failed to create file\"); file.write_all_buf(&mut blob) .await .expect(\"failed to write to file\"); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sharing configuration between multiple services","id":"99","title":"Sharing configuration between multiple services"}},"length":510,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"294":{"tf":1.0}}}},"0":{"0":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":2,"docs":{"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.4142135623730951},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":6,"docs":{"346":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"426":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":17,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":43,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":28,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"505":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"264":{"tf":1.0},"34":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":2.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":27,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":77,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.449489742783178},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.0},"292":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.0}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"66":{"tf":3.605551275463989}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":10,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"169":{"tf":3.605551275463989},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.0},"504":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.449489742783178},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.605551275463989},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"df":19,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.0},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"14":{"tf":3.3166247903554},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.0},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":27,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.0},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.0},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":33,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.7320508075688772},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":11,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":6,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":65,"docs":{"1":{"tf":1.0},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":3.0},"276":{"tf":1.4142135623730951},"278":{"tf":2.449489742783178},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"312":{"tf":2.449489742783178},"313":{"tf":4.242640687119285},"314":{"tf":2.23606797749979},"316":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":2.8284271247461903},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"366":{"tf":3.1622776601683795},"367":{"tf":2.449489742783178},"368":{"tf":4.123105625617661},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":4.47213595499958},"200":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":80,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.0},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":13,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":3.872983346207417},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":7.54983443527075},"227":{"tf":4.242640687119285},"228":{"tf":5.385164807134504},"229":{"tf":3.1622776601683795},"230":{"tf":2.0},"231":{"tf":4.47213595499958},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":2.6457513110645907},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.7320508075688772},"495":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.242640687119285},"490":{"tf":2.0},"491":{"tf":3.7416573867739413},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.449489742783178},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":120,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.4641016151377544},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.449489742783178},"234":{"tf":2.23606797749979},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.6457513110645907},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.6457513110645907},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":3.1622776601683795},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.0}}}}}}},"t":{"df":37,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.23606797749979},"290":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.6457513110645907},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.0},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":71,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":4.123105625617661},"460":{"tf":3.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"488":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.6457513110645907},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.4142135623730951},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.0},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":31,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":3.7416573867739413},"324":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":3.3166247903554},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":2.23606797749979},"432":{"tf":2.23606797749979},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.7320508075688772},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.0},"509":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.4142135623730951},"412":{"tf":1.0},"482":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":128,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.6457513110645907},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.449489742783178},"188":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":3.872983346207417},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":2.23606797749979},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"337":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":14,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":93,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":2.6457513110645907},"369":{"tf":2.0},"371":{"tf":1.0},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"410":{"tf":2.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":3.3166247903554},"415":{"tf":3.605551275463989},"416":{"tf":2.0},"418":{"tf":4.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.6457513110645907},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":76,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"240":{"tf":1.0},"248":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":65,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.0},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.0},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.0},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":69,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.0},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.449489742783178},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"405":{"tf":2.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":48,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.4142135623730951},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.0},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":37,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":9,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"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":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":32,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":2.6457513110645907},"347":{"tf":2.8284271247461903},"349":{"tf":3.4641016151377544},"350":{"tf":4.795831523312719},"351":{"tf":4.47213595499958},"352":{"tf":2.6457513110645907},"353":{"tf":2.0},"354":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":2.449489742783178},"359":{"tf":3.0},"361":{"tf":2.6457513110645907},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":3.7416573867739413},"459":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.0},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"313":{"tf":3.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":2.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":123,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":4.795831523312719},"262":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"280":{"tf":1.0},"287":{"tf":3.605551275463989},"289":{"tf":3.872983346207417},"290":{"tf":3.1622776601683795},"291":{"tf":3.0},"293":{"tf":3.0},"294":{"tf":2.6457513110645907},"295":{"tf":3.605551275463989},"296":{"tf":2.8284271247461903},"297":{"tf":4.69041575982343},"298":{"tf":3.0},"299":{"tf":2.6457513110645907},"300":{"tf":1.7320508075688772},"301":{"tf":3.605551275463989},"303":{"tf":1.4142135623730951},"305":{"tf":2.23606797749979},"306":{"tf":2.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.0},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.449489742783178},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":133,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":3.0},"165":{"tf":2.23606797749979},"166":{"tf":3.1622776601683795},"167":{"tf":2.6457513110645907},"169":{"tf":3.605551275463989},"170":{"tf":3.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":56,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.0},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.23606797749979},"398":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":2.23606797749979},"418":{"tf":2.449489742783178},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":2,"docs":{"10":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":13,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":3.3166247903554},"217":{"tf":2.449489742783178},"218":{"tf":2.6457513110645907},"219":{"tf":2.6457513110645907},"220":{"tf":2.6457513110645907},"221":{"tf":4.47213595499958},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":2.8284271247461903},"381":{"tf":2.6457513110645907},"382":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"508":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.8284271247461903},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":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":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":15,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":9,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"204":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.0},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":3,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":12,"docs":{"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"382":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.7320508075688772},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":1.7320508075688772},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":44,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"201":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.6457513110645907},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":1.7320508075688772},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":3.0},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":6,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"369":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{"483":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":4,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":16,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":111,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.23606797749979},"111":{"tf":2.449489742783178},"112":{"tf":2.449489742783178},"113":{"tf":2.6457513110645907},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":2.0},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":3.1622776601683795},"471":{"tf":3.605551275463989},"472":{"tf":3.0},"475":{"tf":3.4641016151377544},"476":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":2.0},"482":{"tf":2.23606797749979},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"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":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.0},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":25,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.1622776601683795},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.23606797749979},"67":{"tf":4.0},"68":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}},"i":{"df":12,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":4,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.449489742783178},"439":{"tf":2.23606797749979},"440":{"tf":1.7320508075688772},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":55,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":1.7320508075688772},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.23606797749979},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":2.449489742783178},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.23606797749979}}}}}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":29,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"163":{"tf":1.0},"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.6457513110645907},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":46,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":38,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.6457513110645907},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":7,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.23606797749979},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"423":{"tf":1.0}}}},"df":1,"docs":{"325":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.0},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":43,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.23606797749979},"141":{"tf":2.8284271247461903},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.1622776601683795},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":3.3166247903554},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.6457513110645907},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.123105625617661},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":1.7320508075688772},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":10,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.242640687119285},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":35,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.23606797749979},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":97,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.0},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":23,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":36,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.0},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"236":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":143,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":2.0},"235":{"tf":1.0},"236":{"tf":2.0},"239":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.4641016151377544},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.1622776601683795},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"445":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.605551275463989},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"437":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"310":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":2.23606797749979},"459":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":3.1622776601683795},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"112":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.0},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":14,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"408":{"tf":1.0},"438":{"tf":3.0},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":36,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":3.872983346207417},"156":{"tf":3.4641016151377544},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":2.0},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.6457513110645907},"356":{"tf":2.8284271247461903},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":1.7320508075688772},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":15,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":32,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.0},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.0},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.449489742783178},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.1622776601683795},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0},"88":{"tf":3.3166247903554},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.0},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":1.7320508075688772},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.0},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"240":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.605551275463989},"118":{"tf":2.0},"119":{"tf":2.8284271247461903},"120":{"tf":2.23606797749979},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":38,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.23606797749979},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":2.23606797749979},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.7320508075688772},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.449489742783178},"277":{"tf":3.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":122,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":2.0},"415":{"tf":3.3166247903554},"416":{"tf":2.8284271247461903},"418":{"tf":3.3166247903554},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":21,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"150":{"tf":2.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.0},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":31,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"152":{"tf":2.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.0},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":50,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.0},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":17,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":26,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.0},"475":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":154,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":3.3166247903554},"213":{"tf":1.0},"214":{"tf":2.6457513110645907},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.1622776601683795},"434":{"tf":1.7320508075688772},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.4641016151377544},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"317":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"437":{"tf":2.6457513110645907},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"459":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":72,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":3.1622776601683795},"125":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":3.605551275463989},"131":{"tf":2.8284271247461903},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.4142135623730951},"487":{"tf":3.605551275463989},"488":{"tf":1.4142135623730951},"489":{"tf":4.69041575982343},"490":{"tf":2.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":2.8284271247461903},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":79,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":114,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":2.0},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":2.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":3.4641016151377544},"95":{"tf":6.164414002968976},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.0},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.0},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.23606797749979},"274":{"tf":2.23606797749979},"275":{"tf":2.0},"276":{"tf":2.8284271247461903},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.6457513110645907},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":80,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.449489742783178},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":6,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"482":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":124,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":1.7320508075688772},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":12,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"17":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":161,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.7320508075688772},"169":{"tf":3.872983346207417},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.0}}},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":53,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.7320508075688772},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":64,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"247":{"tf":2.449489742783178},"248":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":2.23606797749979},"252":{"tf":1.4142135623730951},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":3.1622776601683795},"257":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":3.4641016151377544},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":39,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"386":{"tf":2.23606797749979},"387":{"tf":2.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"402":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772},"409":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":46,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":160,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":3.0},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":1.0},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":3.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"274":{"tf":4.242640687119285},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":3.1622776601683795},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.3166247903554},"84":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":2.8284271247461903},"88":{"tf":2.0},"89":{"tf":3.7416573867739413},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":112,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"351":{"tf":1.0},"40":{"tf":1.4142135623730951},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":3.1622776601683795},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":21,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":175,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":4.0},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":2.0},"36":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"447":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":89,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":34,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"119":{"tf":1.0},"145":{"tf":1.4142135623730951},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"475":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.7320508075688772},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":2.6457513110645907},"261":{"tf":3.1622776601683795},"262":{"tf":1.4142135623730951},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"504":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.0},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.0},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":29,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":24,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":34,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":16,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":3.872983346207417},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":25,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.0},"205":{"tf":3.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"209":{"tf":2.449489742783178},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.6457513110645907},"213":{"tf":1.0},"214":{"tf":3.1622776601683795},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":2.6457513110645907},"412":{"tf":1.4142135623730951},"413":{"tf":2.8284271247461903},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":3.605551275463989},"418":{"tf":1.4142135623730951},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.0}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.23606797749979},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.0},"506":{"tf":2.0},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":118,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":3.7416573867739413},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.23606797749979},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"363":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"135":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":1.0},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":7,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":171,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.3166247903554},"310":{"tf":3.872983346207417},"312":{"tf":1.0},"313":{"tf":5.477225575051661},"319":{"tf":2.8284271247461903},"32":{"tf":2.23606797749979},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"390":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.0},"397":{"tf":2.6457513110645907},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.23606797749979},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":3.3166247903554},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":1,"docs":{"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":53,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"df":18,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":10,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":247,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":2.8284271247461903},"222":{"tf":1.0},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":101,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.23606797749979},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":2.0},"492":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.449489742783178},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":2,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":71,"docs":{"105":{"tf":2.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":2.6457513110645907},"188":{"tf":3.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":3.4641016151377544},"193":{"tf":3.7416573867739413},"194":{"tf":4.47213595499958},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":2.6457513110645907},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":3.1622776601683795},"432":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":6,"docs":{"171":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":4,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":2.8284271247461903},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"195":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"294":{"tf":1.0}}}},"0":{"0":{"1":{"df":13,"docs":{"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},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"2":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":10,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":10,"docs":{"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},"130":{"tf":1.0},"131":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":10,"docs":{"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},"140":{"tf":1.0},"95":{"tf":1.0}}},"6":{"df":5,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":11,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":9,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"95":{"tf":1.0}}},"9":{"df":9,"docs":{"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},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"2":{"df":14,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":15,"docs":{"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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.0},"233":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":20,"docs":{"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},"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},"95":{"tf":1.0}}},"9":{"df":5,"docs":{"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":19,"docs":{"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},"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},"280":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":7,"docs":{"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":16,"docs":{"287":{"tf":1.0},"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},"300":{"tf":1.0},"301":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":16,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":6,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":11,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"7":{"df":17,"docs":{"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},"95":{"tf":1.0}}},"8":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"9":{"df":7,"docs":{"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":36,"docs":{"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},"408":{"tf":1.0},"409":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":10,"docs":{"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},"418":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":17,"docs":{"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":14,"docs":{"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},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":12,"docs":{"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.7320508075688772},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":18,"docs":{"346":{"tf":2.449489742783178},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"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},"426":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":17,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":43,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":40,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"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},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":2.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"415":{"tf":1.4142135623730951},"430":{"tf":1.0},"465":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"504":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":2.0},"505":{"tf":1.4142135623730951},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"264":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":10,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":27,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"331":{"tf":2.0},"350":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":2.0},"368":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.7320508075688772},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":9,"docs":{"69":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":87,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.6457513110645907},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.4142135623730951}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.7416573867739413},"67":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":10,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"169":{"tf":3.7416573867739413},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.23606797749979},"504":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}}},"df":19,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":35,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.23606797749979},"14":{"tf":3.4641016151377544},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":2.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.7320508075688772},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.7320508075688772},"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},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":38,"docs":{"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},"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.4142135623730951},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":34,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":11,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":6,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":65,"docs":{"1":{"tf":1.0},"104":{"tf":2.0},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":111,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.6457513110645907},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":2.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":2.23606797749979},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.0},"303":{"tf":2.0},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.6457513110645907},"311":{"tf":2.23606797749979},"312":{"tf":2.8284271247461903},"313":{"tf":4.358898943540674},"314":{"tf":2.6457513110645907},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":3.0},"336":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.449489742783178},"397":{"tf":2.23606797749979},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.8284271247461903},"364":{"tf":2.0},"365":{"tf":1.0},"366":{"tf":3.3166247903554},"367":{"tf":2.6457513110645907},"368":{"tf":4.242640687119285},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":2.23606797749979},"199":{"tf":4.58257569495584},"200":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":80,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.7320508075688772},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":13,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"251":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.0},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":1.0},"432":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.449489742783178}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":4.0},"223":{"tf":2.0},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":7.681145747868608},"227":{"tf":4.358898943540674},"228":{"tf":5.477225575051661},"229":{"tf":3.3166247903554},"230":{"tf":2.23606797749979},"231":{"tf":4.58257569495584},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":15,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.358898943540674},"490":{"tf":2.23606797749979},"491":{"tf":3.872983346207417},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.6457513110645907},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":157,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.605551275463989},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.7320508075688772},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":2.23606797749979},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":2.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.449489742783178},"434":{"tf":2.6457513110645907},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.7320508075688772},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":2.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.0},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":32,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":2.0},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}}}},"t":{"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.449489742783178},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.8284271247461903},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.4142135623730951},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.4142135623730951},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":2.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":92,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.23606797749979},"458":{"tf":4.242640687119285},"460":{"tf":3.0},"485":{"tf":2.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.8284271247461903},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.449489742783178},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.7320508075688772},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.4142135623730951},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":34,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":4.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":2.23606797749979},"331":{"tf":2.0},"419":{"tf":2.8284271247461903},"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"425":{"tf":1.7320508075688772},"426":{"tf":2.6457513110645907},"427":{"tf":2.449489742783178},"428":{"tf":3.4641016151377544},"429":{"tf":1.7320508075688772},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":2.449489742783178},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"21":{"tf":1.7320508075688772},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":2.23606797749979},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"301":{"tf":2.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":2.0},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.4142135623730951},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.7320508075688772},"412":{"tf":1.0},"482":{"tf":1.4142135623730951},"56":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"345":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.0},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":140,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.6457513110645907},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.8284271247461903},"153":{"tf":2.8284271247461903},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.6457513110645907},"187":{"tf":1.0},"188":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":4.123105625617661},"195":{"tf":1.7320508075688772},"196":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.449489742783178},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":2.8284271247461903},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":18,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":93,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.8284271247461903},"364":{"tf":1.4142135623730951},"368":{"tf":2.6457513110645907},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":39,"docs":{"0":{"tf":1.0},"100":{"tf":2.449489742783178},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":2.0},"368":{"tf":2.8284271247461903},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"410":{"tf":2.449489742783178},"411":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":3.4641016151377544},"415":{"tf":3.7416573867739413},"416":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":4.123105625617661},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.8284271247461903},"238":{"tf":2.23606797749979},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":80,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":2.23606797749979},"241":{"tf":2.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.449489742783178},"396":{"tf":2.449489742783178},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.449489742783178},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.23606797749979},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":37,"docs":{"240":{"tf":1.0},"248":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.4142135623730951},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":70,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.242640687119285},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.1622776601683795},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.23606797749979},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":72,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.6457513110645907},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":2.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"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":2.23606797749979},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":2.0},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":53,"docs":{"0":{"tf":2.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.4142135623730951},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.4142135623730951},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.23606797749979},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.8284271247461903},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.4142135623730951},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":37,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":9,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.4142135623730951},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.449489742783178},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":36,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":3.0},"347":{"tf":3.0},"348":{"tf":1.0},"349":{"tf":3.605551275463989},"350":{"tf":5.0},"351":{"tf":4.69041575982343},"352":{"tf":3.0},"353":{"tf":2.449489742783178},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":3.0},"358":{"tf":1.0},"359":{"tf":3.1622776601683795},"360":{"tf":1.0},"361":{"tf":3.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.7416573867739413},"44":{"tf":3.872983346207417},"459":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.7320508075688772},"313":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.7320508075688772},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":2.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":125,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":2.449489742783178},"261":{"tf":4.898979485566356},"262":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":3.0},"280":{"tf":1.0},"287":{"tf":3.872983346207417},"288":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":3.3166247903554},"291":{"tf":3.3166247903554},"292":{"tf":1.0},"293":{"tf":3.1622776601683795},"294":{"tf":2.8284271247461903},"295":{"tf":3.872983346207417},"296":{"tf":3.1622776601683795},"297":{"tf":4.898979485566356},"298":{"tf":3.3166247903554},"299":{"tf":3.0},"300":{"tf":2.0},"301":{"tf":3.872983346207417},"303":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"306":{"tf":2.23606797749979},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":33,"docs":{"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":2.0},"260":{"tf":1.7320508075688772},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":24,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.7320508075688772},"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},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":134,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.3166247903554},"164":{"tf":3.1622776601683795},"165":{"tf":2.6457513110645907},"166":{"tf":3.3166247903554},"167":{"tf":2.8284271247461903},"168":{"tf":1.0},"169":{"tf":3.7416573867739413},"170":{"tf":3.1622776601683795},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.4142135623730951},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":63,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"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.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.449489742783178},"398":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":2.6457513110645907},"415":{"tf":2.449489742783178},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":13,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":3.605551275463989},"217":{"tf":2.8284271247461903},"218":{"tf":2.8284271247461903},"219":{"tf":3.1622776601683795},"220":{"tf":3.0},"221":{"tf":4.69041575982343},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":3.0},"381":{"tf":2.8284271247461903},"382":{"tf":2.8284271247461903},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":2.23606797749979},"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.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":3.0},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":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":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":19,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":22,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"204":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":2.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":3,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":16,"docs":{"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.449489742783178},"382":{"tf":2.0},"383":{"tf":1.7320508075688772},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":2.0},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.0},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.6457513110645907},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":2.6457513110645907},"93":{"tf":3.7416573867739413},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":44,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"247":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":2.0},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":3.0},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":6,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{"483":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":4,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":16,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":125,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":2.23606797749979},"470":{"tf":3.3166247903554},"471":{"tf":3.7416573867739413},"472":{"tf":3.1622776601683795},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":3.7416573867739413},"476":{"tf":2.0},"477":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":2.449489742783178},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"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":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.23606797749979},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.4641016151377544},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":4.123105625617661},"68":{"tf":3.4641016151377544}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":4,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":2.0},"324":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.6457513110645907},"439":{"tf":2.449489742783178},"440":{"tf":2.0},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"478":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":2.23606797749979},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":50,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.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},"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},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":55,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":2.0},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"12":{"tf":1.0},"185":{"tf":1.7320508075688772},"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},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":2.0},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.449489742783178},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":2.6457513110645907},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.449489742783178}}}}}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":29,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":2.0},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"163":{"tf":1.0},"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":2.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.6457513110645907},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":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":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":2.0},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":42,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.8284271247461903},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.6457513110645907},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":2.0},"248":{"tf":3.0},"249":{"tf":2.23606797749979},"250":{"tf":2.0},"251":{"tf":2.6457513110645907},"252":{"tf":2.8284271247461903},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":17,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.449489742783178},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"423":{"tf":1.0}}}},"df":1,"docs":{"325":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.23606797749979},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":2.0},"465":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":43,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":3.1622776601683795},"142":{"tf":2.23606797749979},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.4641016151377544},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":1.0},"251":{"tf":3.4641016151377544},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.8284271247461903},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.242640687119285},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.23606797749979},"75":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":2.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":10,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":2.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.358898943540674},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":48,"docs":{"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.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.7320508075688772},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":2.0},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":2.0},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.449489742783178},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":107,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":23,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":36,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.0},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":2.0},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.4142135623730951},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"236":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.7320508075688772},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":145,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":2.0},"212":{"tf":1.4142135623730951},"22":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.605551275463989},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.3166247903554},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.449489742783178},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"437":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"310":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":2.6457513110645907},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":2.6457513110645907},"458":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":3.4641016151377544},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":16,"docs":{"112":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"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":2.0},"345":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.4142135623730951},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":14,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"397":{"tf":1.7320508075688772},"408":{"tf":1.0},"438":{"tf":3.1622776601683795},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":2.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":36,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":4.0},"156":{"tf":3.605551275463989},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.449489742783178},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.8284271247461903},"356":{"tf":3.0},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":15,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":32,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.7320508075688772},"331":{"tf":1.0},"335":{"tf":1.7320508075688772},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.23606797749979},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.6457513110645907},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.3166247903554},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.8284271247461903},"86":{"tf":1.0},"88":{"tf":3.4641016151377544},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":2.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":2.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":20,"docs":{"101":{"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},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.4142135623730951},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":21,"docs":{"240":{"tf":1.7320508075688772},"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},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":3.7416573867739413},"118":{"tf":2.23606797749979},"119":{"tf":2.8284271247461903},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.4142135623730951},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.23606797749979},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":42,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.449489742783178},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"279":{"tf":2.0},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":2.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.6457513110645907},"277":{"tf":3.1622776601683795},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":124,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":2.23606797749979},"415":{"tf":3.4641016151377544},"416":{"tf":3.0},"417":{"tf":1.0},"418":{"tf":3.4641016151377544},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.4641016151377544}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":24,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.449489742783178},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"152":{"tf":2.6457513110645907},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.7320508075688772},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.4142135623730951},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.6457513110645907},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.4142135623730951},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":33,"docs":{"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":28,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":50,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":17,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":26,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.4142135623730951},"475":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":159,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":3.4641016151377544},"213":{"tf":1.0},"214":{"tf":2.8284271247461903},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.8284271247461903},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.4641016151377544},"434":{"tf":2.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.605551275463989},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":13,"docs":{"317":{"tf":1.7320508075688772},"318":{"tf":3.1622776601683795},"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":3.0},"439":{"tf":2.0},"440":{"tf":2.0},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":2.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"458":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.23606797749979},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.4641016151377544},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"459":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":72,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":3.3166247903554},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":3.7416573867739413},"131":{"tf":3.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.449489742783178},"486":{"tf":1.7320508075688772},"487":{"tf":3.872983346207417},"488":{"tf":1.7320508075688772},"489":{"tf":4.795831523312719},"490":{"tf":2.23606797749979},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":3.0},"494":{"tf":2.0},"495":{"tf":2.0},"496":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":79,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":404,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"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},"259":{"tf":2.23606797749979},"260":{"tf":2.23606797749979},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.8284271247461903},"303":{"tf":1.7320508075688772},"304":{"tf":2.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":2.23606797749979},"322":{"tf":2.23606797749979},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":2.23606797749979},"333":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"370":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"378":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":2.23606797749979},"411":{"tf":1.4142135623730951},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"433":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.23606797749979},"465":{"tf":2.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"473":{"tf":2.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":2.6457513110645907},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":2.23606797749979},"483":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"94":{"tf":3.7416573867739413},"95":{"tf":6.324555320336759},"96":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.23606797749979},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.23606797749979},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.6457513110645907},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":2.23606797749979},"275":{"tf":2.23606797749979},"276":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":2.8284271247461903},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":85,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.6457513110645907},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.6457513110645907},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":6,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"482":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":132,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":2.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},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.0},"169":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":2.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":12,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.4142135623730951}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"17":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":181,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"169":{"tf":4.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.0}}},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":53,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":64,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.449489742783178},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"240":{"tf":2.8284271247461903},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":1.4142135623730951},"247":{"tf":2.6457513110645907},"248":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.7320508075688772},"255":{"tf":2.8284271247461903},"256":{"tf":3.4641016151377544},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.7320508075688772},"67":{"tf":1.0},"81":{"tf":3.605551275463989},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.7320508075688772}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":52,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":2.8284271247461903},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":2.23606797749979},"396":{"tf":2.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":2.8284271247461903},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":2.23606797749979},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":62,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":2.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951},"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},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":175,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.4142135623730951},"141":{"tf":3.3166247903554},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":4.358898943540674},"275":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":3.4641016151377544},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":3.1622776601683795},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.605551275463989},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":2.23606797749979},"89":{"tf":3.872983346207417},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":112,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":2.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.449489742783178},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.23606797749979},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":44,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":21,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":2.0},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":196,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.605551275463989},"153":{"tf":4.242640687119285},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":3.1622776601683795},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.449489742783178},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"44":{"tf":1.0},"449":{"tf":2.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"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.7320508075688772},"459":{"tf":1.7320508075688772},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":90,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":34,"docs":{"100":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"475":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":2.23606797749979},"260":{"tf":2.8284271247461903},"261":{"tf":3.3166247903554},"262":{"tf":1.7320508075688772},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":2.0},"502":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.4641016151377544},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.1622776601683795},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.4142135623730951},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":29,"docs":{"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":24,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.4142135623730951},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"5":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":34,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":16,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.4142135623730951},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":4.0},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":30,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.6457513110645907},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"214":{"tf":3.4641016151377544},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":2.8284271247461903},"412":{"tf":1.7320508075688772},"413":{"tf":3.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":3.7416573867739413},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.449489742783178},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.23606797749979},"506":{"tf":2.23606797749979},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":119,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":4.0},"323":{"tf":2.0},"324":{"tf":2.6457513110645907},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":2.0},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.449489742783178},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":2.0},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.6457513110645907},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"470":{"tf":1.0},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"135":{"tf":1.0},"15":{"tf":2.0},"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.4142135623730951},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":7,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":176,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.4641016151377544},"310":{"tf":4.0},"312":{"tf":1.0},"313":{"tf":5.5677643628300215},"319":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.6457513110645907},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"386":{"tf":1.4142135623730951},"390":{"tf":2.449489742783178},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":2.8284271247461903},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":3.3166247903554},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":1,"docs":{"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":3.0},"41":{"tf":2.0},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.7320508075688772},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":53,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":2.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"df":18,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":13,"docs":{"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.449489742783178},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":249,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":2.449489742783178},"221":{"tf":3.0},"222":{"tf":1.4142135623730951},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":2.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":107,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.449489742783178},"468":{"tf":1.0},"472":{"tf":1.7320508075688772},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"485":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.4142135623730951},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.6457513110645907},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":2,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":77,"docs":{"105":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":3.3166247903554},"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":3.7416573867739413},"193":{"tf":4.0},"194":{"tf":4.69041575982343},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":3.0},"285":{"tf":3.1622776601683795},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.6457513110645907},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":1.7320508075688772},"425":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":2.449489742783178},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":3.3166247903554},"432":{"tf":2.449489742783178},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":7,"docs":{"171":{"tf":2.6457513110645907},"172":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":2.449489742783178},"175":{"tf":2.449489742783178},"176":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":2.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":4,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":62,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":2.0},"509":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":3.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"title":{"root":{"1":{".":{"0":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":1,"docs":{"191":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"346":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"197":{"tf":1.0},"311":{"tf":1.0}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"433":{"tf":1.0},"447":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"261":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":5,"docs":{"448":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0}},"j":{"a":{"c":{"df":1,"docs":{"394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"312":{"tf":1.0},"398":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}},"n":{"df":14,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"447":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"174":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"302":{"tf":1.0},"474":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":1,"docs":{"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"288":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"412":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":11,"docs":{"127":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"357":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"96":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"df":3,"docs":{"367":{"tf":1.0},"448":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"123":{"tf":1.0},"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"382":{"tf":1.0}}},"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":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"419":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"382":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"271":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"390":{"tf":1.4142135623730951},"397":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"362":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"215":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"378":{"tf":1.0},"408":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}}}}},"df":2,"docs":{"368":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"436":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"200":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"502":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"150":{"tf":1.0},"165":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"485":{"tf":1.0}},"i":{"df":4,"docs":{"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"110":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"291":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"433":{"tf":1.0},"453":{"tf":1.0},"477":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"134":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"301":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"425":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"8":{"tf":1.0},"91":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"287":{"tf":1.0},"45":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"305":{"tf":1.0},"405":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"368":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"399":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":11,"docs":{"125":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"437":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"287":{"tf":1.0},"299":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"497":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"306":{"tf":1.0},"56":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"459":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"339":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"312":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"410":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"240":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"387":{"tf":1.0}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"248":{"tf":1.0},"498":{"tf":1.0}}}}},"df":1,"docs":{"381":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"208":{"tf":1.0},"221":{"tf":1.4142135623730951},"353":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"489":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"281":{"tf":1.0},"284":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"325":{"tf":1.0},"375":{"tf":1.0},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.4142135623730951}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"158":{"tf":1.0},"403":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}},"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":3,"docs":{"32":{"tf":1.0},"388":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"507":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"380":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"502":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.0},"42":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"259":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"437":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"259":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"400":{"tf":1.0},"474":{"tf":1.0}}}},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.0},"255":{"tf":1.0},"314":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0}}}}}}}},"f":{".":{"a":{".":{"df":0,"docs":{},"q":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"498":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"401":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}},"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"398":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"310":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"483":{"tf":1.0},"9":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.0},"477":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"o":{"df":2,"docs":{"17":{"tf":1.0},"311":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"244":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"304":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.0},"317":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":15,"docs":{"108":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"479":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"75":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"294":{"tf":1.0},"506":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"433":{"tf":1.0},"437":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"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":35,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"397":{"tf":1.0},"415":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"263":{"tf":1.0},"433":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"298":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"20":{"tf":1.0},"398":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"441":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"393":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"401":{"tf":1.0},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"467":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"502":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"153":{"tf":1.0},"382":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"257":{"tf":1.0},"458":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"324":{"tf":1.0},"326":{"tf":1.0},"504":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"240":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"498":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"237":{"tf":1.0},"437":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":2,"docs":{"37":{"tf":1.0},"458":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"272":{"tf":1.0},"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"400":{"tf":1.0},"448":{"tf":1.0},"487":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"454":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"285":{"tf":1.0},"494":{"tf":1.0},"99":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"121":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"14":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"390":{"tf":1.0}}},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"29":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"219":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"295":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":16,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":10,"docs":{"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"397":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"275":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"312":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"418":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"296":{"tf":1.0},"334":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"307":{"tf":1.0},"410":{"tf":1.0}},"e":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"330":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"310":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"219":{"tf":1.0},"498":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"237":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}},"df":15,"docs":{"14":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"255":{"tf":1.0},"325":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"475":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"317":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"133":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":2,"docs":{"353":{"tf":1.0},"494":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"406":{"tf":1.0},"440":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"437":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"301":{"tf":1.0}}}}}}},"f":{"c":{"df":56,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"61":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"252":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}}}}},"s":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"288":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"284":{"tf":1.0},"358":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"306":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"3":{"df":1,"docs":{"504":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"382":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":14,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"362":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"500":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"240":{"tf":1.0},"256":{"tf":1.0},"404":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"397":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"375":{"tf":1.0},"381":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"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":1,"docs":{"69":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"302":{"tf":1.0},"453":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"126":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"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":{"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"4":{"df":2,"docs":{"230":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"505":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"395":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":19,"docs":{"11":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"449":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.0},"372":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}}},"v":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"169":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"208":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"197":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"458":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"448":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"329":{"tf":1.0},"368":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"443":{"tf":1.0},"447":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"155":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"223":{"tf":1.0},"283":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"184":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"410":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"110":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":14,"docs":{"243":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"397":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"504":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"329":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"271":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"13":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"504":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"392":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":9,"docs":{"108":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"378":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"398":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"59":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"257":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":1.0},"148":{"tf":1.0},"483":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"250":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":1.0},"498":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/design/searchindex.json b/design/searchindex.json index 63b1710701..87fe97d5fb 100644 --- a/design/searchindex.json +++ b/design/searchindex.json @@ -1 +1 @@ -{"doc_urls":["overview.html#design-overview","overview.html#acknowledgments","overview.html#external-api-overview","overview.html#internals","overview.html#code-generation","tenets.html#rust-sdk-design-tenets","tenets.html#details-justifications-and-ramifications","tenets.html#batteries-included-but-replaceable","tenets.html#make-common-problems-easy-to-solve","tenets.html#design-for-the-future","faq.html#design-faq","faq.html#what-is-smithy","faq.html#why-is-there-one-crate-per-service","faq.html#why-dont-the-sdk-service-crates-implement-serdeserialize-or-serdedeserialize-for-any-types","faq.html#i-want-to-add-new-request-building-behavior-should-i-add-that-functionality-to-the-make_operation-codegen-or-write-a-request-altering-middleware","transport/overview.html#transport","transport/overview.html#where-we-are-today","transport/overview.html#where-we-want-to-go","transport/operation.html#http-based-operations","transport/operation.html#operation-phases","transport/operation.html#input-construction","transport/operation.html#operation-construction","transport/operation.html#operation-dispatch-and-middleware","transport/operation.html#operation-parsing-and-response-loading","transport/middleware.html#http-middleware","transport/connector.html","smithy/overview.html#smithy","smithy/overview.html#internals","smithy/simple_shapes.html#simple-shapes","smithy/simple_shapes.html#big-numbers","smithy/simple_shapes.html#timestamps","smithy/simple_shapes.html#strings","smithy/simple_shapes.html#document-types","smithy/recursive_shapes.html#recursive-shapes","smithy/aggregate_shapes.html#aggregate-shapes","smithy/aggregate_shapes.html#list","smithy/aggregate_shapes.html#set","smithy/aggregate_shapes.html#map","smithy/aggregate_shapes.html#structure","smithy/aggregate_shapes.html#example-structure-output","smithy/aggregate_shapes.html#union","smithy/aggregate_shapes.html#generated-union-example","smithy/endpoint.html#endpoint-resolution","smithy/endpoint.html#requirements","smithy/endpoint.html#design","smithy/backwards-compat.html#backwards-compatibility","smithy/backwards-compat.html#new-operation-added","smithy/backwards-compat.html#new-member-added-to-structure","smithy/backwards-compat.html#summary","smithy/backwards-compat.html#validation--required-members","smithy/backwards-compat.html#new-union-variant-added","client/overview.html#smithy-client","client/orchestrator.html#what-is-the-orchestrator","client/orchestrator.html#how-is-an-orchestrator-configured","client/orchestrator.html#what-does-the-orchestrator-do","client/orchestrator.html#how-is-the-orchestrator-implemented-in-rust","client/orchestrator.html#avoiding-generics-at-all-costs","client/orchestrator.html#the-actual-code","client/orchestrator.html#frequently-asked-questions","client/orchestrator.html#why-cant-users-create-and-use-their-own-runtime-plugins","client/orchestrator.html#why-does-the-orchestrator-exist","client/orchestrator.html#why-does-this-document-exist-when-theres-already-an-orchestrator-rfc","client/identity_and_auth.html#identity-and-auth-in-clients","client/identity_and_auth.html#terminology","client/identity_and_auth.html#overview-of-smithy-client-auth","client/identity_and_auth.html#the-configuration-stage","client/identity_and_auth.html#the-execution-stage","client/identity_and_auth.html#how-this-looks-in-rust","client/identity_and_auth.html#challenges-with-this-identity-design","server/overview.html#smithy-server","server/middleware.html#middleware","server/middleware.html#introduction-to-tower","server/middleware.html#applying-middleware","server/middleware.html#a-outer-middleware","server/middleware.html#b-route-middleware","server/middleware.html#c-operation-specific-http-middleware","server/middleware.html#d-operation-specific-model-middleware","server/middleware.html#plugin-system","server/instrumentation.html#instrumentation","server/instrumentation.html#spans-over-the-requestresponse-lifecycle","server/instrumentation.html#example","server/instrumentation.html#interactions-with-sensitivity","server/from_parts.html#accessing-un-modelled-data","server/anatomy.html#the-anatomy-of-a-service","server/anatomy.html#operations","server/anatomy.html#serialization-and-deserialization","server/anatomy.html#upgrading-a-model-service","server/anatomy.html#routers","server/anatomy.html#plugins","server/anatomy.html#builders","server/anatomy.html#accessing-unmodelled-data","server/code_generation.html#generating-common-service-code","server/code_generation.html#folder-structure","server/code_generation.html#generating-code","rfcs/overview.html#rfcs","rfcs/overview.html#previously-submitted-rfcs","rfcs/rfc0001_shared_config.html#aws-configuration-rfc","rfcs/rfc0001_shared_config.html#usage-guide","rfcs/rfc0001_shared_config.html#getting-started","rfcs/rfc0001_shared_config.html#sharing-configuration-between-multiple-services","rfcs/rfc0001_shared_config.html#specifying-a-custom-credential-provider","rfcs/rfc0001_shared_config.html#proposed-design","rfcs/rfc0001_shared_config.html#shared-config-implementation","rfcs/rfc0001_shared_config.html#sleep--connectors","rfcs/rfc0001_shared_config.html#the-build-method-on-config","rfcs/rfc0001_shared_config.html#stability-and-versioning","rfcs/rfc0001_shared_config.html#changes-checklist","rfcs/rfc0001_shared_config.html#open-issues","rfcs/rfc0002_http_versions.html#rfc-supporting-multiple-http-versions-for-sdks-that-use-event-stream","rfcs/rfc0002_http_versions.html#terminology","rfcs/rfc0002_http_versions.html#how-clients-work-today","rfcs/rfc0002_http_versions.html#solving-the-connector-creation-problem","rfcs/rfc0002_http_versions.html#solving-the-connector-selection-problem","rfcs/rfc0002_http_versions.html#changes-checklist","rfcs/rfc0003_presigning_api.html#rfc-api-for-presigned-urls","rfcs/rfc0003_presigning_api.html#terminology","rfcs/rfc0003_presigning_api.html#presigned-url-config","rfcs/rfc0003_presigning_api.html#fluent-presigned-url-api","rfcs/rfc0003_presigning_api.html#input-presigned-url-api","rfcs/rfc0003_presigning_api.html#behind-the-scenes","rfcs/rfc0003_presigning_api.html#modeling-presigning","rfcs/rfc0003_presigning_api.html#avoiding-name-collision","rfcs/rfc0003_presigning_api.html#changes-checklist","rfcs/rfc0004_retry_behavior.html#rfc-retry-behavior","rfcs/rfc0004_retry_behavior.html#terminology","rfcs/rfc0004_retry_behavior.html#configuring-the-maximum-number-of-retries","rfcs/rfc0004_retry_behavior.html#setting-an-environment-variable","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-an-aws-shared-config","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-service-specific-config","rfcs/rfc0004_retry_behavior.html#disabling-retries","rfcs/rfc0004_retry_behavior.html#behind-the-scenes","rfcs/rfc0004_retry_behavior.html#changes-checklist","rfcs/rfc0005_service_generation.html#rfc-smithy-rust-service-framework","rfcs/rfc0005_service_generation.html#requirements","rfcs/rfc0005_service_generation.html#smithy-model-driven-code-generation","rfcs/rfc0005_service_generation.html#performance","rfcs/rfc0005_service_generation.html#extensibility","rfcs/rfc0005_service_generation.html#observability","rfcs/rfc0005_service_generation.html#client-generation","rfcs/rfc0005_service_generation.html#benchmarking","rfcs/rfc0005_service_generation.html#model-validation","rfcs/rfc0006_service_specific_middleware.html#rfc-service-specific-middleware","rfcs/rfc0006_service_specific_middleware.html#terminology","rfcs/rfc0006_service_specific_middleware.html#detailed-design","rfcs/rfc0006_service_specific_middleware.html#changes-checklist","rfcs/rfc0007_split_release_process.html#rfc-split-release-process","rfcs/rfc0007_split_release_process.html#terminology","rfcs/rfc0007_split_release_process.html#requirements","rfcs/rfc0007_split_release_process.html#background-how-publishing-worked-before","rfcs/rfc0007_split_release_process.html#proposed-solution","rfcs/rfc0007_split_release_process.html#avoiding-mistakes-by-disallowing-creation-of-publish-ready-bundles-outside-of-ci","rfcs/rfc0007_split_release_process.html#alternatives-considered","rfcs/rfc0007_split_release_process.html#publish-smithy-runtime-crates-from-smithy-rs-build-artifacts","rfcs/rfc0007_split_release_process.html#keep-smithy-runtime-crates-in-smithy-rs","rfcs/rfc0007_split_release_process.html#changes-checklist","rfcs/rfc0008_paginators.html#summary","rfcs/rfc0008_paginators.html#details","rfcs/rfc0008_paginators.html#updates-to-ergonomic-clients","rfcs/rfc0008_paginators.html#discussion-areas","rfcs/rfc0008_paginators.html#on-sendawait","rfcs/rfc0008_paginators.html#on-tokio_streamstream","rfcs/rfc0008_paginators.html#on-generics","rfcs/rfc0008_paginators.html#changes-checklist","rfcs/rfc0009_example_consolidation.html#rfc-examples-consolidation","rfcs/rfc0009_example_consolidation.html#requirements","rfcs/rfc0009_example_consolidation.html#example-ci-in-smithy-rs","rfcs/rfc0009_example_consolidation.html#auto-sync-to-aws-sdk-rust-from-smithy-rs-changes","rfcs/rfc0009_example_consolidation.html#process-risks","rfcs/rfc0009_example_consolidation.html#alternatives","rfcs/rfc0009_example_consolidation.html#aws-sdk-rust-as-the-source-of-truth","rfcs/rfc0009_example_consolidation.html#changes-checklist","rfcs/rfc0010_waiters.html#rfc-waiters","rfcs/rfc0010_waiters.html#terminology","rfcs/rfc0010_waiters.html#requirements","rfcs/rfc0010_waiters.html#waiter-api","rfcs/rfc0010_waiters.html#waiter-implementation","rfcs/rfc0010_waiters.html#changes-checklist","rfcs/rfc0011_crates_io_alpha_publishing.html#rfc-publishing-the-alpha-sdk-to-cratesio","rfcs/rfc0011_crates_io_alpha_publishing.html#terminology","rfcs/rfc0011_crates_io_alpha_publishing.html#requirements","rfcs/rfc0011_crates_io_alpha_publishing.html#versioning","rfcs/rfc0011_crates_io_alpha_publishing.html#yanking","rfcs/rfc0011_crates_io_alpha_publishing.html#concrete-scenarios","rfcs/rfc0011_crates_io_alpha_publishing.html#proposal","rfcs/rfc0011_crates_io_alpha_publishing.html#short-term-changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#rfc-independent-crate-versioning","rfcs/rfc0012_independent_crate_versioning.html#terminology","rfcs/rfc0012_independent_crate_versioning.html#requirements","rfcs/rfc0012_independent_crate_versioning.html#versioning","rfcs/rfc0012_independent_crate_versioning.html#release-identification","rfcs/rfc0012_independent_crate_versioning.html#yanking","rfcs/rfc0012_independent_crate_versioning.html#phase-1-dev-preview","rfcs/rfc0012_independent_crate_versioning.html#version-tracking","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-code-generated-sdk-service-crates","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-runtime-crates","rfcs/rfc0012_independent_crate_versioning.html#yanking-1","rfcs/rfc0012_independent_crate_versioning.html#changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#phase-2-stability-and-1x","rfcs/rfc0013_body_callback_apis.html#rfc-callback-apis-for-bytestream-and-sdkbody","rfcs/rfc0013_body_callback_apis.html#the-implementation","rfcs/rfc0013_body_callback_apis.html#implementing-checksums","rfcs/rfc0014_timeout_config.html#rfc-fine-grained-timeout-configuration","rfcs/rfc0014_timeout_config.html#terminology","rfcs/rfc0014_timeout_config.html#general-terms","rfcs/rfc0014_timeout_config.html#http-stack-terms","rfcs/rfc0014_timeout_config.html#timeout-terms","rfcs/rfc0014_timeout_config.html#configuring-timeouts","rfcs/rfc0014_timeout_config.html#configuration-options","rfcs/rfc0014_timeout_config.html#sdk-specific-defaults-set-by-aws-service-teams","rfcs/rfc0014_timeout_config.html#prior-art","rfcs/rfc0014_timeout_config.html#behind-the-scenes","rfcs/rfc0014_timeout_config.html#middlewares-for-aws-client-requests","rfcs/rfc0014_timeout_config.html#middlewares-for-smithy-client-requests","rfcs/rfc0014_timeout_config.html#changes-checklist","rfcs/rfc0014_timeout_config.html#implementing-http-request-timeouts","rfcs/rfc0015_using_features_responsibly.html#rfc-how-cargo-features-should-be-used-in-the-sdk-and-runtime-crates","rfcs/rfc0015_using_features_responsibly.html#some-background-on-features","rfcs/rfc0015_using_features_responsibly.html#features-should-be-additive","rfcs/rfc0015_using_features_responsibly.html#what-does-this-mean-for-the-sdk","rfcs/rfc0015_using_features_responsibly.html#avoid-writing-code-that-relies-on-only-activating-one-feature-from-a-set-of-mutually-exclusive-features","rfcs/rfc0015_using_features_responsibly.html#we-should-avoid-using-cfgnotfeature--some-feature","rfcs/rfc0015_using_features_responsibly.html#dont-default-to-defining-default-features","rfcs/rfc0015_using_features_responsibly.html#further-reading","rfcs/rfc0016_flexible_checksum_support.html#rfc-supporting-flexible-checksums","rfcs/rfc0016_flexible_checksum_support.html#what-is-the-flexible-checksums-feature","rfcs/rfc0016_flexible_checksum_support.html#implementing-checksums","rfcs/rfc0016_flexible_checksum_support.html#refactoring-aws-smithy-checksums","rfcs/rfc0016_flexible_checksum_support.html#checksumbody","rfcs/rfc0016_flexible_checksum_support.html#checksumvalidatedbody","rfcs/rfc0016_flexible_checksum_support.html#awschunkedbody-and-awschunkedbodyoptions","rfcs/rfc0016_flexible_checksum_support.html#sigv4-update","rfcs/rfc0016_flexible_checksum_support.html#inlineables","rfcs/rfc0016_flexible_checksum_support.html#codegen","rfcs/rfc0016_flexible_checksum_support.html#implementation-checklist","rfcs/rfc0017_customizable_client_operations.html#rfc-customizable-client-operations","rfcs/rfc0017_customizable_client_operations.html#terminology","rfcs/rfc0017_customizable_client_operations.html#proposal","rfcs/rfc0017_customizable_client_operations.html#why-not-remove-async-from-customize-to-make-this-more-ergonomic","rfcs/rfc0017_customizable_client_operations.html#why-the-name-customize","rfcs/rfc0017_customizable_client_operations.html#changes-checklist","rfcs/rfc0018_logging_sensitive.html#rfc-logging-in-the-presence-of-sensitive-data","rfcs/rfc0018_logging_sensitive.html#terminology","rfcs/rfc0018_logging_sensitive.html#background","rfcs/rfc0018_logging_sensitive.html#http-binding-traits","rfcs/rfc0018_logging_sensitive.html#scope-and-guidelines","rfcs/rfc0018_logging_sensitive.html#routing","rfcs/rfc0018_logging_sensitive.html#runtime-crates","rfcs/rfc0018_logging_sensitive.html#proposal","rfcs/rfc0018_logging_sensitive.html#debug-logging","rfcs/rfc0018_logging_sensitive.html#code-generated-logging-middleware","rfcs/rfc0018_logging_sensitive.html#http-debugdisplay-wrappers","rfcs/rfc0018_logging_sensitive.html#middleware-position","rfcs/rfc0018_logging_sensitive.html#logging-within-the-router","rfcs/rfc0018_logging_sensitive.html#developer-guideline","rfcs/rfc0018_logging_sensitive.html#alternative-proposals","rfcs/rfc0018_logging_sensitive.html#use-request-extensions","rfcs/rfc0018_logging_sensitive.html#accommodate-the-sensitivity-in-middleware-api","rfcs/rfc0018_logging_sensitive.html#redact-values-using-a-tracing-layer","rfcs/rfc0018_logging_sensitive.html#changes-checklist","rfcs/rfc0019_event_streams_errors.html#rfc-errors-for-event-streams","rfcs/rfc0019_event_streams_errors.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0019_event_streams_errors.html#how-to-actually-implement-this-rfc","rfcs/rfc0019_event_streams_errors.html#changes-checklist","rfcs/rfc0020_service_builder.html#rfc-service-builder-improvements","rfcs/rfc0020_service_builder.html#terminology","rfcs/rfc0020_service_builder.html#background","rfcs/rfc0020_service_builder.html#handlers","rfcs/rfc0020_service_builder.html#builder","rfcs/rfc0020_service_builder.html#router","rfcs/rfc0020_service_builder.html#comparison-to-axum","rfcs/rfc0020_service_builder.html#proposal","rfcs/rfc0020_service_builder.html#remove-two-step-build-procedure","rfcs/rfc0020_service_builder.html#statically-check-for-missing-handlers","rfcs/rfc0020_service_builder.html#switch-from-for-router-to-an-operationregistrybuild-method","rfcs/rfc0020_service_builder.html#operations-as-middleware-constructors","rfcs/rfc0020_service_builder.html#service-parameterized-routers","rfcs/rfc0020_service_builder.html#protocol-specific-routers","rfcs/rfc0020_service_builder.html#protocol-specific-errors","rfcs/rfc0020_service_builder.html#type-erasure-with-the-name-of-the-smithy-service","rfcs/rfc0020_service_builder.html#combined-proposal","rfcs/rfc0020_service_builder.html#changes-checklist","rfcs/rfc0021_dependency_versions.html#rfc-dependency-versions","rfcs/rfc0021_dependency_versions.html#categorization-of-crates","rfcs/rfc0021_dependency_versions.html#support-crates-for-applications","rfcs/rfc0021_dependency_versions.html#dependency-version-rules","rfcs/rfc0021_dependency_versions.html#what-is-a-minimum-secure-version-when-there-are-multiple-major-versions","rfcs/rfc0021_dependency_versions.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#rfc-error-context-and-compatibility","rfcs/rfc0022_error_context_and_compatibility.html#past-approaches-in-smithy-rs","rfcs/rfc0022_error_context_and_compatibility.html#case-study-invalidfullurierror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-profileparseerror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-code-generated-client-errors","rfcs/rfc0022_error_context_and_compatibility.html#approaches-from-other-projects","rfcs/rfc0022_error_context_and_compatibility.html#stdioerror","rfcs/rfc0022_error_context_and_compatibility.html#hyper-10","rfcs/rfc0022_error_context_and_compatibility.html#opaque-error-sources","rfcs/rfc0022_error_context_and_compatibility.html#error-proposal","rfcs/rfc0022_error_context_and_compatibility.html#actionable-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#informative-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#displaying-full-error-context","rfcs/rfc0022_error_context_and_compatibility.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#error-code-review-checklist","rfcs/rfc0023_refine_builder.html#rfc-evolving-the-new-service-builder-api","rfcs/rfc0023_refine_builder.html#overview","rfcs/rfc0023_refine_builder.html#handling-missing-operations","rfcs/rfc0023_refine_builder.html#compiler-errors-cannot-be-tuned","rfcs/rfc0023_refine_builder.html#the-cost-of-a-runtime-error","rfcs/rfc0023_refine_builder.html#providing-clear-feedback","rfcs/rfc0023_refine_builder.html#simplifying-pokemonservicebuilders-signature","rfcs/rfc0023_refine_builder.html#branching---incompatible-types","rfcs/rfc0023_refine_builder.html#refactoring-into-smaller-functions---prepare-for-some-type-juggling","rfcs/rfc0023_refine_builder.html#cut-them-down-going-from-2n1-to-2-generic-parameters","rfcs/rfc0023_refine_builder.html#alternatives-allow-new-plugins-to-be-registered-after-builder-creation","rfcs/rfc0023_refine_builder.html#alternatives-lazy-and-eager-on-demand-type-erasure","rfcs/rfc0023_refine_builder.html#builder-extensions-what-now","rfcs/rfc0023_refine_builder.html#playing-around-with-the-design","rfcs/rfc0023_refine_builder.html#changes-checklist","rfcs/rfc0024_request_id.html#rfc-requestid-in-business-logic-handlers","rfcs/rfc0024_request_id.html#terminology","rfcs/rfc0024_request_id.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0024_request_id.html#changes-checklist","rfcs/rfc0024_request_id.html#changes-since-the-rfc-has-been-approved","rfcs/rfc0025_constraint_traits.html#rfc-constraint-traits","rfcs/rfc0025_constraint_traits.html#implementation","rfcs/rfc0025_constraint_traits.html#example-implementation-for-the-length-trait","rfcs/rfc0025_constraint_traits.html#request-deserialization","rfcs/rfc0025_constraint_traits.html#length-trait","rfcs/rfc0025_constraint_traits.html#pattern-trait","rfcs/rfc0025_constraint_traits.html#uniqueitems-trait","rfcs/rfc0025_constraint_traits.html#trait-precedence-and-naming-of-the-tuple-struct","rfcs/rfc0025_constraint_traits.html#unresolved-questions","rfcs/rfc0025_constraint_traits.html#alternative-design","rfcs/rfc0026_client_crate_organization.html#rfc-client-crate-organization","rfcs/rfc0026_client_crate_organization.html#previous-organization","rfcs/rfc0026_client_crate_organization.html#proposed-changes","rfcs/rfc0026_client_crate_organization.html#establish-a-pattern-for-builder-organization","rfcs/rfc0026_client_crate_organization.html#organize-code-generated-types-by-operation","rfcs/rfc0026_client_crate_organization.html#reorganize-the-crate-root","rfcs/rfc0026_client_crate_organization.html#conditionally-remove-builder-from-crateclient","rfcs/rfc0026_client_crate_organization.html#create-a-primitives-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-types-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-original-crateerror-module","rfcs/rfc0026_client_crate_organization.html#flatten-the-presigning-module","rfcs/rfc0026_client_crate_organization.html#remove-the-empty-modules","rfcs/rfc0026_client_crate_organization.html#new-organization","rfcs/rfc0026_client_crate_organization.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#rfc-endpoints-20","rfcs/rfc0027_endpoints_20.html#terminology","rfcs/rfc0027_endpoints_20.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0027_endpoints_20.html#overview","rfcs/rfc0027_endpoints_20.html#overriding-endpoints","rfcs/rfc0027_endpoints_20.html#new-endpoint-traits","rfcs/rfc0027_endpoints_20.html#endpoint-params","rfcs/rfc0027_endpoints_20.html#the-default-endpoint-resolver","rfcs/rfc0027_endpoints_20.html#how-to-actually-implement-this-rfc","rfcs/rfc0027_endpoints_20.html#code-generating-client-context-params","rfcs/rfc0027_endpoints_20.html#creating-params","rfcs/rfc0027_endpoints_20.html#converting-a-smithy-endpoint-to-an-aws-endpoint","rfcs/rfc0027_endpoints_20.html#implementing-the-rules-engine","rfcs/rfc0027_endpoints_20.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#alternative-designs","rfcs/rfc0027_endpoints_20.html#context-aware-endpoint-traits","rfcs/rfc0028_sdk_credential_cache_type_safety.html#rfc-sdk-credential-cache-type-safety","rfcs/rfc0028_sdk_credential_cache_type_safety.html#credentialscache-and-configloadercredentials_cache","rfcs/rfc0028_sdk_credential_cache_type_safety.html#changes-checklist","rfcs/rfc0028_sdk_credential_cache_type_safety.html#appendix-alternatives-considered","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-a-providecachedcredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-b-cachecredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-c-credentialscache-struct-with-composition","rfcs/rfc0029_new_home_for_cred_types.html#rfc-finding-new-home-for-credential-types","rfcs/rfc0029_new_home_for_cred_types.html#assumptions","rfcs/rfc0029_new_home_for_cred_types.html#problems","rfcs/rfc0029_new_home_for_cred_types.html#proposed-solution","rfcs/rfc0029_new_home_for_cred_types.html#rejected-alternative","rfcs/rfc0029_new_home_for_cred_types.html#changes-checklist","rfcs/rfc0030_serialization_and_deserialization.html#rfc-serialization-and-deserialization","rfcs/rfc0030_serialization_and_deserialization.html#terminology","rfcs/rfc0030_serialization_and_deserialization.html#overview","rfcs/rfc0030_serialization_and_deserialization.html#use-case","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#enabling-feature","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate-for-serialization-and-de-serialization","rfcs/rfc0030_serialization_and_deserialization.html#keeping-both-features-behind-the-same-feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#different-feature-gates-for-different-data-types","rfcs/rfc0030_serialization_and_deserialization.html#implementation","rfcs/rfc0030_serialization_and_deserialization.html#smithy-types","rfcs/rfc0030_serialization_and_deserialization.html#blob","rfcs/rfc0030_serialization_and_deserialization.html#datetime","rfcs/rfc0030_serialization_and_deserialization.html#document","rfcs/rfc0030_serialization_and_deserialization.html#number","rfcs/rfc0030_serialization_and_deserialization.html#builder-types-and-non-builder-types","rfcs/rfc0030_serialization_and_deserialization.html#enum-representation","rfcs/rfc0030_serialization_and_deserialization.html#untagged","rfcs/rfc0030_serialization_and_deserialization.html#internal","rfcs/rfc0030_serialization_and_deserialization.html#external-and-adjacent","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-skip-serializationdeserialization","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-exclude-from-serde-code-generation","rfcs/rfc0030_serialization_and_deserialization.html#serde-traits-implemented-on-builder-of-output-types","rfcs/rfc0030_serialization_and_deserialization.html#fn-set_fields-to-allow-users-to-use-externally-created-input","rfcs/rfc0030_serialization_and_deserialization.html#other-concerns","rfcs/rfc0030_serialization_and_deserialization.html#model-evolution","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-fields","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-data-type","rfcs/rfc0030_serialization_and_deserialization.html#discussions","rfcs/rfc0030_serialization_and_deserialization.html#sensitive-information","rfcs/rfc0030_serialization_and_deserialization.html#compile-time","rfcs/rfc0030_serialization_and_deserialization.html#misleading-results","rfcs/rfc0030_serialization_and_deserialization.html#appendix","rfcs/rfc0030_serialization_and_deserialization.html#use-case-examples","rfcs/rfc0030_serialization_and_deserialization.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#rfc-providing-fallback-credentials-on-external-timeout","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#terminology","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#assumption","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#problem","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#proposal","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#how-to-actually-implement-this-rfc","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#alternative","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#possible-enhancement","rfcs/rfc0032_better_constraint_violations.html#rfc-better-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#terminology","rfcs/rfc0032_better_constraint_violations.html#impossible-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background","rfcs/rfc0032_better_constraint_violations.html#problem","rfcs/rfc0032_better_constraint_violations.html#solution-proposal","rfcs/rfc0032_better_constraint_violations.html#collecting-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background-1","rfcs/rfc0032_better_constraint_violations.html#problem-1","rfcs/rfc0032_better_constraint_violations.html#solution-proposal-1","rfcs/rfc0032_better_constraint_violations.html#tightness-of-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#problem-2","rfcs/rfc0032_better_constraint_violations.html#final-solution-proposal","rfcs/rfc0032_better_constraint_violations.html#checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#rfc-improving-access-to-request-ids-in-sdk-clients","rfcs/rfc0033_improve_sdk_request_id_access.html#terminology","rfcs/rfc0033_improve_sdk_request_id_access.html#sdksmithy-purity","rfcs/rfc0033_improve_sdk_request_id_access.html#proposed-changes","rfcs/rfc0033_improve_sdk_request_id_access.html#make-request-id-retrieval-on-errors-consistent","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-outputs","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-operation-and-operationresponse","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-result","rfcs/rfc0033_improve_sdk_request_id_access.html#example-interactions","rfcs/rfc0033_improve_sdk_request_id_access.html#generic-handling-case","rfcs/rfc0033_improve_sdk_request_id_access.html#success-case","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-sdkerror","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-operation-error","rfcs/rfc0033_improve_sdk_request_id_access.html#changes-checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-a-alternate-solution-for-access-on-successful-responses","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-b-adding-requestid-as-a-string-to-outputs-via-model-transform","rfcs/rfc0034_smithy_orchestrator.html#smithy-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#tldr","rfcs/rfc0034_smithy_orchestrator.html#terminology","rfcs/rfc0034_smithy_orchestrator.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0034_smithy_orchestrator.html#service-clients-and-operations-are-configured-with-runtime-plugins","rfcs/rfc0034_smithy_orchestrator.html#requests-and-responses-are-modified-by-interceptors","rfcs/rfc0034_smithy_orchestrator.html#interceptor-context","rfcs/rfc0034_smithy_orchestrator.html#how-to-implement-this-rfc","rfcs/rfc0034_smithy_orchestrator.html#integrating-with-the-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#layered-configuration-stored-in-type-maps","rfcs/rfc0034_smithy_orchestrator.html#the-aws-smithy-orchestrator-crate","rfcs/rfc0034_smithy_orchestrator.html#faq","rfcs/rfc0034_smithy_orchestrator.html#changes-checklist","rfcs/rfc0035_collection_defaults.html#rfc-collection-defaults","rfcs/rfc0035_collection_defaults.html#terminology","rfcs/rfc0035_collection_defaults.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0035_collection_defaults.html#how-to-actually-implement-this-rfc","rfcs/rfc0035_collection_defaults.html#could-this-be-implemented-for-hashmap","rfcs/rfc0035_collection_defaults.html#isnt-this-handled-by-the-default-trait","rfcs/rfc0035_collection_defaults.html#changes-checklist","rfcs/rfc0036_http_dep_elimination.html#rfc-eliminating-public-http-dependencies","rfcs/rfc0036_http_dep_elimination.html#terminology","rfcs/rfc0036_http_dep_elimination.html#why-is-this-important","rfcs/rfc0036_http_dep_elimination.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0036_http_dep_elimination.html#how-to-actually-implement-this-rfc","rfcs/rfc0036_http_dep_elimination.html#enabling-api-evolution","rfcs/rfc0036_http_dep_elimination.html#http-request-wrapper","rfcs/rfc0036_http_dep_elimination.html#removing-the-sigv4-http-dependency","rfcs/rfc0036_http_dep_elimination.html#removing-the-http-dependency-from-generated-clients","rfcs/rfc0036_http_dep_elimination.html#changes-checklist","rfcs/rfc0037_http_wrapper.html#rfc-the-http-wrapper-type","rfcs/rfc0037_http_wrapper.html#terminology","rfcs/rfc0037_http_wrapper.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0037_http_wrapper.html#how-to-actually-implement-this-rfc","rfcs/rfc0037_http_wrapper.html#future-work","rfcs/rfc0037_http_wrapper.html#changes-checklist","rfcs/rfc0038_retry_classifier_customization.html#rfc-user-configurable-retry-classification","rfcs/rfc0038_retry_classifier_customization.html#terminology","rfcs/rfc0038_retry_classifier_customization.html#how-the-orchestrator-should-model-retries","rfcs/rfc0038_retry_classifier_customization.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0038_retry_classifier_customization.html#defining-a-custom-classifier","rfcs/rfc0038_retry_classifier_customization.html#setting-classifiers","rfcs/rfc0038_retry_classifier_customization.html#default-classifiers","rfcs/rfc0038_retry_classifier_customization.html#how-to-actually-implement-this-rfc","rfcs/rfc0038_retry_classifier_customization.html#the-retryclassifier-trait","rfcs/rfc0038_retry_classifier_customization.html#resolving-the-correct-order-of-multiple-retry-classifiers","rfcs/rfc0038_retry_classifier_customization.html#questions-and-answers","rfcs/rfc0038_retry_classifier_customization.html#changes-checklist","contributing/overview.html#contributing","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#writing-and-debugging-a-low-level-feature-that-relies-on-http","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#background","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-streaming-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-issues-i-encountered-while-implementing-checksums-for-streaming-request-bodies","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#s3-requires-a-content-length-unless-you-also-set-transfer-encoding-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#adding-trailers-to-a-request-changes-the-size-of-that-request","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#hyper-supports-http-request-trailers-but-isnt-compatible-with-content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-stream-is-closing-early-and-i-dont-know-why","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#what-helped-me-to-understand-the-problems-and-their-solutions","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#"],"index":{"documentStore":{"docInfo":{"0":{"body":42,"breadcrumbs":4,"title":2},"1":{"body":18,"breadcrumbs":3,"title":1},"10":{"body":0,"breadcrumbs":4,"title":2},"100":{"body":74,"breadcrumbs":12,"title":4},"101":{"body":126,"breadcrumbs":10,"title":2},"102":{"body":53,"breadcrumbs":11,"title":3},"103":{"body":40,"breadcrumbs":10,"title":2},"104":{"body":27,"breadcrumbs":11,"title":3},"105":{"body":107,"breadcrumbs":10,"title":2},"106":{"body":67,"breadcrumbs":10,"title":2},"107":{"body":10,"breadcrumbs":10,"title":2},"108":{"body":82,"breadcrumbs":20,"title":9},"109":{"body":81,"breadcrumbs":12,"title":1},"11":{"body":24,"breadcrumbs":3,"title":1},"110":{"body":165,"breadcrumbs":14,"title":3},"111":{"body":134,"breadcrumbs":15,"title":4},"112":{"body":315,"breadcrumbs":15,"title":4},"113":{"body":79,"breadcrumbs":13,"title":2},"114":{"body":40,"breadcrumbs":11,"title":4},"115":{"body":49,"breadcrumbs":8,"title":1},"116":{"body":159,"breadcrumbs":10,"title":3},"117":{"body":151,"breadcrumbs":11,"title":4},"118":{"body":53,"breadcrumbs":11,"title":4},"119":{"body":240,"breadcrumbs":9,"title":2},"12":{"body":80,"breadcrumbs":6,"title":4},"120":{"body":36,"breadcrumbs":9,"title":2},"121":{"body":22,"breadcrumbs":10,"title":3},"122":{"body":59,"breadcrumbs":9,"title":2},"123":{"body":45,"breadcrumbs":8,"title":3},"124":{"body":154,"breadcrumbs":6,"title":1},"125":{"body":57,"breadcrumbs":9,"title":4},"126":{"body":42,"breadcrumbs":8,"title":3},"127":{"body":37,"breadcrumbs":10,"title":5},"128":{"body":40,"breadcrumbs":10,"title":5},"129":{"body":70,"breadcrumbs":7,"title":2},"13":{"body":96,"breadcrumbs":10,"title":8},"130":{"body":182,"breadcrumbs":7,"title":2},"131":{"body":157,"breadcrumbs":7,"title":2},"132":{"body":33,"breadcrumbs":12,"title":5},"133":{"body":0,"breadcrumbs":8,"title":1},"134":{"body":15,"breadcrumbs":12,"title":5},"135":{"body":109,"breadcrumbs":8,"title":1},"136":{"body":24,"breadcrumbs":8,"title":1},"137":{"body":34,"breadcrumbs":8,"title":1},"138":{"body":6,"breadcrumbs":9,"title":2},"139":{"body":13,"breadcrumbs":8,"title":1},"14":{"body":97,"breadcrumbs":16,"title":14},"140":{"body":9,"breadcrumbs":9,"title":2},"141":{"body":91,"breadcrumbs":10,"title":4},"142":{"body":112,"breadcrumbs":7,"title":1},"143":{"body":64,"breadcrumbs":8,"title":2},"144":{"body":49,"breadcrumbs":8,"title":2},"145":{"body":68,"breadcrumbs":10,"title":4},"146":{"body":80,"breadcrumbs":7,"title":1},"147":{"body":79,"breadcrumbs":7,"title":1},"148":{"body":69,"breadcrumbs":10,"title":4},"149":{"body":142,"breadcrumbs":8,"title":2},"15":{"body":13,"breadcrumbs":2,"title":1},"150":{"body":44,"breadcrumbs":15,"title":9},"151":{"body":0,"breadcrumbs":8,"title":2},"152":{"body":137,"breadcrumbs":14,"title":8},"153":{"body":179,"breadcrumbs":12,"title":6},"154":{"body":69,"breadcrumbs":8,"title":2},"155":{"body":131,"breadcrumbs":5,"title":1},"156":{"body":321,"breadcrumbs":5,"title":1},"157":{"body":29,"breadcrumbs":7,"title":3},"158":{"body":0,"breadcrumbs":6,"title":2},"159":{"body":19,"breadcrumbs":5,"title":1},"16":{"body":24,"breadcrumbs":2,"title":1},"160":{"body":18,"breadcrumbs":5,"title":1},"161":{"body":29,"breadcrumbs":5,"title":1},"162":{"body":33,"breadcrumbs":6,"title":2},"163":{"body":72,"breadcrumbs":8,"title":3},"164":{"body":58,"breadcrumbs":6,"title":1},"165":{"body":46,"breadcrumbs":9,"title":4},"166":{"body":85,"breadcrumbs":13,"title":8},"167":{"body":87,"breadcrumbs":7,"title":2},"168":{"body":0,"breadcrumbs":6,"title":1},"169":{"body":144,"breadcrumbs":10,"title":5},"17":{"body":55,"breadcrumbs":3,"title":2},"170":{"body":48,"breadcrumbs":7,"title":2},"171":{"body":118,"breadcrumbs":6,"title":2},"172":{"body":81,"breadcrumbs":5,"title":1},"173":{"body":55,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":169,"breadcrumbs":6,"title":2},"176":{"body":34,"breadcrumbs":6,"title":2},"177":{"body":41,"breadcrumbs":11,"title":5},"178":{"body":42,"breadcrumbs":7,"title":1},"179":{"body":0,"breadcrumbs":7,"title":1},"18":{"body":45,"breadcrumbs":6,"title":3},"180":{"body":117,"breadcrumbs":7,"title":1},"181":{"body":50,"breadcrumbs":7,"title":1},"182":{"body":73,"breadcrumbs":8,"title":2},"183":{"body":229,"breadcrumbs":7,"title":1},"184":{"body":33,"breadcrumbs":10,"title":4},"185":{"body":68,"breadcrumbs":10,"title":4},"186":{"body":42,"breadcrumbs":7,"title":1},"187":{"body":0,"breadcrumbs":7,"title":1},"188":{"body":138,"breadcrumbs":7,"title":1},"189":{"body":27,"breadcrumbs":8,"title":2},"19":{"body":10,"breadcrumbs":5,"title":2},"190":{"body":20,"breadcrumbs":7,"title":1},"191":{"body":32,"breadcrumbs":10,"title":4},"192":{"body":104,"breadcrumbs":8,"title":2},"193":{"body":163,"breadcrumbs":12,"title":6},"194":{"body":268,"breadcrumbs":9,"title":3},"195":{"body":40,"breadcrumbs":7,"title":1},"196":{"body":69,"breadcrumbs":8,"title":2},"197":{"body":34,"breadcrumbs":10,"title":4},"198":{"body":18,"breadcrumbs":11,"title":5},"199":{"body":547,"breadcrumbs":7,"title":1},"2":{"body":88,"breadcrumbs":5,"title":3},"20":{"body":66,"breadcrumbs":5,"title":2},"200":{"body":198,"breadcrumbs":8,"title":2},"201":{"body":38,"breadcrumbs":12,"title":5},"202":{"body":9,"breadcrumbs":8,"title":1},"203":{"body":99,"breadcrumbs":9,"title":2},"204":{"body":220,"breadcrumbs":10,"title":3},"205":{"body":128,"breadcrumbs":9,"title":2},"206":{"body":40,"breadcrumbs":9,"title":2},"207":{"body":56,"breadcrumbs":9,"title":2},"208":{"body":5,"breadcrumbs":14,"title":7},"209":{"body":33,"breadcrumbs":9,"title":2},"21":{"body":53,"breadcrumbs":5,"title":2},"210":{"body":36,"breadcrumbs":9,"title":2},"211":{"body":49,"breadcrumbs":11,"title":4},"212":{"body":321,"breadcrumbs":11,"title":4},"213":{"body":18,"breadcrumbs":9,"title":2},"214":{"body":88,"breadcrumbs":11,"title":4},"215":{"body":2,"breadcrumbs":16,"title":7},"216":{"body":75,"breadcrumbs":11,"title":2},"217":{"body":36,"breadcrumbs":11,"title":2},"218":{"body":66,"breadcrumbs":11,"title":2},"219":{"body":162,"breadcrumbs":20,"title":11},"22":{"body":59,"breadcrumbs":6,"title":3},"220":{"body":76,"breadcrumbs":13,"title":4},"221":{"body":209,"breadcrumbs":14,"title":5},"222":{"body":47,"breadcrumbs":11,"title":2},"223":{"body":21,"breadcrumbs":10,"title":4},"224":{"body":32,"breadcrumbs":9,"title":3},"225":{"body":19,"breadcrumbs":8,"title":2},"226":{"body":1039,"breadcrumbs":10,"title":4},"227":{"body":385,"breadcrumbs":7,"title":1},"228":{"body":320,"breadcrumbs":7,"title":1},"229":{"body":944,"breadcrumbs":8,"title":2},"23":{"body":6,"breadcrumbs":7,"title":4},"230":{"body":167,"breadcrumbs":8,"title":2},"231":{"body":232,"breadcrumbs":7,"title":1},"232":{"body":44,"breadcrumbs":7,"title":1},"233":{"body":24,"breadcrumbs":8,"title":2},"234":{"body":85,"breadcrumbs":10,"title":4},"235":{"body":29,"breadcrumbs":7,"title":1},"236":{"body":202,"breadcrumbs":7,"title":1},"237":{"body":50,"breadcrumbs":12,"title":6},"238":{"body":46,"breadcrumbs":8,"title":2},"239":{"body":35,"breadcrumbs":8,"title":2},"24":{"body":61,"breadcrumbs":5,"title":2},"240":{"body":89,"breadcrumbs":12,"title":5},"241":{"body":71,"breadcrumbs":8,"title":1},"242":{"body":0,"breadcrumbs":8,"title":1},"243":{"body":47,"breadcrumbs":10,"title":3},"244":{"body":91,"breadcrumbs":9,"title":2},"245":{"body":73,"breadcrumbs":8,"title":1},"246":{"body":32,"breadcrumbs":9,"title":2},"247":{"body":54,"breadcrumbs":8,"title":1},"248":{"body":80,"breadcrumbs":9,"title":2},"249":{"body":158,"breadcrumbs":11,"title":4},"25":{"body":43,"breadcrumbs":3,"title":1},"250":{"body":59,"breadcrumbs":10,"title":3},"251":{"body":106,"breadcrumbs":9,"title":2},"252":{"body":54,"breadcrumbs":10,"title":3},"253":{"body":48,"breadcrumbs":9,"title":2},"254":{"body":42,"breadcrumbs":9,"title":2},"255":{"body":128,"breadcrumbs":10,"title":3},"256":{"body":90,"breadcrumbs":11,"title":4},"257":{"body":105,"breadcrumbs":12,"title":5},"258":{"body":33,"breadcrumbs":9,"title":2},"259":{"body":21,"breadcrumbs":10,"title":4},"26":{"body":51,"breadcrumbs":2,"title":1},"260":{"body":65,"breadcrumbs":10,"title":4},"261":{"body":265,"breadcrumbs":9,"title":3},"262":{"body":20,"breadcrumbs":8,"title":2},"263":{"body":51,"breadcrumbs":10,"title":4},"264":{"body":75,"breadcrumbs":7,"title":1},"265":{"body":112,"breadcrumbs":7,"title":1},"266":{"body":246,"breadcrumbs":7,"title":1},"267":{"body":156,"breadcrumbs":7,"title":1},"268":{"body":124,"breadcrumbs":7,"title":1},"269":{"body":380,"breadcrumbs":8,"title":2},"27":{"body":133,"breadcrumbs":2,"title":1},"270":{"body":53,"breadcrumbs":7,"title":1},"271":{"body":23,"breadcrumbs":11,"title":5},"272":{"body":119,"breadcrumbs":10,"title":4},"273":{"body":48,"breadcrumbs":11,"title":5},"274":{"body":717,"breadcrumbs":9,"title":3},"275":{"body":56,"breadcrumbs":9,"title":3},"276":{"body":101,"breadcrumbs":9,"title":3},"277":{"body":90,"breadcrumbs":9,"title":3},"278":{"body":123,"breadcrumbs":11,"title":5},"279":{"body":91,"breadcrumbs":8,"title":2},"28":{"body":38,"breadcrumbs":5,"title":2},"280":{"body":40,"breadcrumbs":8,"title":2},"281":{"body":39,"breadcrumbs":8,"title":3},"282":{"body":57,"breadcrumbs":7,"title":2},"283":{"body":36,"breadcrumbs":8,"title":3},"284":{"body":47,"breadcrumbs":8,"title":3},"285":{"body":39,"breadcrumbs":11,"title":6},"286":{"body":15,"breadcrumbs":7,"title":2},"287":{"body":91,"breadcrumbs":10,"title":4},"288":{"body":18,"breadcrumbs":10,"title":4},"289":{"body":227,"breadcrumbs":9,"title":3},"29":{"body":44,"breadcrumbs":5,"title":2},"290":{"body":110,"breadcrumbs":9,"title":3},"291":{"body":61,"breadcrumbs":12,"title":6},"292":{"body":0,"breadcrumbs":8,"title":2},"293":{"body":65,"breadcrumbs":7,"title":1},"294":{"body":40,"breadcrumbs":8,"title":2},"295":{"body":97,"breadcrumbs":9,"title":3},"296":{"body":55,"breadcrumbs":8,"title":2},"297":{"body":271,"breadcrumbs":9,"title":3},"298":{"body":69,"breadcrumbs":9,"title":3},"299":{"body":69,"breadcrumbs":10,"title":4},"3":{"body":38,"breadcrumbs":3,"title":1},"30":{"body":114,"breadcrumbs":4,"title":1},"300":{"body":22,"breadcrumbs":8,"title":2},"301":{"body":73,"breadcrumbs":10,"title":4},"302":{"body":68,"breadcrumbs":14,"title":6},"303":{"body":91,"breadcrumbs":9,"title":1},"304":{"body":56,"breadcrumbs":11,"title":3},"305":{"body":138,"breadcrumbs":11,"title":3},"306":{"body":141,"breadcrumbs":11,"title":3},"307":{"body":212,"breadcrumbs":11,"title":3},"308":{"body":112,"breadcrumbs":11,"title":3},"309":{"body":306,"breadcrumbs":11,"title":3},"31":{"body":71,"breadcrumbs":4,"title":1},"310":{"body":331,"breadcrumbs":14,"title":6},"311":{"body":189,"breadcrumbs":15,"title":7},"312":{"body":176,"breadcrumbs":15,"title":7},"313":{"body":634,"breadcrumbs":14,"title":6},"314":{"body":87,"breadcrumbs":11,"title":3},"315":{"body":10,"breadcrumbs":11,"title":3},"316":{"body":48,"breadcrumbs":10,"title":2},"317":{"body":12,"breadcrumbs":9,"title":5},"318":{"body":146,"breadcrumbs":5,"title":1},"319":{"body":235,"breadcrumbs":8,"title":4},"32":{"body":60,"breadcrumbs":5,"title":2},"320":{"body":30,"breadcrumbs":6,"title":2},"321":{"body":4,"breadcrumbs":7,"title":3},"322":{"body":241,"breadcrumbs":8,"title":3},"323":{"body":23,"breadcrumbs":6,"title":1},"324":{"body":213,"breadcrumbs":9,"title":4},"325":{"body":134,"breadcrumbs":7,"title":2},"326":{"body":25,"breadcrumbs":7,"title":2},"327":{"body":21,"breadcrumbs":7,"title":2},"328":{"body":26,"breadcrumbs":7,"title":2},"329":{"body":62,"breadcrumbs":10,"title":5},"33":{"body":208,"breadcrumbs":5,"title":2},"330":{"body":153,"breadcrumbs":7,"title":2},"331":{"body":143,"breadcrumbs":7,"title":2},"332":{"body":41,"breadcrumbs":10,"title":4},"333":{"body":161,"breadcrumbs":8,"title":2},"334":{"body":13,"breadcrumbs":8,"title":2},"335":{"body":81,"breadcrumbs":10,"title":4},"336":{"body":93,"breadcrumbs":11,"title":5},"337":{"body":102,"breadcrumbs":9,"title":3},"338":{"body":55,"breadcrumbs":10,"title":4},"339":{"body":21,"breadcrumbs":9,"title":3},"34":{"body":19,"breadcrumbs":5,"title":2},"340":{"body":100,"breadcrumbs":9,"title":3},"341":{"body":28,"breadcrumbs":10,"title":4},"342":{"body":34,"breadcrumbs":9,"title":3},"343":{"body":33,"breadcrumbs":9,"title":3},"344":{"body":109,"breadcrumbs":8,"title":2},"345":{"body":112,"breadcrumbs":8,"title":2},"346":{"body":53,"breadcrumbs":8,"title":3},"347":{"body":75,"breadcrumbs":6,"title":1},"348":{"body":0,"breadcrumbs":9,"title":4},"349":{"body":157,"breadcrumbs":6,"title":1},"35":{"body":13,"breadcrumbs":4,"title":1},"350":{"body":329,"breadcrumbs":7,"title":2},"351":{"body":178,"breadcrumbs":8,"title":3},"352":{"body":122,"breadcrumbs":7,"title":2},"353":{"body":53,"breadcrumbs":8,"title":3},"354":{"body":88,"breadcrumbs":8,"title":3},"355":{"body":134,"breadcrumbs":10,"title":5},"356":{"body":179,"breadcrumbs":7,"title":2},"357":{"body":47,"breadcrumbs":10,"title":5},"358":{"body":8,"breadcrumbs":8,"title":3},"359":{"body":94,"breadcrumbs":7,"title":2},"36":{"body":21,"breadcrumbs":4,"title":1},"360":{"body":0,"breadcrumbs":7,"title":2},"361":{"body":68,"breadcrumbs":9,"title":4},"362":{"body":93,"breadcrumbs":14,"title":6},"363":{"body":213,"breadcrumbs":10,"title":2},"364":{"body":51,"breadcrumbs":10,"title":2},"365":{"body":0,"breadcrumbs":11,"title":3},"366":{"body":154,"breadcrumbs":11,"title":3},"367":{"body":105,"breadcrumbs":12,"title":4},"368":{"body":314,"breadcrumbs":13,"title":5},"369":{"body":34,"breadcrumbs":14,"title":6},"37":{"body":25,"breadcrumbs":4,"title":1},"370":{"body":35,"breadcrumbs":9,"title":1},"371":{"body":168,"breadcrumbs":9,"title":1},"372":{"body":103,"breadcrumbs":10,"title":2},"373":{"body":90,"breadcrumbs":10,"title":2},"374":{"body":40,"breadcrumbs":10,"title":2},"375":{"body":15,"breadcrumbs":8,"title":3},"376":{"body":34,"breadcrumbs":6,"title":1},"377":{"body":83,"breadcrumbs":6,"title":1},"378":{"body":28,"breadcrumbs":7,"title":2},"379":{"body":0,"breadcrumbs":7,"title":2},"38":{"body":92,"breadcrumbs":4,"title":1},"380":{"body":77,"breadcrumbs":7,"title":2},"381":{"body":81,"breadcrumbs":10,"title":5},"382":{"body":26,"breadcrumbs":12,"title":7},"383":{"body":25,"breadcrumbs":11,"title":6},"384":{"body":0,"breadcrumbs":6,"title":1},"385":{"body":16,"breadcrumbs":7,"title":2},"386":{"body":211,"breadcrumbs":6,"title":1},"387":{"body":86,"breadcrumbs":6,"title":1},"388":{"body":21,"breadcrumbs":6,"title":1},"389":{"body":20,"breadcrumbs":6,"title":1},"39":{"body":186,"breadcrumbs":6,"title":3},"390":{"body":31,"breadcrumbs":10,"title":5},"391":{"body":14,"breadcrumbs":7,"title":2},"392":{"body":13,"breadcrumbs":6,"title":1},"393":{"body":14,"breadcrumbs":6,"title":1},"394":{"body":32,"breadcrumbs":7,"title":2},"395":{"body":84,"breadcrumbs":9,"title":4},"396":{"body":103,"breadcrumbs":11,"title":6},"397":{"body":38,"breadcrumbs":11,"title":6},"398":{"body":55,"breadcrumbs":13,"title":8},"399":{"body":0,"breadcrumbs":6,"title":1},"4":{"body":19,"breadcrumbs":4,"title":2},"40":{"body":66,"breadcrumbs":4,"title":1},"400":{"body":11,"breadcrumbs":7,"title":2},"401":{"body":62,"breadcrumbs":8,"title":3},"402":{"body":103,"breadcrumbs":9,"title":4},"403":{"body":0,"breadcrumbs":6,"title":1},"404":{"body":16,"breadcrumbs":7,"title":2},"405":{"body":198,"breadcrumbs":7,"title":2},"406":{"body":30,"breadcrumbs":7,"title":2},"407":{"body":0,"breadcrumbs":6,"title":1},"408":{"body":73,"breadcrumbs":8,"title":3},"409":{"body":45,"breadcrumbs":7,"title":2},"41":{"body":104,"breadcrumbs":6,"title":3},"410":{"body":46,"breadcrumbs":13,"title":6},"411":{"body":60,"breadcrumbs":8,"title":1},"412":{"body":31,"breadcrumbs":8,"title":1},"413":{"body":317,"breadcrumbs":8,"title":1},"414":{"body":215,"breadcrumbs":8,"title":1},"415":{"body":205,"breadcrumbs":10,"title":3},"416":{"body":189,"breadcrumbs":8,"title":1},"417":{"body":18,"breadcrumbs":9,"title":2},"418":{"body":265,"breadcrumbs":9,"title":2},"419":{"body":76,"breadcrumbs":10,"title":4},"42":{"body":0,"breadcrumbs":5,"title":2},"420":{"body":88,"breadcrumbs":7,"title":1},"421":{"body":0,"breadcrumbs":9,"title":3},"422":{"body":94,"breadcrumbs":7,"title":1},"423":{"body":250,"breadcrumbs":7,"title":1},"424":{"body":98,"breadcrumbs":8,"title":2},"425":{"body":0,"breadcrumbs":9,"title":3},"426":{"body":124,"breadcrumbs":7,"title":1},"427":{"body":191,"breadcrumbs":7,"title":1},"428":{"body":352,"breadcrumbs":8,"title":2},"429":{"body":0,"breadcrumbs":9,"title":3},"43":{"body":109,"breadcrumbs":4,"title":1},"430":{"body":194,"breadcrumbs":7,"title":1},"431":{"body":369,"breadcrumbs":9,"title":3},"432":{"body":101,"breadcrumbs":7,"title":1},"433":{"body":139,"breadcrumbs":16,"title":7},"434":{"body":75,"breadcrumbs":10,"title":1},"435":{"body":44,"breadcrumbs":11,"title":2},"436":{"body":24,"breadcrumbs":11,"title":2},"437":{"body":166,"breadcrumbs":15,"title":6},"438":{"body":207,"breadcrumbs":12,"title":3},"439":{"body":24,"breadcrumbs":13,"title":4},"44":{"body":121,"breadcrumbs":4,"title":1},"440":{"body":23,"breadcrumbs":12,"title":3},"441":{"body":0,"breadcrumbs":11,"title":2},"442":{"body":16,"breadcrumbs":12,"title":3},"443":{"body":7,"breadcrumbs":11,"title":2},"444":{"body":11,"breadcrumbs":12,"title":3},"445":{"body":18,"breadcrumbs":13,"title":4},"446":{"body":90,"breadcrumbs":11,"title":2},"447":{"body":28,"breadcrumbs":15,"title":6},"448":{"body":28,"breadcrumbs":18,"title":9},"449":{"body":83,"breadcrumbs":7,"title":2},"45":{"body":66,"breadcrumbs":5,"title":2},"450":{"body":38,"breadcrumbs":6,"title":1},"451":{"body":191,"breadcrumbs":6,"title":1},"452":{"body":55,"breadcrumbs":9,"title":4},"453":{"body":84,"breadcrumbs":11,"title":6},"454":{"body":329,"breadcrumbs":9,"title":4},"455":{"body":62,"breadcrumbs":7,"title":2},"456":{"body":0,"breadcrumbs":7,"title":2},"457":{"body":159,"breadcrumbs":7,"title":2},"458":{"body":325,"breadcrumbs":10,"title":5},"459":{"body":415,"breadcrumbs":9,"title":4},"46":{"body":43,"breadcrumbs":6,"title":3},"460":{"body":122,"breadcrumbs":6,"title":1},"461":{"body":58,"breadcrumbs":7,"title":2},"462":{"body":72,"breadcrumbs":8,"title":3},"463":{"body":21,"breadcrumbs":6,"title":1},"464":{"body":38,"breadcrumbs":9,"title":4},"465":{"body":20,"breadcrumbs":8,"title":3},"466":{"body":26,"breadcrumbs":7,"title":2},"467":{"body":6,"breadcrumbs":9,"title":4},"468":{"body":21,"breadcrumbs":7,"title":2},"469":{"body":49,"breadcrumbs":11,"title":5},"47":{"body":0,"breadcrumbs":7,"title":4},"470":{"body":98,"breadcrumbs":7,"title":1},"471":{"body":192,"breadcrumbs":7,"title":1},"472":{"body":97,"breadcrumbs":10,"title":4},"473":{"body":0,"breadcrumbs":9,"title":3},"474":{"body":15,"breadcrumbs":9,"title":3},"475":{"body":163,"breadcrumbs":9,"title":3},"476":{"body":14,"breadcrumbs":10,"title":4},"477":{"body":26,"breadcrumbs":11,"title":5},"478":{"body":75,"breadcrumbs":8,"title":2},"479":{"body":29,"breadcrumbs":9,"title":4},"48":{"body":116,"breadcrumbs":4,"title":1},"480":{"body":16,"breadcrumbs":6,"title":1},"481":{"body":58,"breadcrumbs":9,"title":4},"482":{"body":1596,"breadcrumbs":8,"title":3},"483":{"body":8,"breadcrumbs":7,"title":2},"484":{"body":29,"breadcrumbs":7,"title":2},"485":{"body":37,"breadcrumbs":12,"title":5},"486":{"body":131,"breadcrumbs":8,"title":1},"487":{"body":138,"breadcrumbs":10,"title":3},"488":{"body":20,"breadcrumbs":11,"title":4},"489":{"body":385,"breadcrumbs":10,"title":3},"49":{"body":43,"breadcrumbs":6,"title":3},"490":{"body":88,"breadcrumbs":9,"title":2},"491":{"body":177,"breadcrumbs":9,"title":2},"492":{"body":40,"breadcrumbs":10,"title":3},"493":{"body":104,"breadcrumbs":9,"title":2},"494":{"body":38,"breadcrumbs":13,"title":6},"495":{"body":41,"breadcrumbs":9,"title":2},"496":{"body":80,"breadcrumbs":9,"title":2},"497":{"body":14,"breadcrumbs":2,"title":1},"498":{"body":0,"breadcrumbs":15,"title":7},"499":{"body":51,"breadcrumbs":9,"title":1},"5":{"body":100,"breadcrumbs":5,"title":4},"50":{"body":75,"breadcrumbs":7,"title":4},"500":{"body":106,"breadcrumbs":12,"title":4},"501":{"body":72,"breadcrumbs":13,"title":5},"502":{"body":0,"breadcrumbs":15,"title":7},"503":{"body":112,"breadcrumbs":12,"title":4},"504":{"body":112,"breadcrumbs":17,"title":9},"505":{"body":55,"breadcrumbs":14,"title":6},"506":{"body":134,"breadcrumbs":19,"title":11},"507":{"body":42,"breadcrumbs":13,"title":5},"508":{"body":340,"breadcrumbs":12,"title":4},"509":{"body":2,"breadcrumbs":8,"title":1},"51":{"body":23,"breadcrumbs":3,"title":2},"52":{"body":111,"breadcrumbs":4,"title":1},"53":{"body":98,"breadcrumbs":5,"title":2},"54":{"body":264,"breadcrumbs":4,"title":1},"55":{"body":0,"breadcrumbs":6,"title":3},"56":{"body":391,"breadcrumbs":6,"title":3},"57":{"body":17,"breadcrumbs":5,"title":2},"58":{"body":0,"breadcrumbs":6,"title":3},"59":{"body":44,"breadcrumbs":9,"title":6},"6":{"body":0,"breadcrumbs":4,"title":3},"60":{"body":12,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":9,"title":6},"62":{"body":58,"breadcrumbs":6,"title":3},"63":{"body":47,"breadcrumbs":4,"title":1},"64":{"body":6,"breadcrumbs":7,"title":4},"65":{"body":136,"breadcrumbs":5,"title":2},"66":{"body":117,"breadcrumbs":5,"title":2},"67":{"body":200,"breadcrumbs":5,"title":2},"68":{"body":134,"breadcrumbs":6,"title":3},"69":{"body":22,"breadcrumbs":3,"title":2},"7":{"body":51,"breadcrumbs":4,"title":3},"70":{"body":67,"breadcrumbs":3,"title":1},"71":{"body":122,"breadcrumbs":4,"title":2},"72":{"body":121,"breadcrumbs":4,"title":2},"73":{"body":92,"breadcrumbs":4,"title":2},"74":{"body":111,"breadcrumbs":5,"title":3},"75":{"body":99,"breadcrumbs":7,"title":5},"76":{"body":99,"breadcrumbs":7,"title":5},"77":{"body":319,"breadcrumbs":4,"title":2},"78":{"body":171,"breadcrumbs":3,"title":1},"79":{"body":106,"breadcrumbs":6,"title":4},"8":{"body":42,"breadcrumbs":6,"title":5},"80":{"body":165,"breadcrumbs":3,"title":1},"81":{"body":155,"breadcrumbs":4,"title":2},"82":{"body":260,"breadcrumbs":9,"title":4},"83":{"body":185,"breadcrumbs":5,"title":2},"84":{"body":462,"breadcrumbs":4,"title":1},"85":{"body":177,"breadcrumbs":5,"title":2},"86":{"body":168,"breadcrumbs":6,"title":3},"87":{"body":199,"breadcrumbs":4,"title":1},"88":{"body":215,"breadcrumbs":4,"title":1},"89":{"body":351,"breadcrumbs":4,"title":1},"9":{"body":56,"breadcrumbs":3,"title":2},"90":{"body":229,"breadcrumbs":6,"title":3},"91":{"body":13,"breadcrumbs":9,"title":4},"92":{"body":90,"breadcrumbs":7,"title":2},"93":{"body":288,"breadcrumbs":7,"title":2},"94":{"body":114,"breadcrumbs":2,"title":1},"95":{"body":193,"breadcrumbs":4,"title":3},"96":{"body":80,"breadcrumbs":11,"title":3},"97":{"body":6,"breadcrumbs":10,"title":2},"98":{"body":149,"breadcrumbs":10,"title":2},"99":{"body":127,"breadcrumbs":13,"title":5}},"docs":{"0":{"body":"The AWS Rust SDK aims to provide an official, high quality & complete interface to AWS services. We plan to eventually use the CRT to provide signing & credential management. The Rust SDK will provide first-class support for the CRT as well as Tokio & Hyper . The Rust SDK empowers advanced customers to bring their own HTTP/IO implementations. Our design choices are guided by our Tenets .","breadcrumbs":"Design Overview » Design Overview","id":"0","title":"Design Overview"},"1":{"body":"The design builds on the learnings, ideas, hard work, and GitHub issues of the 142 Rusoto contributors & thousands of users who built this first and learned the hard way.","breadcrumbs":"Design Overview » Acknowledgments","id":"1","title":"Acknowledgments"},"10":{"body":"","breadcrumbs":"Design FAQ » Design FAQ","id":"10","title":"Design FAQ"},"100":{"body":"If you have your own source of credentials, you may opt-out of the standard credential provider chain. To do this, implement the ProvideCredentials trait. NOTE: aws_types::Credentials already implements ProvideCredentials. If you want to use the SDK with static credentials, you're already done! use aws_types::credentials::{ProvideCredentials, provide_credentials::future, Result}; struct MyCustomProvider; impl MyCustomProvider { pub async fn load_credentials(&self) -> Result { todo!() // A regular async function }\n} impl ProvideCredentials for MyCustomProvider { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.load_credentials()) }\n} Hint: If your credential provider is not asynchronous, you can use ProvideCredentials::ready instead to save an allocation. After writing your custom provider, you'll use it in when constructing the configuration: #[tokio::main]\nasync fn main() { let config = aws_config::from_env().credentials_provider(MyCustomProvider).load().await; let dynamodb = dynamodb::new(&config);\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Specifying a custom credential provider","id":"100","title":"Specifying a custom credential provider"},"101":{"body":"Achieving this design consists of three major changes: Add a Config struct to aws-types. This contains a config, but with no logic to construct it. This represents what configuration SDKS need, but not how to load the information from the environment. Create the aws-config crate. aws-config contains the logic to load configuration from the environment. No generated service clients will depend on aws-config. This is critical to avoid circular dependencies and to allow aws-config to depend on other AWS services. aws-config contains individual providers as well as a pre-assembled default provider chain for region and credentials. It will also contain crate features to automatically bring in HTTPS and async-sleep implementations. Remove all \"business logic\" from aws-types. aws-types should be an interface-only crate that is extremely stable. The ProvideCredentials trait should move into aws-types. The region provider trait which only exists to support region-chaining will move out of aws-types into aws-config. Services will continue to generate their own Config structs. These will continue to be customizable as they are today, however, they won't have any default resolvers built in. Each AWS config will implement From<&aws_types::SharedConfig> . A convenience method to new() a fluent client directly from a shared config will also be generated.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Proposed Design","id":"101","title":"Proposed Design"},"102":{"body":"This RFC proposes adding region and credentials providers support to the shared config. A future RFC will propose integration with HTTP settings, HTTPs connectors, and async sleep. struct Config { // private fields ...\n} impl Config { pub fn region(&self) -> Option<&Region> { self.region.as_ref() } pub fn credentials_provider(&self) -> Option { self.credentials_provider.clone() } pub fn builder() -> Builder { Builder::default() }\n} The Builder for Config allows customers to provide individual overrides and handles the insertion of the default chain for regions and credentials.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Shared Config Implementation","id":"102","title":"Shared Config Implementation"},"103":{"body":"Sleep and Connector are both runtime dependent features. aws-config will define rt-tokio and rustls and native-tls optional features. This centralizes the Tokio/Hyper dependency eventually removing the need for each service to maintain their own Tokio/Hyper features. Although not proposed in this RFC, shared config will eventually gain support for creating an HTTPs client from HTTP settings.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sleep + Connectors","id":"103","title":"Sleep + Connectors"},"104":{"body":"Currently, the .build() method on service config will fill in defaults. As part of this change, .build() called on the service config with missing properties will fill in \"empty\" defaults. If no credentials provider is given, a NoCredentials provider will be set, and Region will remain as None.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » The .build() method on ::Config","id":"104","title":"The .build() method on ::Config"},"105":{"body":"The introduction of Config to aws-types is not without risks. If a customer depends on a version aws-config that uses Config that is incompatible, they will get confusing compiler errors. An example of a problematic set of dependent versions: ┌─────────────────┐ ┌───────────────┐\n│ aws-types = 0.1 │ │aws-types= 0.2 │\n└─────────────────┘ └───────────────┘ ▲ ▲ │ │ │ │ │ │ ┌─────────┴─────────────┐ ┌────────┴───────┐ │aws-sdk-dynamodb = 0.5 │ │aws-config = 0.6│ └───────────┬───────────┘ └───────┬────────┘ │ │ │ │ │ │ │ │ │ │ ├─────────────────────┬────────┘ │ my-lambda-function │ └─────────────────────┘ To mitigate this risk, we will need to make aws-types essentially permanently stable. Changes to aws-types need to be made with extreme care. This will ensure that two versions of aws-types never end up in a customer's dependency tree. We will dramatically reduce the surface area of aws-types to contain only interfaces. Several breaking changes will be made as part of this, notably, the profile file parsing will be moved out of aws-types. Finally, to mitigate this risk even further, services will pub use items from aws-types directly which means that even if a dependency mismatch exists, it is still possible for customers to work around it.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Stability and Versioning","id":"105","title":"Stability and Versioning"},"106":{"body":"ProvideRegion becomes async using a newtype'd future. AsyncProvideCredentials is removed. ProvideCredentials becomes async using a newtype'd future. ProvideCredentials moved into aws-types. Credentials moved into aws-types Create aws-config. Profile-file parsing moved into aws-config, region chain & region environment loaders moved to aws-config. os_shim_internal moved to ??? aws-smithy-types? Add Config to aws-types. Ensure that it's set up to add new members while remaining backwards compatible. Code generate From<&SharedConfig> for ::Config Code generate ::Client::new(&shared_config) Remove ::from_env","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Changes Checklist","id":"106","title":"Changes Checklist"},"107":{"body":"Connector construction needs to be a function of HTTP settings An AsyncSleep should be added to aws-types::Config","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Open Issues","id":"107","title":"Open Issues"},"108":{"body":"Status: Accepted For a summarized list of proposed changes, see the Changes Checklist section. Most AWS SDK operations use HTTP/1.1, but bi-directional streaming operations that use the Event Stream message framing format need to use HTTP/2 (h2). Smithy models can also customize which HTTP versions are used in each individual protocol trait. For example, @restJson1 has attributes http and eventStreamHttp to list out the versions that should be used in a priority order. There are two problems in play that this doc attempts to solve: Connector Creation : Customers need to be able to create connectors with the HTTP settings they desire, and these custom connectors must align with what the Smithy model requires. Connector Selection : The generated code must be able to select the connector that best matches the requirements from the Smithy model.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » RFC: Supporting multiple HTTP versions for SDKs that use Event Stream","id":"108","title":"RFC: Supporting multiple HTTP versions for SDKs that use Event Stream"},"109":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Terminology","id":"109","title":"Terminology"},"11":{"body":"Smithy is the interface design language used by AWS services. smithy-rs allows users to generate a Rust client for any Smithy based service (pending protocol support), including those outside of AWS.","breadcrumbs":"Design FAQ » What is Smithy?","id":"11","title":"What is Smithy?"},"110":{"body":"Fluent clients currently keep a handle to a single Smithy client, which is a wrapper around the underlying connector. When constructing operation builders, this handle is Arc cloned and given to the new builder instances so that their send() calls can initiate a request. The generated fluent client code ends up looking like this: struct Handle { client: aws_smithy_client::Client, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} Functions are generated per operation on the fluent client to gain access to the individual operation builders. For example: pub fn assume_role(&self) -> fluent_builders::AssumeRole { fluent_builders::AssumeRole::new(self.handle.clone())\n} The fluent operation builders ultimately implement send(), which chooses the one and only Smithy client out of the handle to make the request with: pub struct AssumeRole { handle: std::sync::Arc>, inner: crate::input::assume_role_input::Builder,\n} impl AssumeRole where ...{ pub async fn send(self) -> Result> where ... { // Setup code omitted ... // Make the actual request self.handle.client.call(op).await }\n} Smithy clients are constructed from a connector, as shown: let connector = Builder::new() .https() .middleware(...) .build();\nlet client = Client::with_config(connector, Config::builder().build()); The https() method on the Builder constructs the actual Hyper client, and is driven off Cargo features to select the correct TLS implementation. For example: #[cfg(feature = \"rustls\")]\npub fn https() -> Https { let https = hyper_rustls::HttpsConnector::with_native_roots(); let client = hyper::Client::builder().build::<_, SdkBody>(https); // HyperAdapter is a Tower `Service` request -> response connector that just calls the Hyper client crate::hyper_impls::HyperAdapter::from(client)\n}","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » How Clients Work Today","id":"110","title":"How Clients Work Today"},"111":{"body":"Customers need to be able to provide HTTP settings, such as timeouts, for all connectors that the clients use. These should come out of the SharedConfig when it is used. Connector creation also needs to be customizable so that alternate HTTP implementations can be used, or so that a fake implementation can be used for tests. To accomplish this, SharedConfig will have a make_connector member. A customer would configure it as such: let config = some_shared_config_loader() .with_http_settings(my_http_settings) .with_make_connector(|reqs: &MakeConnectorRequirements| { Some(MyCustomConnector::new(reqs)) }) .await; The passed in MakeConnectorRequirements will hold the customer-provided HttpSettings as well as any Smithy-modeled requirements, which will just be HttpVersion for now. The MakeConnectorRequirements struct will be marked non_exhaustive so that new requirements can be added to it as the SDK evolves. A default make_connector implementation would be provided that creates a Hyper connector based on the Cargo feature flags. This might look something like this: #[cfg(feature = \"rustls\")]\npub fn default_connector(reqs: &HttpRequirements) -> HyperAdapter { let https = hyper_rustls::HttpsConnector::with_native_roots(); let mut builder = hyper::Client::builder(); builder = configure_settings(builder, &reqs.http_settings); if let Http2 = &reqs.http_version { builder = builder.http2_only(true); } HyperAdapter::from(builder.build::<_, SdkBody>(https))\n} For any given service, make_connector could be called multiple times to create connectors for all required HTTP versions and settings. Note: the make_connector returns an Option since an HTTP version may not be required, but rather, preferred according to a Smithy model. For operations that list out [\"h2\", \"HTTP/1.1\"] as the desired versions, a customer could choose to provide only an HTTP 1 connector, and the operation should still succeed.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Creation Problem","id":"111","title":"Solving the Connector Creation Problem"},"112":{"body":"Each service operation needs to be able to select a connector that meets its requirements best from the customer provided connectors. Initially, the only selection criteria will be the HTTP version, but later when per-operation HTTP settings are implemented, the connector will also need to be keyed off of those settings. Since connector creation is not a cheap process, connectors will need to be cached after they are created. This caching is currently handled by the Handle in the fluent client, which holds on to the Smithy client. This cache needs to be adjusted to: Support multiple connectors, keyed off of the customer provided HttpSettings, and also off of the Smithy modeled requirements. Be lazy initialized. Services that have a mix of Event Stream and non-streaming operations shouldn't create an HTTP/2 client if the customer doesn't intend to use the Event Stream operations that require it. To accomplish this, the Handle will hold a cache that is optimized for many reads and few writes: #[derive(Debug, Hash, Eq, PartialEq)]\nstruct ConnectorKey { http_settings: HttpSettings, http_version: HttpVersion,\n} struct Handle { clients: RwLock, aws_smithy_client::Client>>, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} With how the generics are organized, the connector type will have to be the same between HTTP implementations, but this should be fine since it is generally a thin wrapper around a separate HTTP implementor. For cases where it is not, the custom connector type can host its own dyn Trait solution. The HttpRequirements struct will hold HttpSettings as copy-on-write so that it can be used for cache lookup without having to clone HttpSettings: struct HttpRequirements<'a> { http_settings: Cow<'a, HttpSettings>, http_version: HttpVersion,\n} impl<'a> HttpRequirements<'a> { // Needed for converting a borrowed HttpRequirements into an owned cache key for cache population pub fn into_owned(self) -> HttpRequirements<'static> { Self { http_settings: Cow::Owned(self.http_settings.into_owned()), http_version: self.http_version, } }\n} With the cache established, each operation needs to be aware of its requirements. The code generator will be updated to store a prioritized list of HttpVersion in the property bag in an input's make_operation() method. This prioritized list will come from the Smithy protocol trait's http or eventStreamHttp attribute, depending on the operation. The fluent client will then pull this list out of the property bag so that it can determine which connector to use. This indirection is necessary so that an operation still holds all information needed to make a service call from the Smithy client directly. Note: This may be extended in the future to be more than just HttpVersion, for example, when per-operation HTTP setting overrides are implemented. This doc is not attempting to solve that problem. In the fluent client, this will look as follows: impl AssumeRole where ... { pub async fn send(self) -> Result> where ... { let input = self.create_input()?; let op = input.make_operation(&self.handle.conf)?; // Grab the `make_connector` implementation let make_connector = self.config.make_connector(); // Acquire the prioritized HttpVersion list let http_versions = op.properties().get::(); // Make the actual request (using default HttpSettings until modifying those is implemented) let client = self.handle .get_or_create_client(make_connector, &default_http_settings(), &http_versions) .await?; client.call(op).await }\n} If an operation requires a specific protocol version, and if the make_connection implementation can't provide that it, then the get_or_create_client() function will return SdkError::ConstructionFailure indicating the error.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Selection Problem","id":"112","title":"Solving the Connector Selection Problem"},"113":{"body":"Create HttpVersion in aws-smithy-http with Http1_1 and Http2 Refactor existing https() connector creation functions to take HttpVersion Add make_connector to SharedConfig, and wire up the https() functions as a default Create HttpRequirements in aws-smithy-http Implement the connector cache on Handle Implement function to calculate a minimum required set of HTTP versions from a Smithy model in the code generator Update the make_operation code gen to put an HttpVersionList into the operation property bag Update the fluent client send() function code gen grab the HTTP version list and acquire the correct connector with it Add required defaulting for models that don't set the optional http and eventStreamHttp protocol trait attributes","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Changes Checklist","id":"113","title":"Changes Checklist"},"114":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Several AWS services allow for presigned requests in URL form, which is described well by S3's documentation on authenticating requests using query parameters . This doc establishes the customer-facing API for creating these presigned URLs and how they will be implemented in a generic fashion in the SDK codegen.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » RFC: API for Presigned URLs","id":"114","title":"RFC: API for Presigned URLs"},"115":{"body":"To differentiate between the clients that are present in the generated SDK today, the following terms will be used throughout this doc: Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Terminology","id":"115","title":"Terminology"},"116":{"body":"Today, presigned URLs take an expiration time that's not part of the service API. The SDK will make this configurable as a separate struct so that there's no chance of name collisions, and so that additional fields can be added in the future. Fields added later will require defaulting for backwards compatibility. Customers should also be able to set a start time on the presigned URL's expiration so that they can generate URLs that become active in the future. An optional start_time option will be available and default to SystemTime::now(). Construction PresigningConfig can be done with a builder, but a PresigningConfig::expires_in convenience function will be provided to bypass the builder for the most frequent use-case. #[non_exhaustive]\n#[derive(Debug, Clone)]\npub struct PresigningConfig { start_time: SystemTime, expires_in: Duration,\n} #[non_exhaustive]\n#[derive(Debug)]\npub struct Builder { start_time: Option, expires_in: Option,\n} impl Builder { pub fn start_time(self, start_time: SystemTime) -> Self { ... } pub fn set_start_time(&mut self, start_time: Option) { ... } pub fn expires_in(self, expires_in: Duration) -> Self { ... } pub fn set_expires_in(&mut self, expires_in: Option) { ... } // Validates `expires_in` is no greater than one week pub fn build(self) -> Result { ... }\n} impl PresigningConfig { pub fn expires_in(expires_in: Duration) -> PresigningConfig { Self::builder().expires(expires).build().unwrap() } pub fn builder() -> Builder { ... }\n} Construction of PresigningConfig will validate that expires_in is no greater than one week, as this is the longest supported expiration time for SigV4. This validation will result in a panic. It's not inconceivable that PresigningConfig will need additional service-specific parameters as customizations, so it will be code generated with each service rather than living a shared location.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Presigned URL config","id":"116","title":"Presigned URL config"},"117":{"body":"The generated fluent builders for operations that support presigning will have a presigned() method in addition to send() that will return a presigned URL rather than sending the request. For S3's GetObject, the usage of this will look as follows: let config = aws_config::load_config_from_environment().await;\nlet client = s3::Client::new(&config);\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = client.get_object() .bucket(\"example-bucket\") .key(\"example-object\") .presigned(presigning_config) .await?; This API requires a client, and for use-cases where no actual service calls need to be made, customers should be able to create presigned URLs without the overhead of an HTTP client. Once the HTTP Versions RFC is implemented, the underlying HTTP client won't be created until the first service call, so there will be no HTTP client overhead to this approach. In a step away from the general pattern of keeping fluent client capabilities in line with Smithy client capabilities, creating presigned URLs directly from the Smithy client will not be supported. This is for two reasons: The Smithy client is not code generated, so adding a method to do presigning would apply to all operations, but not all operations can be presigned. Presigned URLs are not currently a Smithy concept ( although this may change soon ). The result of calling presigned() is a PresignedRequest, which is a wrapper with delegating functions around http::Request<()> so that the request method and additional signing headers are also made available. This is necessary since there are some presignable POST operations that require the signature to be in the headers rather than the query. Note: Presigning needs to be async because the underlying credentials provider used to sign the request may need to make service calls to acquire the credentials.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Fluent Presigned URL API","id":"117","title":"Fluent Presigned URL API"},"118":{"body":"Even though generating a presigned URL through the fluent client doesn't necessitate an HTTP client, it will be clearer that this is the case by allowing the creation of presigned URLs directly from an input. This would look as follows: let config = aws_config::load_config_from_environment().await;\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = GetObjectInput::builder() .bucket(\"example-bucket\") .key(\"example-bucket\") .presigned(&config, presigning_config) .await?; Creating the URL through the input will exercise the same code path as creating it through the client, but it will be more apparent that the overhead of a client isn't present.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Input Presigned URL API","id":"118","title":"Input Presigned URL API"},"119":{"body":"From an SDK's perspective, the following are required to make a presigned URL: Valid request input Endpoint Credentials to sign with Signing implementation The AWS middleware provides everything except the request, and the request is provided as part of the fluent builder API. The generated code needs to be able to run the middleware to fully populate a request property bag, but not actually dispatch it. The expires_in value from the presigning config needs to be piped all the way through to the signer. Additionally, the SigV4 signing needs to adjusted to do query param signing, which is slightly different than its header signing. Today, request dispatch looks as follows: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls send(). send(): Builds the final input struct, and then calls its make_operation() method with the stored config to create a Smithy Operation. Calls the underlying Smithy client with the operation. The Smithy client constructs a Tower Service with AWS middleware and a dispatcher at the bottom, and then executes it. The middleware acquire and add required signing parameters (region, credentials, endpoint, etc) to the request property bag. The SigV4 signing middleware signs the request by adding HTTP headers to it. The dispatcher makes the actual HTTP request and returns the response all the way back up the Tower. Presigning will take advantage of a lot of these same steps, but will cut out the Operation and replace the dispatcher with a presigned URL generator: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls presigned(). presigned(): Builds the final input struct, calls the make_operation() method with the stored config, and then extracts the request from the operation (discarding the rest). Mutates the OperationSigningConfig in the property bag to: Change the signature_type to HttpRequestQueryParams so that the signer runs the correct signing logic. Set expires_in to the value given by the customer in the presigning config. Constructs a Tower Service with AwsMiddleware layered in, and a PresignedUrlGeneratorLayer at the bottom. Calls the Tower Service and returns its result The AwsMiddleware will sign the request. The PresignedUrlGeneratorLayer directly returns the request since all of the work is done by the middleware. It should be noted that the presigned() function above is on the generated input struct, so implementing this for the input API is identical to implementing it for the fluent client. All the code for the new make_request() is already in the existing make_operation() and will just need to be split out.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Behind the scenes","id":"119","title":"Behind the scenes"},"12":{"body":"Compilation time: Although it's possible to use cargo features to conditionally compile individual services, we decided that this added significant complexity to the generated code. In Rust the \"unit of compilation\" is a Crate, so by using smaller crates we can get better compilation parallelism. Furthermore, ecosystem services like docs.rs have an upper limit on the maximum amount of time required to build an individual crate—if we packaged the entire SDK as a single crate, we would quickly exceed this limit. Versioning: It is expected that over time we may major-version-bump individual services. New updates will be pushed for some AWS service nearly every day. Maintaining separate crates allows us to only increment versions for the relevant pieces that change. See Independent Crate Versioning for more info.","breadcrumbs":"Design FAQ » Why is there one crate per service?","id":"12","title":"Why is there one crate per service?"},"120":{"body":"AWS models don't currently have any information about which operations can be presigned. To work around this, the Rust SDK will create a synthetic trait to model presigning with, and apply this trait to known presigned operations via customization. The code generator will look for this synthetic trait when creating the fluent builders and inputs to know if a presigned() method should be added.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Modeling Presigning","id":"120","title":"Modeling Presigning"},"121":{"body":"If a presignable operation input has a member named presigned, then there will be a name collision with the function to generate a presigned URL. To mitigate this, RustReservedWords will be updated to rename the presigned member to presigned_value similar to how send is renamed .","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Avoiding name collision","id":"121","title":"Avoiding name collision"},"122":{"body":"Update aws-sigv4 to support query param signing Create PresignedOperationSyntheticTrait Customize models for known presigned operations Create PresigningConfig and its builder Implement PresignedUrlGeneratorLayer Create new AWS codegen decorator to: Add new presigned() method to input code generator Add new presigned() method to fluent client generator Update RustReservedWords to reserve presigned() Add integration test to S3 Add integration test to Polly Add examples for using presigning for: S3 GetObject and PutObject Polly SynthesizeSpeech","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Changes Checklist","id":"122","title":"Changes Checklist"},"123":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. It is not currently possible for users of the SDK to configure a client's maximum number of retry attempts. This RFC establishes a method for users to set the number of retries to attempt when calling a service and would allow users to disable retries entirely. This RFC would introduce breaking changes to the retry module of the aws-smithy-client crate.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » RFC: Retry Behavior","id":"123","title":"RFC: Retry Behavior"},"124":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. Standard retry behavior : The standard set of retry rules across AWS SDKs. This mode includes a standard set of errors that are retried, and support for retry quotas. The default maximum number of attempts with this mode is three, unless max_attempts is explicitly configured. Adaptive retry behavior : Adaptive retry mode dynamically limits the rate of AWS requests to maximize success rate. This may be at the expense of request latency. Adaptive retry mode is not recommended when predictable latency is important. Note: supporting the \"adaptive\" retry behavior is considered outside the scope of this RFC","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Terminology","id":"124","title":"Terminology"},"125":{"body":"This RFC will demonstrate (with examples) the following ways that Users can set the maximum number of retry attempts: By calling the Config::retry_config(..) or Config::disable_retries() methods when building a service-specific config By calling the Config::retry_config(..) or Config::disable_retries() methods when building a shared config By setting the AWS_MAX_ATTEMPTS environment variable The above list is in order of decreasing precedence e.g. setting maximum retry attempts with the max_attempts builder method will override a value set by AWS_MAX_ATTEMPTS. The default number of retries is 3 as specified in the AWS SDKs and Tools Reference Guide .","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Configuring the maximum number of retries","id":"125","title":"Configuring the maximum number of retries"},"126":{"body":"Here's an example app that logs your AWS user's identity use aws_sdk_sts as sts; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Then, in your terminal: # Set the env var before running the example program\nexport AWS_MAX_ATTEMPTS=5\n# Run the example program\ncargo run","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Setting an environment variable","id":"126","title":"Setting an environment variable"},"127":{"body":"Here's an example app that creates a shared config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let config = aws_config::from_env().retry_config(retry_config).load().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on an AWS shared config","id":"127","title":"Calling a method on an AWS shared config"},"128":{"body":"Here's an example app that creates a service-specific config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let sts_config = sts::config::Config::from(&config).retry_config(retry_config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on service-specific config","id":"128","title":"Calling a method on service-specific config"},"129":{"body":"Here's an example app that creates a shared config that disables retries and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::config::Config; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::from_env().disable_retries().load().await; let sts_config = sts::config::Config::from(&config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Retries can also be disabled by explicitly passing the RetryConfig::NoRetries enum variant to the retry_config builder method: use aws_sdk_sts as sts;\nuse aws_types::retry_config::RetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts_config = sts::config::Config::from(&config).retry_config(RetryConfig::NoRetries).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Disabling retries","id":"129","title":"Disabling retries"},"13":{"body":"Compilation time: serde makes heavy use of several crates (proc-macro2, quote, and syn) that are very expensive to compile. Several service crates are already quite large and adding a serde dependency would increase compile times beyond what we consider acceptable. When we last checked, adding serde derives made compilation 23% slower. Misleading results: We can't use serde for serializing requests to AWS or deserializing responses from AWS because both sides of that process would require too much customization. Adding serialize/deserialize impls for operations has the potential to confuse users when they find it doesn't actually capture all the necessary information (like headers and trailers) sent in a request or received in a response. In the future, we may add serde support behind a feature gate. However, we would only support this for operation Input and Output structs with the aim of making SDK-related tests easier to set up and run.","breadcrumbs":"Design FAQ » Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?","id":"13","title":"Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?"},"130":{"body":"Currently, when users want to send a request, the following occurs: The user creates either a shared config or a service-specific config The user creates a fluent client for the service they want to interact with and passes the config they created. Internally, this creates an AWS client with a default retry policy The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy After this change, the process will work like this: The user creates either a shared config or a service-specific config If AWS_MAX_ATTEMPTS is set to zero, this is invalid and we will log it with tracing::warn. However, this will not error until a request is made If AWS_MAX_ATTEMPTS is 1, retries will be disabled If AWS_MAX_ATTEMPTS is greater than 1, retries will be attempted at most as many times as is specified If the user creates the config with the .disable_retries builder method, retries will be disabled If the user creates the config with the retry_config builder method, retry behavior will be set according to the RetryConfig they passed The user creates a fluent client for the service they want to interact with and passes the config they created Provider precedence will determine what retry behavior is actually set, working like how Region is set The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy These changes will be made in such a way that they enable us to add the \"adaptive\" retry behavior at a later date without introducing a breaking change.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Behind the scenes","id":"130","title":"Behind the scenes"},"131":{"body":"Create new Kotlin decorator RetryConfigDecorator Based on RegionDecorator.kt This decorator will live in the codegen project because it has relevance outside the SDK Breaking changes: Rename aws_smithy_client::retry::Config to StandardRetryConfig Rename aws_smithy_client::retry::Config::with_max_retries method to with_max_attempts in order to follow AWS convention Passing 0 to with_max_attempts will panic with a helpful, descriptive error message Create non-exhaustive aws_types::retry_config::RetryConfig enum wrapping structs that represent specific retry behaviors A NoRetry variant that disables retries. Doesn't wrap a struct since it doesn't need to contain any data A Standard variant that enables the standard retry behavior. Wraps a StandardRetryConfig struct. Create aws_config::meta::retry_config::RetryConfigProviderChain Create aws_config::meta::retry_config::ProvideRetryConfig Create EnvironmentVariableMaxAttemptsProvider struct Setting AWS_MAX_ATTEMPTS=0 and trying to load from env will panic with a helpful, descriptive error message Add retry_config method to aws_config::ConfigLoader Update AwsFluentClientDecorator to correctly configure the max retry attempts of its inner aws_hyper::Client based on the passed-in Config Add tests Test that setting retry_config to 1 disables retries Test that setting retry_config to n limits retries to n where n is a non-zero integer Test that correct precedence is respected when overriding retry behavior in a service-specific config Test that correct precedence is respected when overriding retry behavior in a shared config Test that creating a config from env if AWS_MAX_ATTEMPTS=0 will panic with a helpful, descriptive error message Test that setting invalid max_attempts=0 with a StandardRetryConfig will panic with a helpful, descriptive error message","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Changes checklist","id":"131","title":"Changes checklist"},"132":{"body":"Status: RFC The Rust Smithy Framework is a full-fledged service framework whose main responsibility is to handle request lifecycles from beginning to end. It takes care of input de-serialization, operation execution, output serialization, error handling, and provides facilities to fulfill the requirements below.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » RFC: Smithy Rust Service Framework","id":"132","title":"RFC: Smithy Rust Service Framework"},"133":{"body":"","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Requirements","id":"133","title":"Requirements"},"134":{"body":"Server side code is generated from Smithy models and implements operations, input and output structures, and errors defined in the service model.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Smithy model-driven code generation","id":"134","title":"Smithy model-driven code generation"},"135":{"body":"This new framework is built with performance in mind. It refrains from allocating memory when not needed and tries to use a majority of borrowed types, handling their memory lifetimes so that a request body can be stored in memory only once and not cloned if possible. The code is implemented on solid and widely used foundations. It uses Hyper to handle the HTTP requests, the Tokio ecosystem for asynchronous (non-blocking) operations and Tower to implement middleware such as timeouts, rate limiting, retries, and more. CPU intensive operations are scheduled on a separated thread-pool to avoid blocking the event loop. It uses Tokio axum , an HTTP framework built on top of the technologies mentioned above which handles routing, request extraction, response building, and workers lifecycle. Axum is a relatively thin layer on top of Hyper and adds very little overhead, so its performance is comparable to Hyper. The framework should allow customers to use the built-in HTTP server or select other transport implementations that can be more performant or better suited than HTTP for their use case.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Performance","id":"135","title":"Performance"},"136":{"body":"We want to deliver an extensible framework that can plugin components possibly during code generation and at runtime for specific scenarios that cannot be covered during generation. These components are developed using a standard interface provided by the framework itself.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Extensibility","id":"136","title":"Extensibility"},"137":{"body":"Being able to report and trace the status of the service is vital for the success of any product. The framework is integrated with tracing and allows non-blocking I/O through the asynchronous tracing appender . Metrics and logging are built with extensibility in mind, allowing customers to plug their own handlers following a well defined interface provided by the framework.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Observability","id":"137","title":"Observability"},"138":{"body":"Client generation is deferred to the various Smithy implementations.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Client generation","id":"138","title":"Client generation"},"139":{"body":"Benchmarking the framework is key and customers can't use anything that compromises the fundamental business objectives of latency and performance.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Benchmarking","id":"139","title":"Benchmarking"},"14":{"body":"The main question to ask yourself in this case is \"is this new behavior relevant to all services or is it only relevant to some services?\" If the behavior is relevant to all services: Behavior like this should be defined as a middleware. Behavior like this is often AWS-specific and may not be relevant to non-AWS smithy clients. Middlewares are defined outside of codegen. One example of behavior that should be defined as a middleware is request signing because all requests to AWS services must be signed. If the behavior is only relevant to some services/depends on service model specifics: Behavior like this should be defined within make_operation. Avoid defining AWS-specific behavior within make_operation. One example of behavior that should be defined in make_operation is checksum validation because only some AWS services have APIs that support checksum validation. \"Wait a second\" I hear you say, \"checksum validation is part of the AWS smithy spec, not the core smithy spec. Why is that behavior defined in make_operation?\" The answer is that that feature only applies to some operations and we don't want to codegen a middleware that only supports a subset of operations for a service.","breadcrumbs":"Design FAQ » I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?","id":"14","title":"I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?"},"140":{"body":"The generated service code is responsible for validating the model constraints of input structures.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Model validation","id":"140","title":"Model validation"},"141":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Currently, all services use a centralized AwsMiddleware that is defined in the (poorly named) aws-hyper crate. This poses a number of long term risks and limitations: When creating a Smithy Client directly for a given service, customers are forced to implicitly assume that the service uses stock AwsMiddleware. This prevents us from ever changing the middleware stack for a service in the future. It is impossible / impractical in the current situation to alter the middleware stack for a given service. For services like S3, we will almost certainly want to customize endpoint middleware in a way that is currently impossible. In light of these limitations, this RFC proposes moving middleware into each generated service. aws-inlineable will be used to host and test the middleware stack. Each service will then define a public middleware module containing their middleware stack.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » RFC: Service-specific middleware","id":"141","title":"RFC: Service-specific middleware"},"142":{"body":"Middleware : A tower layer that augments operation::Request -> operation::Response for things like signing and endpoint resolution. Aws Middleware : A specific middleware stack that meets the requirements for AWS services. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Terminology","id":"142","title":"Terminology"},"143":{"body":"Currently, AwsMiddleware is defined in aws-hyper. As part of this change, an aws-inlineable dependency will be added containing code that is largely identical. This will be exposed in a public middleware module in all generated services. At some future point, we could even expose a baseline set of default middleware for whitelabel Smithy services to make them easier to use out-of-the-box. The ClientGenerics parameter of the AwsFluentClientGenerator will be updated to become a RuntimeType, enabling loading the type directly. This has the advantage of making it fairly easy to do per-service middleware stacks since we can easily configure AwsFluentClientGenerator to insert different types based on the service id.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Detailed Design","id":"143","title":"Detailed Design"},"144":{"body":"Move aws-hyper into aws-inlineable. Update comments as needed including with a usage example about how customers can augment it. Refactor ClientGenerics to contain a RuntimeType instead of a string and configure. Update AwsFluentClientDecorator. Update all code and examples that use aws-hyper to use service-specific middleware. Push an updated README to aws-hyper deprecating the package, explaining what happened. Do not yank previous versions since those will be relied on by older SDK versions.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Changes Checklist","id":"144","title":"Changes Checklist"},"145":{"body":"Status: Implemented in smithy-rs#986 and aws-sdk-rust#351 At the time of writing, the aws-sdk-rust repository is used exclusively for the entire release process of both the Rust runtime crates from smithy-rs as well as the AWS runtime crates and the AWS SDK. This worked well when smithy-rs was only used for the AWS SDK, but now that it's also used for server codegen, there are issues around publishing the server-specific runtime crates since they don't belong to the SDK. This RFC proposes a new split-release process so that the entire smithy-rs runtime can be published separately before the AWS SDK is published.","breadcrumbs":"RFCs » RFC-0007: Split release process » RFC: Split Release Process","id":"145","title":"RFC: Split Release Process"},"146":{"body":"Smithy Runtime Crate : A crate that gets published to crates.io and supports the code generated by smithy-rs. These crates don't provide any SDK-only functionality. These crates can support client and/or server code, and clients or servers may use only a subset of them. AWS Runtime Crate : A crate of SDK-specific code that supports the code generated by the aws/codegen module in smithy-rs. These also get published to crates.io. Publish-ready Bundle : A build artifact that is ready to publish to crates.io without additional steps (such as running the publisher tool's fix-manifests subcommand). Publishing one group of crates before another is not considered an additional step for this definition. Releaser : A developer, automated process, or combination of the two that performs the actual release.","breadcrumbs":"RFCs » RFC-0007: Split release process » Terminology","id":"146","title":"Terminology"},"147":{"body":"At a high level, the requirements are: publish from both smithy-rs and aws-sdk-rust while preserving our current level of confidence in the quality of the release. This can be enumerated as: All Smithy runtime crates must be published together from smithy-rs AWS runtime crates and the SDK must be published together from aws-sdk-rust CI on smithy-rs must give confidence that the Smithy runtime crates, AWS runtime crates, and SDK are all at the right quality bar for publish. CI on the aws-sdk-rust repository must give confidence that the AWS SDK and its runtime crates are at the right quality bar for publish. To do this successfully, it must run against the exact versions of the Smithy runtime crates the code was generated against both before AND after they have been published to crates.io .","breadcrumbs":"RFCs » RFC-0007: Split release process » Requirements","id":"147","title":"Requirements"},"148":{"body":"The publish process to crates.io relied on copying all the Smithy runtime crates into the final aws-sdk-rust repository. Overall, the process looked as follows: smithy-rs generates a complete aws-sdk-rust source bundle at CI time The releaser copies the generated bundle over to aws-sdk-rust The releaser runs the publisher fix-manifests subcommand to correct the Cargo.toml files generated by smithy-rs The aws-sdk-rust CI performs one last pass on the code to verify it's sound The releaser runs the publisher publish subcommand to push all the crates up to crates.io","breadcrumbs":"RFCs » RFC-0007: Split release process » Background: How Publishing Worked Before","id":"148","title":"Background: How Publishing Worked Before"},"149":{"body":"CI in smithy-rs will be revised to generate two separate build artifacts where it generates just an SDK artifact previously. Now, it will have two build targets that get executed from CI to generate these artifacts: rust-runtime:assemble - Generates a publish-ready bundle of Smithy runtime crates. aws:sdk:assemble - Generates a publish-ready bundle of AWS runtime crates, SDK crates, and just the Smithy runtime crates that are used by the SDK. The aws-sdk-rust repository will have a new next branch that has its own set of CI workflows and branch protection rules. The releaser will take the aws:sdk:assemble artifact and apply it directly to this next branch as would have previously been done against the main branch. The main branch will continue to have the same CI as next. When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next (this will be automated in the future) Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main Tag release for main Publish SDK with publisher tool The server team can then download the rust-runtime:assemble build artifact for the tagged release in smithy-rs, and publish the aws-smithy-http-server crate from there.","breadcrumbs":"RFCs » RFC-0007: Split release process » Proposed Solution","id":"149","title":"Proposed Solution"},"15":{"body":"The transport layer of smithy-rs and the Rust SDK. Our goal is support customers to bring their own HTTP stack and runtime.","breadcrumbs":"Transport » Transport","id":"15","title":"Transport"},"150":{"body":"It should be difficult to accidentally publish a locally built set of crates. To add friction to this, the smithy-rs build process will look for the existence of the GITHUB_ACTIONS=true environment variable. If this environment variable is not set, then it will pass a flag to the Rust codegen plugin that tells it to emit a publish = false under [package] in the generated Cargo.toml. This could be easily circumvented, but the goal is to reduce the chances of accidentally publishing crates rather than making it impossible.","breadcrumbs":"RFCs » RFC-0007: Split release process » Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI","id":"150","title":"Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI"},"151":{"body":"","breadcrumbs":"RFCs » RFC-0007: Split release process » Alternatives Considered","id":"151","title":"Alternatives Considered"},"152":{"body":"This approach is similar to the proposed solution, except that the SDK would not publish the Smithy runtime crates. The aws-sdk-rust/main branch would have a small tweak to its CI so that the SDK is tested against the Smithy runtime crates that are published to crates.io This CI process would look as follows: Shallow clone aws-sdk-rust with the revision being tested Run a script to remove the path argument for the Smithy runtime crate dependencies for every crate in aws-sdk-rust. For example, aws-smithy-types = { version = \"0.33.0\", path = \"../aws-smithy-types\" } Would become: aws-smithy-types = { version = \"0.33.0\" } Run the tests as usual When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next Wait for successful CI in aws-sdk-rust/next Download the Smithy runtime crates build artifact and publish it to crates.io Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main (this time actually running against the crates.io Smithy runtime crates) Tag release for main Publish SDK with publisher tool","breadcrumbs":"RFCs » RFC-0007: Split release process » Publish Smithy runtime crates from smithy-rs build artifacts","id":"152","title":"Publish Smithy runtime crates from smithy-rs build artifacts"},"153":{"body":"This approach is similar to the previous alternative, except that the aws-sdk-rust repository won't have a snapshot of the Smithy runtime crates, and an additional step needs to be performed during CI for the next branch so that it looks as follows: Make a shallow clone of aws-sdk-rust/next Retrieve the smithy-rs commit hash that was used to generate the SDK from a file that was generated alongside the rest of the build artifacts from smithy-rs and copied into aws-sdk-rust. Make a shallow clone of smithy-rs at the correct commit hash Use a script to add a [patch] section to all the AWS SDK crates to point to the Smithy runtime crates from the local clone of smithy-rs. For example: # The dependencies section is left alone, but is here for context\n[dependencies]\n# Some version of aws-smithy-types that isn't on crates.io yet, referred to as `` below\naws-smithy-types = \"\" # This patch section gets added by the script\n[patch.crates-io]\naws-smithy-types = { version = \"\", path = \"path/to/local/smithy-rs/rust-runtime/aws-smithy-types\"} Run CI as normal. Note: smithy-rs would need to do the same patching in CI as aws-sdk-rust/next since the generated SDK would not have path dependencies for the Smithy runtime crates (since they are a publish-ready bundle intended for landing in aws-sdk-rust). The script that does this patching could live in smithy-rs and be reused by aws-sdk-rust. The disadvantage of this approach is that a customer having an issue with the current release wouldn't be able to get a fix sooner by patching their own project's crate manifest to use the aws-sdk-rust/next branch before a release is cut since their project wouldn't be able to find the unreleased Smithy runtime crates.","breadcrumbs":"RFCs » RFC-0007: Split release process » Keep Smithy runtime crates in smithy-rs","id":"153","title":"Keep Smithy runtime crates in smithy-rs"},"154":{"body":"In smithy-rs: Move publisher tool from aws-sdk-rust into smithy-rs Modify aws:sdk:assemble target to run the publisher fix-manifests subcommand Add rust-runtime:assemble target that generates publish-ready Smithy runtime crates Add CI step to create Smithy runtime bundle artifact Add GITHUB_ACTIONS=true env var check for setting the publish flag in generated AND runtime manifests Revise publisher tool to publish from an arbitrary directory In aws-sdk-rust: Implement CI for the aws-sdk-rust/next branch Remove the publisher tool Update release process documentation","breadcrumbs":"RFCs » RFC-0007: Split release process » Changes Checklist","id":"154","title":"Changes Checklist"},"155":{"body":"Status: Implemented Smithy models paginated responses . Customers of Smithy generated code & the Rust SDK will have an improved user experience if code is generated to support this. Fundamentally, paginators are a way to automatically make a series of requests with the SDK, where subsequent requests automatically forward output from the previous responses. There is nothing a paginator does that a user could not do manually, they merely simplify the common task of interacting with paginated APIs. **Specifically, a paginator will resend the orginal request but with inputToken updated to the value of the previous outputToken. In this RFC, we propose modeling paginated data as a Stream of output shapes. When an output is paginated, a paginate() method will be added to the high level builder An Paginator struct will be generated into the paginator module. If items is modeled, paginate().items() will be added to produce the paginated items. PaginatorItems will be generated into the paginator module. The Stream trait enables customers to use a number of abstractions including simple looping, and collect()ing all data in a single call. A paginator will resend the original input, but with the field marked inputToken to the value of outputToken in the previous output. Usage example: let paginator = client .list_tables() .paginate() .items() .page_size(10) .send() .await;\nlet tables: Result, _ > = paginator.collect().await; Paginators are lazy and only retrieve pages when polled by a client.","breadcrumbs":"RFCs » RFC-0008: Paginators » Summary","id":"155","title":"Summary"},"156":{"body":"Paginators will be generated into the paginator module of service crates. Currently, paginators are not feature gated, but this could be considered in the future. A paginator struct captures 2 pieces of data: // dynamodb/src/paginator.rs\nstruct ListTablesPaginator { // holds the low-level client and configuration handle: Arc>, // input builder to construct the actual input on demand input: ListTablesInputBuilder\n} In addition to the basic usage example above, when pageSize is modeled, customers can specify the page size during pagination: let mut tables = vec![];\nlet mut pages = client .list_tables() .paginate() .page_size(20) .send();\nwhile let Some(next_page) = pages.try_next().await? { // pages of 20 items requested from DynamoDb tables.extend(next_page.table_names.unwrap_or_default().into_iter());\n} Paginators define a public method send(). This method returns impl Stream. This uses FnStream defined in the aws-smithy-async crate which enables demand driven execution of a closure. A rendezvous channel is used which will block on send until demand exists. When modeled by Smithy, page_size which automatically sets the appropriate page_size parameter and items() which returns an automatically flattened paginator are also generated. Note : page_size directly sets the modeled parameter on the internal builder. This means that a value set for page size will override any previously set value for that field. // Generated paginator for ListTables\nimpl ListTablesPaginator\n{ /// Set the page size pub fn page_size(mut self, limit: i32) -> Self { self.builder.limit = Some(limit); self } /// Create a flattened paginator /// /// This paginator automatically flattens results using `table_names`. Queries to the underlying service /// are dispatched lazily. pub fn items(self) -> crate::paginator::ListTablesPaginatorItems { crate::paginator::ListTablesPaginatorItems(self) } /// Create the pagination stream /// /// _Note:_ No requests will be dispatched until the stream is used (eg. with [`.next().await`](tokio_stream::StreamExt::next)). pub async fn send( self, ) -> impl tokio_stream::Stream< Item = std::result::Result< crate::output::ListTablesOutput, aws_smithy_http::result::SdkError, >, > + Unpin { // Move individual fields out of self for the borrow checker let builder = self.builder; let handle = self.handle; fn_stream::FnStream::new(move |tx| { Box::pin(async move { // Build the input for the first time. If required fields are missing, this is where we'll produce an early error. let mut input = match builder.build().map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(input) => input, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; loop { let op = match input.make_operation(&handle.conf).await.map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(op) => op, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; let resp = handle.client.call(op).await; // If the input member is None or it was an error let done = match resp { Ok(ref resp) => { input.exclusive_start_table_name = crate::lens::reflens_structure_crate_output_list_tables_output_last_evaluated_table_name(resp).cloned(); input.exclusive_start_table_name.is_none() } Err(_) => true, }; if let Err(_) = tx.send(resp).await { // receiving end was dropped return; } if done { return; } } }) }) }\n} On Box::pin : The stream returned by AsyncStream does not implement Unpin. Unfortunately, this makes iteration require an invocation of pin_mut! and generates several hundred lines of compiler errors. Box::pin seems a worthwhile trade off to improve the user experience. On the + Unpin bound : Because auto-traits leak across impl Trait boundaries, + Unpin prevents accidental regressions in the generated code which would break users. On the crate::reflens::... : We use LensGenerator.kt to generate potentially complex accessors to deeply nested fields.","breadcrumbs":"RFCs » RFC-0008: Paginators » Details","id":"156","title":"Details"},"157":{"body":"The builders generated by ergonomic clients will gain the following method, if they represent an operation that implements the Paginated trait: /// Create a paginator for this request\n///\n/// Paginators are used by calling [`send().await`](crate::paginator::ListTablesPaginator::send) which returns a [`Stream`](tokio_stream::Stream).\npub fn paginate(self) -> crate::paginator::ListTablesPaginator { crate::paginator::ListTablesPaginator::new(self.handle, self.inner)\n}","breadcrumbs":"RFCs » RFC-0008: Paginators » Updates to ergonomic clients","id":"157","title":"Updates to ergonomic clients"},"158":{"body":"","breadcrumbs":"RFCs » RFC-0008: Paginators » Discussion Areas","id":"158","title":"Discussion Areas"},"159":{"body":"Calling send().await is not necessary from an API perspective—we could have the paginators impl-stream directly. However, it enables using impl Trait syntax and also makes the API consistent with other SDK APIs.","breadcrumbs":"RFCs » RFC-0008: Paginators » On send().await","id":"159","title":"On send().await"},"16":{"body":"aws-hyper assembles a middleware stack with tower. It provides a way to use an HTTP client other than Hyper, however, it currently has a hard dependency on Hyper & Tokio. hyper::Body is being used directly as the body implementation for responses.","breadcrumbs":"Transport » Where we are today","id":"16","title":"Where we are today"},"160":{"body":"Currently, the core trait we use is tokio_stream::Stream. This is a re-export from futures-util. There are a few other choices: Re-export Stream from tokio_stream. Use futures_util directly","breadcrumbs":"RFCs » RFC-0008: Paginators » On tokio_stream::Stream","id":"160","title":"On tokio_stream::Stream"},"161":{"body":"Currently, the paginators forward the generics from the client (C, M, R) along with their fairly annoying bounds. However, if we wanted to we could simplify this and erase all the generics when the paginator was created. Since everything is code generated, there isn't actually much duplicated code in the generator, just in the generated code.","breadcrumbs":"RFCs » RFC-0008: Paginators » On Generics","id":"161","title":"On Generics"},"162":{"body":"Create and test FnStream abstraction Generate page-level paginators Generate .items() paginators Generate doc hints pointing people to paginators Integration test using mocked HTTP traffic against a generated paginator for a real service Integration test using real traffic","breadcrumbs":"RFCs » RFC-0008: Paginators » Changes Checklist","id":"162","title":"Changes Checklist"},"163":{"body":"Status: Implemented Currently, the AWS Rust SDK's examples are duplicated across awslabs/aws-sdk-rust , awslabs/smithy-rs , and awsdocs/aws-doc-sdk-examples . The smithy-rs repository was formerly the source of truth for examples, with the examples being copied over to aws-sdk-rust as part of the release process, and examples were manually copied over to aws-doc-sdk-examples so that they could be included in the developer guide. Now that the SDK is more stable with less frequent breaking changes, the aws-doc-sdk-examples repository can become the source of truth so long as the examples are tested against smithy-rs and continue to be copied into aws-sdk-rust.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » RFC: Examples Consolidation","id":"163","title":"RFC: Examples Consolidation"},"164":{"body":"Examples are authored and maintained in aws-doc-sdk-examples Examples are no longer present in smithy-rs CI in smithy-rs checks out examples from aws-doc-sdk-examples and builds them against the generated SDK. Success for this CI job is optional for merging since there can be a time lag between identifying that examples are broken and fixing them. Examples must be copied into aws-sdk-rust so that the examples for a specific version of the SDK can be easily referenced. Examples must be verified in aws-sdk-rust prior to merging into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Requirements","id":"164","title":"Requirements"},"165":{"body":"A CI job will be added to smithy-rs that: Depends on the CI job that generates the full AWS SDK Checks out the aws-doc-sdk-examples repository Modifies example Cargo.toml files to point to the newly generated AWS SDK crates Runs cargo check on each example This job will not be required to pass for branch protection, but will let us know that examples need to be updated before the next release.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Example CI in smithy-rs","id":"165","title":"Example CI in smithy-rs"},"166":{"body":"The auto-sync job that copies generated code from smithy-rs into the aws-sdk-rust/next branch will be updated to check out the aws-doc-sdk-examples repository and copy the examples into aws-sdk-rust. The example Cargo.toml files will also be updated to point to the local crate paths as part of this process. The aws-sdk-rust CI already requires examples to compile, so merging next into main, the step required to perform a release, will be blocked until the examples are fixed. In the event the examples don't work on the next branch, developers and example writers will need to be able to point the examples in aws-doc-sdk-examples to the generated SDK in next so that they can verify their fixes. This can be done by hand, or a tool can be written to automate it if a significant number of examples need to be fixed.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Auto-sync to aws-sdk-rust from smithy-rs changes","id":"166","title":"Auto-sync to aws-sdk-rust from smithy-rs changes"},"167":{"body":"There are a couple of risks with this approach: Risk: Examples are broken and an urgent fix needs to be released. Possible mitigations: Revert the change that broke the examples and then add the urgent fix Create a patch branch in aws-sdk-rust, apply the fix to that based off an older version of smithy-rs with the fix applied, and merge that into main. Risk: A larger project requires changes to examples prior to GA, but multiple releases need to occur before the project completion. Possible mitigations: If the required changes compile against the older SDK, then just make the changes to the examples. Feature gate any incremental new functionality in smithy-rs, and work on example changes on a branch in aws-doc-sdk-examples. When wrapping up the project, remove the feature gating and merge the examples into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Process Risks","id":"167","title":"Process Risks"},"168":{"body":"","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Alternatives","id":"168","title":"Alternatives"},"169":{"body":"Alternatively, the examples could reside in aws-sdk-rust, be referenced from smithy-rs CI, and get copied into aws-doc-sdk-examples for inclusion in the user guide. Pros: Prior to GA, fixing examples after making breaking changes to the SDK would be easier. Otherwise, Cargo.toml files have to be temporarily modified to point to the aws-sdk-rust/next branch in order to make fixes. If a customer discovers examples via the aws-sdk-rust repository rather than via the SDK user guide, then it would be more obvious how to make changes to examples. At time of writing, the examples in the user guide link to the aws-doc-sdk-examples repository, so if the examples are discovered that way, then updating them should already be clear. Cons: Tooling would need to be built to sync examples from aws-sdk-rust into aws-doc-sdk-examples so that they could be incorporated into the user guide. Creates a circular dependency between the aws-sdk-rust and smithy-rs repositories. CI in smithy-rs needs to exercise examples, which would be in aws-sdk-rust, and aws-sdk-rust has its code generated by smithy-rs. This is workable, but may lead to problems later on. The tooling to auto-sync from aws-sdk-rust into aws-doc-sdk-examples will likely cost more than tooling to temporarily update Cargo.toml files to make example fixes (if that tooling is even necessary).","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » aws-sdk-rust as the source of truth","id":"169","title":"aws-sdk-rust as the source of truth"},"17":{"body":"Extend HttpService to add a sleep method. This is required to enable runtimes other than Tokio to define how they should sleep. Replace hyper::Body in responses with SDK Body. For now, SDKBody will probably privately wrap hyper::Body. Merge aws-hyper into aws-http. Tokio becomes an optional feature—When the Tokio feature is opted out the \"fast path\" variants for the connection variants are cfg'd out. By default, customers get a fully baked HTTP stack, but they can opt out of certain features and BYO implementation of HttpService.","breadcrumbs":"Transport » Where we want to go","id":"17","title":"Where we want to go"},"170":{"body":"Add example CI job to smithy-rs Diff examples in smithy-rs and aws-doc-sdk-examples and move desired differences into aws-doc-sdk-examples Apply example fix PRs from aws-sdk-rust into aws-doc-sdk-examples Update smithy-rs CI to copy examples from aws-doc-sdk-examples rather than from smithy-rs Delete examples from smithy-rs","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Changes Checklist","id":"170","title":"Changes Checklist"},"171":{"body":"Status: Accepted Waiters are a convenient polling mechanism to wait for a resource to become available or to be deleted. For example, a waiter could be used to wait for a S3 bucket to be created after a call to the CreateBucket API, and this would only require a small amount of code rather than building out an entire polling mechanism manually. At the highest level, a waiter is a simple polling loop (pseudo-Rust): // Track state that contains the number of attempts made and the previous delay\nlet mut state = initial_state(); loop { // Poll the service let result = poll_service().await; // Classify the action that needs to be taken based on the Smithy model match classify(result) { // If max attempts hasn't been exceeded, then retry after a delay. Otherwise, error. Retry => if state.should_retry() { let delay = state.next_retry(); sleep(delay).await; } else { return error_max_attempts(); } // Otherwise, if the termination condition was met, return the output Terminate(result) => return result, }\n} In the AWS SDK for Rust, waiters can be added without making any backwards breaking changes to the current API. This doc outlines the approach to add them in this fashion, but does NOT examine code generating response classification from JMESPath expressions, which can be left to the implementer without concern for the overall API.","breadcrumbs":"RFCs » RFC-0010: Waiters » RFC: Waiters","id":"171","title":"RFC: Waiters"},"172":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0010: Waiters » Terminology","id":"172","title":"Terminology"},"173":{"body":"Waiters must adhere to the Smithy waiter specification . To summarize: Waiters are specified by the Smithy @waitable trait Retry during polling must be exponential backoff with jitter, with the min/max delay times and max attempts configured by the @waitable trait The SDK's built-in retry needs to be replaced by the waiter's retry since the Smithy model can specify retry conditions that are contrary to the defaults. For example, an error that would otherwise be retried by default might be the termination condition for the waiter. Classification of the response must be code generated based on the JMESPath expression in the model.","breadcrumbs":"RFCs » RFC-0010: Waiters » Requirements","id":"173","title":"Requirements"},"174":{"body":"To invoke a waiter, customers will only need to invoke a single function on the AWS Client. For example, if waiting for a S3 bucket to exist, it would look like the following: // Request bucket creation\nclient.create_bucket() .bucket_name(\"my-bucket\") .send() .await()?; // Wait for it to be created\nclient.wait_until_bucket_exists() .bucket_name(\"my-bucket\") .send() .await?; The call to wait_until_bucket_exists() will return a waiter-specific fluent builder with a send() function that will start the polling and return a future. To avoid name conflicts with other API methods, the waiter functions can be added to the client via trait: pub trait WaitUntilBucketExists { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder;\n} This trait would be implemented for the service's fluent client (which will necessitate making the fluent client's handle field pub(crate)).","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter API","id":"174","title":"Waiter API"},"175":{"body":"A waiter trait implementation will merely return a fluent builder: impl WaitUntilBucketExists for Client { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder { crate::waiter::bucket_exists::Builder::new() }\n} This builder will have a short send() function to kick off the actual waiter implementation: impl Builder { // ... existing fluent builder codegen can be reused to create all the setters and constructor pub async fn send(self) -> Result> { // Builds an input from this builder let input = self.inner.build().map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?; // Passes in the client's handle, which contains a Smithy client and client config crate::waiter::bucket_exists::wait(self.handle, input).await }\n} This wait function needs to, in a loop similar to the pseudo-code in the beginning, convert the given input into an operation, replace the default response classifier on it with a no-retry classifier, and then determine what to do next based on that classification: pub async fn wait( handle: Arc, retry::Standard>>, input: HeadBucketInput,\n) -> Result> { loop { let operation = input .make_operation(&handle.conf) .await .map_err(|err| { aws_smithy_http::result::SdkError::ConstructionFailure(err.into()) })?; // Assume `ClassifyRetry` trait is implemented for `NeverRetry` to always return `RetryKind::Unnecessary` let operation = operation.with_retry_classifier(NeverRetry::new()); let result = handle.client.call(operation).await; match classify_result(&input, result) { AcceptorState::Retry => { // The sleep implementation is available here from `handle.conf.sleep_impl` unimplemented!(\"Check if another attempt should be made and calculate delay time if so\") } AcceptorState::Terminate(output) => return output, } }\n} fn classify_result( input: &HeadBucketInput, result: Result>,\n) -> AcceptorState> { unimplemented!( \"The Smithy model would dictate conditions to check here to produce an `AcceptorState`\" )\n} The retry delay time should be calculated by the same exponential backoff with jitter code that the default RetryHandler uses in aws-smithy-client . This function will need to be split up and made available to the waiter implementations so that just the delay can be calculated.","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter Implementation","id":"175","title":"Waiter Implementation"},"176":{"body":"Codegen fluent builders for waiter input and their send() functions Codegen waiter invocation traits Commonize exponential backoff with jitter delay calculation Codegen wait() functions with delay and max attempts configuration from Smithy model Codegen classify_result() functions based on JMESPath expressions in Smithy model","breadcrumbs":"RFCs » RFC-0010: Waiters » Changes Checklist","id":"176","title":"Changes Checklist"},"177":{"body":"Status: Implemented The AWS SDK for Rust and its supporting Smithy crates need to be published to crates.io so that customers can include them in their projects and also publish crates of their own that depend on them. This doc proposes a short-term solution for publishing to crates.io. This approach is intended to be executed manually by a developer using scripts and an SOP no more than once per week, and should require less than a dev week to implement.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » RFC: Publishing the Alpha SDK to Crates.io","id":"177","title":"RFC: Publishing the Alpha SDK to Crates.io"},"178":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Terminology","id":"178","title":"Terminology"},"179":{"body":"","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Requirements","id":"179","title":"Requirements"},"18":{"body":"The Smithy code generator for Rust (and by extension), the AWS SDK use an Operation abstraction to provide a unified interface for dispatching requests. Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler In the typical case, these configuration options include things like a CredentialsProvider, however, they can also be full middleware layers that will get added by the dispatch stack.","breadcrumbs":"Transport » HTTP Operations » HTTP-based Operations","id":"18","title":"HTTP-based Operations"},"180":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) For now, AWS SDK crates (including aws-config) will maintain a consistent major and minor version number across all services. The latest version of aws-sdk-s3 will always have the same major.minor version as the latest aws-sdk-dynamodb, for example. The patch version is allowed to be different between service crates, but it is unlikely that we will make use of patch versions throughout alpha and dev preview. Smithy runtime crates will have different version numbers from the AWS SDK crates, but will also maintain a consistent major.minor. The pre version tag will be alpha during the Rust SDK alpha, and will be removed once the SDK is in dev preview. During alpha, the major version will always be 0, and the minor will be bumped for all published crates for every release. A later RFC may change the process during dev preview.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Versioning","id":"180","title":"Versioning"},"181":{"body":"Mistakes will inevitably be made, and a mechanism is needed to yank packages while keeping the latest version of the SDK successfully consumable from crates.io. To keep this simple, the entire published batch of crates will be yanked if any crate in that batch needs to be yanked. For example, if 260 crates were published in a batch, and it turns out there's a problem that requires yanking one of them, then all 260 will be yanked. Attempting to do partial yanking will require a lot of effort and be difficult to get right. Yanking should be a last resort.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Yanking","id":"181","title":"Yanking"},"182":{"body":"The following changes will be bundled together as a minor version bump during weekly releases: AWS model updates New features Bug fixes in runtime crates or codegen In exceptional circumstances, a patch version will be issued if the fix doesn't require API breaking changes: CVE discovered in a runtime crate Buggy update to a runtime crate In the event of a CVE being discovered in an external dependency, if the external dependency is internal to a crate, then a patch revision can be issued for that crate to correct it. Otherwise if the CVE is in a dependency that is part of the public API, a minor revision will be issued with an expedited release. For a CVE in generated code, a minor revision will be issued with an expedited release.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Concrete Scenarios","id":"182","title":"Concrete Scenarios"},"183":{"body":"The short-term approach builds off our pre-crates.io weekly release process. That process was the following: Run script to update AWS models Manually update AWS SDK version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for GitHub actions to generate AWS SDK using newly released smithy-rs Check out aws-sdk-rust, delete existing SDK code, unzip generated SDK in place, and update readme Tag aws-sdk-rust To keep things simple: The Smithy runtime crates will have the same smithy-rs version All AWS crates will have the same AWS SDK version patch revisions are exceptional and will be one-off manually published by a developer All runtime crate version numbers in smithy-rs will be locked at 0.0.0-smithy-rs-head. This is a fake version number that gets replaced when generating the SDK. The SDK generator script in smithy-rs will be updated to: Replace Smithy runtime crate versions with the smithy-rs version from aws/sdk/gradle.properties Replace AWS runtime crate versions with AWS SDK version from aws/sdk/gradle.properties Add correct version numbers to all path dependencies in all the final crates that end up in the build artifacts This will result in all the crates having the correct version and manifests when imported into aws-sdk-rust. From there, a script needs to be written to determine crate dependency order, and publish crates (preferably with throttling and retry) in the correct order. This script needs to be able to recover from an interruption part way through publishing all the crates, and it also needs to output a list of all crate versions published together. This crate list will be commented on the release issue so that yanking the batch can be done if necessary. The new release process would be: Run script to update AWS models Manually update both the AWS SDK version and the smithy-rs version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for automation to sync changes to aws-sdk-rust/next Cut a PR to merge aws-sdk-rust/next into aws-sdk-rust/main Tag aws-sdk-rust Run publish script","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Proposal","id":"183","title":"Proposal"},"184":{"body":"Prepare runtime crate manifests for publication to crates.io (https://github.com/awslabs/smithy-rs/pull/755) Update SDK generator to set correct crate versions (https://github.com/awslabs/smithy-rs/pull/755) Write bulk publish script Write bulk yank script Write automation to sync smithy-rs to aws-sdk-rust","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Short-term Changes Checklist","id":"184","title":"Short-term Changes Checklist"},"185":{"body":"Status: RFC During its alpha and dev preview releases, the AWS SDK for Rust adopted a short-term solution for versioning and publishing to crates.io . This doc proposes a long-term versioning strategy that will carry the SDK from dev preview into general availability. This strategy will be implemented in two phases: Dev Preview : The SDK will break with its current version strategy of maintaining consistent major.minor version numbers. Stability and 1.x : This phase begins when the SDK becomes generally available. The major version will be bumped to 1, and backwards breaking changes will no longer be allowed without a major version bump to all crates in the SDK.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » RFC: Independent Crate Versioning","id":"185","title":"RFC: Independent Crate Versioning"},"186":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Terminology","id":"186","title":"Terminology"},"187":{"body":"","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Requirements","id":"187","title":"Requirements"},"188":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) In the new versioning strategy, the minor version number will no longer be coordinated across all SDK and Smithy runtime crates. During phases 1 and 2, the major version will always be 0, and the following scheme will be used: minor: New features Breaking changes Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3: major: Breaking changes minor: Changes that aren't breaking Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3, bumps to the major version must be coordinated across all SDK and runtime crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning","id":"188","title":"Versioning"},"189":{"body":"Since there will no longer be one SDK \"version\", release tags will be dates in YYYY-MM-DD format rather than version numbers. Additionally, the SDK's user agent string will need to include a separate service version number (this requirement has already been implemented).","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Release Identification","id":"189","title":"Release Identification"},"19":{"body":"This section details the flow of a request through the SDK until a response is returned to the user.","breadcrumbs":"Transport » HTTP Operations » Operation Phases","id":"19","title":"Operation Phases"},"190":{"body":"It must be possible to yank an entire release with a single action. The publisher tool must be updated to understand which crate versions were released with a given release tag, and be able to yank all the crates published from that tag.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"190","title":"Yanking"},"191":{"body":"Phase 1 will address the following challenges introduced by uncoordinating the major.minor versions: Tracking of versions associated with a release tag Creation of version bump process for code generated crates Enforcement of version bump process in runtime crates Yanking of versions associated with a release tag","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 1: Dev Preview","id":"191","title":"Phase 1: Dev Preview"},"192":{"body":"A new manifest file will be introduced in the root of aws-sdk-rust named versions.toml that describes all versioning information for any given commit in the repository. In the main branch, the versions.toml in tagged commits will become the source of truth for which crate versions belong to that release, as well as additional metadata that's required for maintaining version process in the future. The special 0.0.0-smithy-rs-head version that is used prior to Phase 1 for maintaining the runtime crate versions will no longer be used (as detailed in Versioning for Runtime Crates ). This format will look as follows: smithy_rs_version = \"\" [aws-smithy-types]\nversion = \"0.50.1\" [aws-config]\nversion = \"0.40.0\" [aws-sdk-s3]\nversion = \"0.89.0\"\nmodel_hash = \"\" # ... The auto-sync tool is responsible for maintaining this file. When it generates a new SDK, it will take the version numbers from runtime crates directly, and it will use the rules from the next section to determine the version numbers for the generated crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Version Tracking","id":"192","title":"Version Tracking"},"193":{"body":"Code generated crates will have their minor version bumped when the version of smithy-rs used to generate them changes, or when model updates with API changes are made. Three pieces of information are required to handle this process: the previously released version number, the smithy-rs version used to generate the code, and the level of model updates being applied. For this last one, if there are multiple model updates that affect only documentation, but then one model update that affects an API, then as a whole they will be considered as affecting an API and require a minor version bump. The previously released version number will be retrieved from crates.io using its API. The smithy-rs version used during code generation will become a build artifact that is saved to versions.toml in aws-sdk-rust . During phase 1, the tooling required to know if a model is a documentation-only change will not be available, so all model changes will result in a minor version bump during this phase. Overall, determining a generated crate's version number looks as follows: flowchart TD start[Generate crate version] --> smithyrschanged{A. smithy-rs changed?} smithyrschanged -- Yes --> minor1[Minor version bump] smithyrschanged -- No --> modelchanged{B. model changed?} modelchanged -- Yes --> minor2[Minor version bump] modelchanged -- No --> keep[Keep current version] A: smithy-rs changed? : Compare the smithy_rs_version in the previous versions.toml with the next versions.toml file, and if the values are different, consider smithy-rs to have changed. B: model changed? : Similarly, compare the model_hash for the crate in versions.toml.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Code Generated (SDK Service) Crates","id":"193","title":"Versioning for Code Generated (SDK Service) Crates"},"194":{"body":"The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with a build step to replace those with a consistent major.minor will be removed. These runtime crates will begin having their actual next version number in the Cargo.toml file in smithy-rs. This introduces a new problem where a developer can forget to bump a runtime crate version, so a method of process enforcement needs to be introduced. This will be done through CI when merging into smithy-rs/main and repeated when merging into aws-sdk-rust/main. The following checks need to be run for runtime crates: flowchart TD A[Check runtime crate] --> B{A. Crate has changed?} B -- Yes --> C{B. Minor bumped?} B -- No --> H{C. Version changed?} C -- Yes --> K[Pass] C -- No --> E{D. Patch bumped?} E -- Yes --> F{E. Semverver passes?} E -- No --> L[Fail] F -- Yes --> D[Pass] F -- No --> G[Fail] H -- Yes --> I[Fail] H -- No --> J[Pass] A: Crate has changed? The crate's source files and manifest will be hashed for the previous version and the next version. If these hashes match, then the crate is considered unchanged. B: Minor bumped? The previous version is compared against the next version to see if the minor version number was bumped. C: Version changed? The previous version is compared against the next version to see if it changed. D: Patch bumped? The previous version is compared against the next version to see if the patch version number was bumped. E: Semverver passes? Runs rust-semverver against the old and new versions of the crate. If semverver fails to run (for example, if it needs to be updated to the latest nightly to succeed), then fail CI saying that either semverver needs maintenance, or that a minor version bump is required. If semverver results in errors, fail CI indicating a minor version bump is required. If semverver passes, then pass CI. When running semverver, the path dependencies of the crate under examination should be updated to be crates.io references if there were no changes in those crates since the last public to crates.io. Otherwise, the types referenced from those crates in the public API will always result in breaking changes since, as far as the Rust compiler is concerned, they are different types originating from separate path-dependency crates. For CI, the aws-sdk-rust/main branch's versions.toml file is the source of truth for the previous release's crate versions and source code.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Runtime Crates","id":"194","title":"Versioning for Runtime Crates"},"195":{"body":"The publisher tool will be updated to read the versions.toml to yank all versions published in a release. This process will look as follows: Take a path to a local clone of the aws-sdk-rust repository Confirm the working tree is currently unmodified and on a release tag. Read versions.toml and print out summary of crates to yank Confirm with user before proceeding Yank crates","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"195","title":"Yanking"},"196":{"body":"Update rust-semverver to a newer nightly that can compile aws-smithy-client Establish initial versions.toml in aws-sdk-rust/main Set version numbers in runtime crates in smithy-rs Update the auto-sync tool to generate versions.toml Create CI tool to check runtime crate version Integrate with smithy-rs/main CI Integrate with aws-sdk-rust/main CI Update CI to verify no older runtime crates are used. For example, if aws-smithy-client is bumped to 0.50.0, then verify no crates (generated or runtime) depend on 0.49.0 or lower. Estimate: 2-4 dev weeks","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Changes Checklist","id":"196","title":"Changes Checklist"},"197":{"body":"When stabilizing to 1.x, the version process will stay the same, but the minor version bumps caused by version bumping runtime crates, updating models, or changing the code generator will be candidate for automatic upgrade per semver. At that point, no further API breaking changes can be made without a major version bump.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 2: Stability and 1.x","id":"197","title":"Phase 2: Stability and 1.x"},"198":{"body":"Status: RFC Adding a callback API to ByteStream and SdkBody will enable developers using the SDK to implement things like checksum validations and 'read progress' callbacks.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » RFC: Callback APIs for ByteStream and SdkBody","id":"198","title":"RFC: Callback APIs for ByteStream and SdkBody"},"199":{"body":"Note that comments starting with '//' are not necessarily going to be included in the actual implementation and are intended as clarifying comments for the purposes of this RFC. // in aws_smithy_http::callbacks... /// A callback that, when inserted into a request body, will be called for corresponding lifecycle events.\ntrait BodyCallback: Send { /// This lifecycle function is called for each chunk **successfully** read. If an error occurs while reading a chunk, /// this method will not be called. This method takes `&mut self` so that implementors may modify an implementing /// struct/enum's internal state. Implementors may return an error. fn update(&mut self, #[allow(unused_variables)] bytes: &[u8]) -> Result<(), BoxError> { Ok(()) } /// This callback is called once all chunks have been read. If the callback encountered one or more errors /// while running `update`s, this is how those errors are raised. Implementors may return a [`HeaderMap`][HeaderMap] /// that will be appended to the HTTP body as a trailer. This is only useful to do for streaming requests. fn trailers(&self) -> Result>, BoxError> { Ok(None) } /// Create a new `BodyCallback` from an existing one. This is called when a `BodyCallback` needs to be /// re-initialized with default state. For example: when a request has a body that needs to be /// rebuilt, all callbacks for that body need to be run again but with a fresh internal state. fn make_new(&self) -> Box;\n} impl BodyCallback for Box { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { BodyCallback::update(self, bytes) } fn trailers(&self) -> Result>, BoxError> { BodyCallback::trailers(self) } fn make_new(&self) -> Box { BodyCallback::make_new(self) }\n} The changes we need to make to ByteStream: (The current version of ByteStream and Inner can be seen here .) // in `aws_smithy_http::byte_stream`... // We add a new method to `ByteStream` for inserting callbacks\nimpl ByteStream { // ...other impls omitted // A \"builder-style\" method for setting callbacks pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.inner.with_body_callback(body_callback); self }\n} impl Inner { // `Inner` wraps an `SdkBody` which has a \"builder-style\" function for adding callbacks. pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.body.with_body_callback(body_callback); self }\n} The changes we need to make to SdkBody: (The current version of SdkBody can be seen here .) // In aws_smithy_http::body... #[pin_project]\npub struct SdkBody { #[pin] inner: Inner, rebuild: Option Inner) + Send + Sync>>, // We add a `Vec` to store the callbacks #[pin] callbacks: Vec>,\n} impl SdkBody { // We update the various fns that create `SdkBody`s to create an empty `Vec` to store callbacks. // Those updates are very simple so I've omitted them from this code example. fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let mut this = self.project(); // This block is old. I've included for context. let polling_result = match this.inner.project() { InnerProj::Once(ref mut opt) => { let data = opt.take(); match data { Some(bytes) if bytes.is_empty() => Poll::Ready(None), Some(bytes) => Poll::Ready(Some(Ok(bytes))), None => Poll::Ready(None), } } InnerProj::Streaming(body) => body.poll_data(cx).map_err(|e| e.into()), InnerProj::Dyn(box_body) => box_body.poll_data(cx), InnerProj::Taken => { Poll::Ready(Some(Err(\"A `Taken` body should never be polled\".into()))) } }; // This block is new. match &polling_result { // When we get some bytes back from polling, pass those bytes to each callback in turn Poll::Ready(Some(Ok(bytes))) => { for callback in this.callbacks.iter_mut() { // Callbacks can run into errors when reading bytes. They'll be surfaced here callback.update(bytes)?; } } // When we're done polling for bytes, run each callback's `trailers()` method. If any calls to // `trailers()` return an error, propagate that error up. Otherwise, continue. Poll::Ready(None) => { for callback_result in this.callbacks.iter().map(BodyCallback::trailers) { if let Err(e) = callback_result { return Poll::Ready(Some(Err(e))); } } } _ => (), } // Now that we've inspected the polling result, all that's left to do is to return it. polling_result } // This function now has the added responsibility of cloning callback functions (but with fresh state) // in the case that the `SdkBody` needs to be rebuilt. pub fn try_clone(&self) -> Option { self.rebuild.as_ref().map(|rebuild| { let next = rebuild(); let callbacks = self .callbacks .iter() .map(Callback::make_new) .collect(); Self { inner: next, rebuild: self.rebuild.clone(), callbacks, } }) } pub fn with_callback(&mut self, callback: BodyCallback) -> &mut Self { self.callbacks.push(callback); self }\n} /// Given two [`HeaderMap`][HeaderMap]s, merge them together and return the merged `HeaderMap`. If the\n/// two `HeaderMap`s share any keys, values from the right `HeaderMap` be appended to the left `HeaderMap`.\n///\n/// # Example\n///\n/// ```rust\n/// let header_name = HeaderName::from_static(\"some_key\");\n///\n/// let mut left_hand_side_headers = HeaderMap::new();\n/// left_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"lhs value\").unwrap(),\n/// );\n///\n/// let mut right_hand_side_headers = HeaderMap::new();\n/// right_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"rhs value\").unwrap(),\n/// );\n///\n/// let merged_header_map =\n/// append_merge_header_maps(left_hand_side_headers, right_hand_side_headers);\n/// let merged_values: Vec<_> = merged_header_map\n/// .get_all(header_name.clone())\n/// .into_iter()\n/// .collect();\n///\n/// // Will print 'some_key: [\"lhs value\", \"rhs value\"]'\n/// println!(\"{}: {:?}\", header_name.as_str(), merged_values);\n/// ```\nfn append_merge_header_maps( mut lhs: HeaderMap, rhs: HeaderMap,\n) -> HeaderMap { let mut last_header_name_seen = None; for (header_name, header_value) in rhs.into_iter() { // For each yielded item that has None provided for the `HeaderName`, // then the associated header name is the same as that of the previously // yielded item. The first yielded item will have `HeaderName` set. // https://docs.rs/http/latest/http/header/struct.HeaderMap.html#method.into_iter-2 match (&mut last_header_name_seen, header_name) { (_, Some(header_name)) => { lhs.append(header_name.clone(), header_value); last_header_name_seen = Some(header_name); } (Some(header_name), None) => { lhs.append(header_name.clone(), header_value); } (None, None) => unreachable!(), }; } lhs\n} impl http_body::Body for SdkBody { // The other methods have been omitted because they haven't changed fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let header_map = self .callbacks .iter() .filter_map(|callback| { match callback.trailers() { Ok(optional_header_map) => optional_header_map, // early return if a callback encountered an error Err(e) => { return e }, } }) // Merge any `HeaderMap`s from the last step together, one by one. .reduce(append_merge_header_maps); Poll::Ready(Ok(header_map)) }\n}","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » The Implementation","id":"199","title":"The Implementation"},"2":{"body":"The Rust SDK is \"modular\" meaning that each AWS service is its own crate. Each crate provides two layers to access the service: The \"fluent\" API. For most use cases, a high level API that ties together connection management and serialization will be the quickest path to success. #[tokio::main]\nasync fn main() { let client = dynamodb::Client::from_env(); let tables = client .list_tables() .limit(10) .send() .await.expect(\"failed to load tables\");\n} The \"low-level\" API: It is also possible for customers to assemble the pieces themselves. This offers more control over operation construction & dispatch semantics: #[tokio::main]\nasync fn main() { let conf = dynamodb::Config::builder().build(); let conn = aws_hyper::Client::https(); let operation = dynamodb::ListTables::builder() .limit(10) .build(&conf) .expect(\"invalid operation\"); let tables = conn.call(operation).await.expect(\"failed to list tables\");\n} The Fluent API is implemented as a thin wrapper around the core API to improve ergonomics.","breadcrumbs":"Design Overview » External API Overview","id":"2","title":"External API Overview"},"20":{"body":"A customer interacts with the SDK builders to construct an input. The build() method on an input returns an Operation. This codifies the base HTTP request & all the configuration and middleware layers required to modify and dispatch the request. pub struct Operation { request: Request, response_handler: H, _retry_policy: R,\n} pub struct Request { inner: http::Request, properties: PropertyBag,\n} For most requests, .build() will NOT consume the input. A user can call .build() multiple times to produce multiple operations from the same input. By using a property bag, we can define the Operation in Smithy core. AWS specific configuration can be added later in the stack.","breadcrumbs":"Transport » HTTP Operations » Input Construction","id":"20","title":"Input Construction"},"200":{"body":"What follows is a simplified example of how this API could be used to introduce checksum validation for outgoing request payloads. In this example, the checksum calculation is fallible and no validation takes place. All it does it calculate the checksum of some data and then returns the checksum of that data when trailers is called. This is fine because it's being used to calculate the checksum of a streaming body for a request. #[derive(Default)]\nstruct Crc32cChecksumCallback { state: Option,\n} impl ReadCallback for Crc32cChecksumCallback { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => { self.state = Some(crc32c_append(crc, bytes)) } None => { Some(crc32c(&bytes)) } }; Ok(()) } fn trailers(&self) -> Result>, Box> { let mut header_map = HeaderMap::new(); // This checksum name is an Amazon standard and would be a `const` in the real implementation let key = HeaderName::from_static(\"x-amz-checksum-crc32c\"); // If no data was provided to this callback and no CRC was ever calculated, we return zero as the checksum. let crc = self.state.unwrap_or_default(); // Convert the CRC to a string, base 64 encode it, and then convert it into a `HeaderValue`. let value = HeaderValue::from_str(&base64::encode(crc.to_string())).expect(\"base64 will always produce valid header values\"); header_map.insert(key, value); Some(header_map) } fn make_new(&self) -> Box { Box::new(Crc32cChecksumCallback::default()) }\n} NOTE: If Crc32cChecksumCallback needed to validate a response, then we could modify it to check its internal state against a target checksum value and calling trailers would produce an error if the values didn't match. In order to use this in a request, we'd modify codegen for that request's service. We'd check if the user had requested validation and also check if they'd pre-calculated a checksum. If validation was requested but no pre-calculated checksum was given, we'd create a callback similar to the one above Then, we'd create a new checksum callback and: (if streaming) we'd set the checksum callback on the request body object (if non-streaming) we'd immediately read the body and call BodyCallback::update manually. Once all data was read, we'd get the checksum by calling trailers and insert that data as a request header.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » Implementing Checksums","id":"200","title":"Implementing Checksums"},"201":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. While it is currently possible for users to implement request timeouts by racing operation send futures against timeout futures, this RFC proposes a more ergonomic solution that would also enable users to set timeouts for things like TLS negotiation and \"time to first byte\".","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » RFC: Fine-grained timeout configuration","id":"201","title":"RFC: Fine-grained timeout configuration"},"202":{"body":"There's a lot of terminology to define, so I've broken it up into three sections.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Terminology","id":"202","title":"Terminology"},"203":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. In this case, \"service\" refers to an AWS offering like S3.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » General terms","id":"203","title":"General terms"},"204":{"body":"Service : A trait defined in the tower-service crate . The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Layer : Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code. Middleware : a term with several meanings, Generically speaking, middleware are similar to Services and Layers in that they modify requests and responses. In the SDK, \"Middleware\" refers to a layer that can be wrapped around a DispatchService. In practice, this means that the resulting Service (and the inner service) must meet the bound T: where T: Service. Note: This doesn't apply to the middlewares we use when generating presigned request because those don't wrap a DispatchService. The most notable example of a Middleware is the AwsMiddleware . Other notable examples include MapRequest , AsyncMapRequest , and ParseResponse . DispatchService : The innermost part of a group of nested services. The Service that actually makes an HTTP call on behalf of a request. Responsible for parsing success and error responses. Connector : a term with several meanings, DynConnectors (a struct that implements DynConnect ) are Services with their specific type erased so that we can do dynamic dispatch. A term from hyper for any object that implements the Connect trait. Really just an alias for tower_service::Service . Sometimes referred to as a Connection. Stage : A form of middleware that's not related to tower. These currently function as a way of transforming requests and don't have the ability to transform responses. Stack : higher order abstraction over Layers defined in the tower crate e.g. Layers wrap services in one another and Stacks wrap layers within one another.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » HTTP stack terms","id":"204","title":"HTTP stack terms"},"205":{"body":"Connect Timeout : A limit on the amount of time after making an initial connect attempt on a socket to complete the connect-handshake. TODO: the runtime is based on Hyper which reuses connection and doesn't currently have a way of guaranteeing that a fresh connection will be use for a given request. TLS Negotiation Timeout : A limit on the amount of time a TLS handshake takes from when the CLIENT HELLO message is sent to the time the client and server have fully negotiated ciphers and exchanged keys. Time to First Byte Timeout : Sometimes referred to as a \"read timeout.\" A limit on the amount of time an application takes to attempt to read the first byte over an established, open connection after write request. HTTP Request Timeout For A Single Attempt : A limit on the amount of time it takes for the first byte to be sent over an established, open connection and when the last byte is received from the service. HTTP Request Timeout For Multiple Attempts : This timeout acts like the previous timeout but constrains the total time it takes to make a request plus any retries. NOTE: In a way, this is already possible in that users are free to race requests against timer futures with the futures::future::select macro or to use tokio::time::timeout . See relevant discussion in hyper#1097","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Timeout terms","id":"205","title":"Timeout terms"},"206":{"body":"Just like with Retry Behavior Configuration , these settings can be configured in several places and have the same precedence rules (paraphrased here for clarity) . Service-specific config builders Shared config builders Environment variables Profile config file (e.g., ~/.aws/credentials) The above list is in order of decreasing precedence e.g. configuration set in an app will override values from environment variables.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuring timeouts","id":"206","title":"Configuring timeouts"},"207":{"body":"The table below details the specific ways each timeout can be configured. In all cases, valid values are non-negative floats representing the number of seconds before a timeout is triggered. Timeout Environment Variable AWS Config Variable Builder Method Connect AWS_CONNECT_TIMEOUT connect_timeout connect_timeout TLS Negotiation AWS_TLS_NEGOTIATION_TIMEOUT tls_negotiation_timeout tls_negotiation_timeout Time To First Byte AWS_READ_TIMEOUT read_timeout read_timeout HTTP Request - single attempt AWS_API_CALL_ATTEMPT_TIMEOUT api_call_attempt_timeout api_call_attempt_timeout HTTP Request - all attempts AWS_API_CALL_TIMEOUT api_call_timeout api_call_timeout","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuration options","id":"207","title":"Configuration options"},"208":{"body":"QUESTION: How does the SDK currently handle these defaults?","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » SDK-specific defaults set by AWS service teams","id":"208","title":"SDK-specific defaults set by AWS service teams"},"209":{"body":"hjr3/hyper-timeout is a Connector for hyper that enables setting connect, read, and write timeouts sfackler/tokio-io-timeout provides timeouts for tokio IO operations. Used within hyper-timeout. [tokio::time::sleep_until] creates a Future that completes after some time has elapsed. Used within tokio-io-timeout.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Prior Art","id":"209","title":"Prior Art"},"21":{"body":"In order to construct an operation, the generated code injects appropriate middleware & configuration via the configuration property bag. It does this by reading the configuration properties out of the service config, copying them as necessary, and loading them into the Request: // This is approximately the generated code, I've cleaned a few things up for readability.\npub fn build(self, config: &dynamodb::config::Config) -> Operation { let op = BatchExecuteStatement::new(BatchExecuteStatementInput { statements: self.statements, }); let req = op.build_http_request().map(SdkBody::from); let mut req = operation::Request::new(req); let mut props = req.properties_mut(); props.insert_signing_config(config.signing_service()); props.insert_endpoint_resolver(config.endpoint_resolver.clone()); Operation::new(req)\n}","breadcrumbs":"Transport » HTTP Operations » Operation Construction","id":"21","title":"Operation Construction"},"210":{"body":"Timeouts are achieved by racing a future against a tokio::time::Sleep future. The question, then, is \"how can I create a future that represents a condition I want to watch for?\". For example, in the case of a ConnectTimeout, how do we watch an ongoing request to see if it's completed the connect-handshake? Our current stack of Middleware acts on requests at different levels of granularity. The timeout Middlewares will be no different.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Behind the scenes","id":"210","title":"Behind the scenes"},"211":{"body":"View AwsMiddleware in GitHub #[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsMiddleware;\nimpl tower::Layer for AwsMiddleware { type Service = >::Service; fn layer(&self, inner: S) -> Self::Service { let credential_provider = AsyncMapRequestLayer::for_mapper(CredentialsStage::new()); let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); let endpoint_resolver = MapRequestLayer::for_mapper(AwsAuthStage); let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); ServiceBuilder::new() .layer(endpoint_resolver) .layer(user_agent) .layer(credential_provider) .layer(signer) .service(inner) }\n} The above code is only included for context. This RFC doesn't define any timeouts specific to AWS so AwsMiddleware won't require any changes.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for AWS Client requests","id":"211","title":"Middlewares for AWS Client requests"},"212":{"body":"View aws_smithy_client::Client::call_raw in GitHub impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let mut svc = ServiceBuilder::new() // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} The Smithy Client creates a new Stack of services to handle each request it sends. Specifically: A method retry is used set the retry handler. The configuration for this was set during creation of the Client. ParseResponseLayer inserts a service for transforming responses into operation-specific outputs or errors. The O generic parameter of input is what decides exactly how the transformation is implemented. A middleware stack that was included during Client creation is inserted into the stack. In the case of the AWS SDK, this would be AwsMiddleware. DispatchLayer inserts a service for transforming an http::Request into an operation::Request. It's also responsible for re-attaching the property bag from the Operation that triggered the request. The innermost Service is a DynConnector wrapping a hyper client (which one depends on the TLS implementation was enabled by cargo features.) The HTTP Request Timeout For A Single Attempt and HTTP Request Timeout For Multiple Attempts can be implemented at this level. The same Layer can be used to create both TimeoutServices. The TimeoutLayer would require two inputs: sleep_fn: A runtime-specific implementation of sleep. The SDK is currently tokio-based and would default to tokio::time::sleep (this default is set in the aws_smithy_async::rt::sleep module.) The duration of the timeout as a std::time::Duration The resulting code would look like this: impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let sleep_fn = aws_smithy_async::rt::sleep::default_async_sleep(); let mut svc = ServiceBuilder::new() .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_timeout(), )) // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_attempt_timeout(), )) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} Note: Our HTTP client supports multiple TLS implementations. We'll likely have to implement this feature once per library. Timeouts will be implemented in the following places: HTTP request timeout for multiple requests will be implemented as the outermost Layer in Client::call_raw. HTTP request timeout for a single request will be implemented within RetryHandler::retry. Time to first byte, TLS negotiation, and connect timeouts will be implemented within the central hyper connector.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for Smithy Client requests","id":"212","title":"Middlewares for Smithy Client requests"},"213":{"body":"Changes are broken into to sections: HTTP requests (single or multiple) are implementable as layers within our current stack Other timeouts will require changes to our dependencies and may be slower to implement","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Changes checklist","id":"213","title":"Changes checklist"},"214":{"body":"Add TimeoutConfig to smithy-types Add TimeoutConfigProvider to aws-config Add provider that fetches config from environment variables Add provider that fetches config from profile Add timeout method to aws_types::Config for setting timeout configuration Add timeout method to generated Configs too Create a generic TimeoutService and accompanying Layer TimeoutLayer should accept a sleep function so that it doesn't have a hard dependency on tokio insert a TimeoutLayer before the RetryPolicy to handle timeouts for multiple-attempt requests insert a TimeoutLayer after the RetryPolicy to handle timeouts for single-attempt requests Add tests for timeout behavior test multi-request timeout triggers after 3 slow retries test single-request timeout triggers correctly test single-request timeout doesn't trigger if request completes in time","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Implementing HTTP request timeouts","id":"214","title":"Implementing HTTP request timeouts"},"215":{"body":"Status: Accepted","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » RFC: How Cargo \"features\" should be used in the SDK and runtime crates","id":"215","title":"RFC: How Cargo \"features\" should be used in the SDK and runtime crates"},"216":{"body":"What is a feature? Here's a definition from the Cargo Book section on features : Cargo \"features\" provide a mechanism to express conditional compilation and optional dependencies. A package defines a set of named features in the [features] table of Cargo.toml, and each feature can either be enabled or disabled. Features for the package being built can be enabled on the command-line with flags such as --features. Features for dependencies can be enabled in the dependency declaration in Cargo.toml. We use features in a majority of our runtime crates and in all of our SDK crates. For example, aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Some background on features","id":"216","title":"Some background on features"},"217":{"body":"The Cargo book has this to say: When a dependency is used by multiple packages, Cargo will use the union of all features enabled on that dependency when building it. This helps ensure that only a single copy of the dependency is used. A consequence of this is that features should be additive . That is, enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change .","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Features should be additive","id":"217","title":"Features should be additive"},"218":{"body":"Despite the constraints outlined above, we should use features in the SDKs because of the benefits they bring: Features enable users to avoid compiling code that they won't be using. Additionally, features allow both general and specific control of compiled code, serving the needs of both novice and expert users. A single feature in a crate can activate or deactivate multiple features exposed by that crate's dependencies, freeing the user from having to specifically activate or deactivate them. Features can help users understand what a crate is capable of in the same way that looking at a graph of a crate's modules can. When using features, we should adhere to the guidelines outlined below.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » What does this mean for the SDK?","id":"218","title":"What does this mean for the SDK?"},"219":{"body":"As noted earlier in an excerpt from the Cargo book: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change . #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn tls_adapter(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn tls_adapter( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} When the example code above is compiled with both features enabled, compilation will fail with a \"duplicate definitions with name tls_adapter\" error. Also, note that the return type of the function differs between the two versions. This is a SemVer-incompatible change. Here's an updated version of the example that fixes these issues: #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn rustls(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn native_tls( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} Both features can now be enabled at once without creating a conflict. Since both methods have different names, it's now Ok for them to have different return types. This is real code, see it in context","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Avoid writing code that relies on only activating one feature from a set of mutually exclusive features.","id":"219","title":"Avoid writing code that relies on only activating one feature from a set of mutually exclusive features."},"22":{"body":"The Rust SDK endeavors to behave as predictably as possible. This means that if at all possible we will not dispatch extra HTTP requests during the dispatch of normal operation. Making this work is covered in more detail in the design of credentials providers & endpoint resolution. The upshot is that we will always prefer a design where the user has explicit control of when credentials are loaded and endpoints are resolved. This doesn't mean that users can't use easy-to-use options (We will provide an automatically refreshing credentials provider), however, the credential provider won't load requests during the dispatch of an individual request.","breadcrumbs":"Transport » HTTP Operations » Operation Dispatch and Middleware","id":"22","title":"Operation Dispatch and Middleware"},"220":{"body":"At the risk of seeming repetitive, the Cargo book says: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features Conditionally compiling code when a feature is not activated can make it hard for users and maintainers to reason about what will happen when they activate a feature. This is also a sign that a feature may not be \"additive\". NOTE : It's ok to use #[cfg(not())] to conditionally compile code based on a user's OS. It's also useful when controlling what code gets rendered when testing or when generating docs. One case where using not is acceptable is when providing a fallback when no features are set: #[cfg(feature = \"rt-tokio\")]\npub fn default_async_sleep() -> Option> { Some(sleep_tokio())\n} #[cfg(not(feature = \"rt-tokio\"))]\npub fn default_async_sleep() -> Option> { None\n}","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » We should avoid using #[cfg(not(feature = \"some-feature\"))]","id":"220","title":"We should avoid using #[cfg(not(feature = \"some-feature\"))]"},"221":{"body":"Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users. When a default feature providing some functionality is disabled, active features must not automatically replace that functionality As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example . This RFC proposes that we should have a single default for any configurable functionality and that that functionality depends on a corresponding default feature being active. If default-features are disabled, then so is the corresponding default functionality. In its place would be functionality that fails fast with a message describing why it failed (a default was deactivated but the user didn't set a replacement) , and what the user should do to fix it (with links to documentation and examples where necessary) . We should use compile-time errors to communicate failures with users, or panics for cases that can't be evaluated at compile-time. For an example: Say you have a crate with features a, b, c that all provide some version of functionality foo. Feature a is part of default-features. When no-default-features = true but features b and c are active, don't automatically fall back to b or c. Instead, emit an error with a message like this: \"When default features are disabled, you must manually set foo. Features b and c active; You can use one of those. See an example of setting a custom foo here: link-to-docs.amazon.com/setting-foo \"","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Don't default to defining \"default features\"","id":"221","title":"Don't default to defining \"default features\""},"222":{"body":"How to tell what \"features\" are available per crate? How do I 'pass down' feature flags to subdependencies in Cargo? A small selection of feature-related GitHub issues submitted for popular crates The feature preserve_order is not \"purely additive,\" which makes it impossible to use serde_yaml 0.5.0 and clap in the same program cargo features (verbose-errors may be other?) should be additive Mutually exclusive features are present in profiling-procmacros Clang-sys features not additive","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Further reading","id":"222","title":"Further reading"},"223":{"body":"Status: Implemented We can't currently update the S3 SDK because we don't support the new \"Flexible Checksums\" feature. This RFC describes this new feature and details how we should implement it in smithy-rs.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » RFC: Supporting Flexible Checksums","id":"223","title":"RFC: Supporting Flexible Checksums"},"224":{"body":"S3 has previously supported MD5 checksum validation of data. Now, it supports more checksum algorithms like CRC32, CRC32C, SHA-1, and SHA-256. This validation is available when putting objects to S3 and when getting them from S3. For more information, see this AWS News Blog post .","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » What is the \"Flexible Checksums\" feature?","id":"224","title":"What is the \"Flexible Checksums\" feature?"},"225":{"body":"Checksum callbacks were introduced as a result of the acceptance of RFC0013 and this RFC proposes a refactor to those callbacks, as well as several new wrappers for SdkBody that will provide new functionality.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementing Checksums","id":"225","title":"Implementing Checksums"},"226":{"body":"TLDR; This refactor of aws-smithy-checksums: Removes the \"callback\" terminology: As a word, \"callback\" doesn't carry any useful information, and doesn't aid in understanding. Removes support for the BodyCallback API: Instead of adding checksum callbacks to a body, we're going to use a \"body wrapping\" instead. \"Body wrapping\" is demonstrated in the ChecksumBody , AwsChunkedBody , and ChecksumValidatedBody sections. NOTE: This doesn't remove the BodyCallback trait. That will still exist, we just won't use it. Updates terminology to focus on \"headers\" instead of \"trailers\": Because the types we deal with in this module are named for HTTP headers, I chose to use that terminology instead. My hope is that this will be less strange to people reading this code. Adds fn checksum_algorithm_to_checksum_header_name: a function that's used in generated code to set a checksum request header. Adds fn checksum_header_name_to_checksum_algorithm: a function that's used in generated code when creating a checksum-validating response body. Add new checksum-related \"body wrapping\" HTTP body types : These are defined in the body module and will be shown later in this RFC. // In aws-smithy-checksums/src/lib.rs\n//! Checksum calculation and verification callbacks use aws_smithy_types::base64; use bytes::Bytes;\nuse http::header::{HeaderMap, HeaderName, HeaderValue};\nuse sha1::Digest;\nuse std::io::Write; pub mod body; // Valid checksum algorithm names\npub const CRC_32_NAME: &str = \"crc32\";\npub const CRC_32_C_NAME: &str = \"crc32c\";\npub const SHA_1_NAME: &str = \"sha1\";\npub const SHA_256_NAME: &str = \"sha256\"; pub const CRC_32_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32\");\npub const CRC_32_C_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32c\");\npub const SHA_1_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha1\");\npub const SHA_256_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha256\"); // Preserved for compatibility purposes. This should never be used by users, only within smithy-rs\nconst MD5_NAME: &str = \"md5\";\nconst MD5_HEADER_NAME: HeaderName = HeaderName::from_static(\"content-md5\"); /// Given a `&str` representing a checksum algorithm, return the corresponding `HeaderName`\n/// for that checksum algorithm.\npub fn checksum_algorithm_to_checksum_header_name(checksum_algorithm: &str) -> HeaderName { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { CRC_32_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { CRC_32_C_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { SHA_1_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { SHA_256_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { MD5_HEADER_NAME } else { // TODO what's the best way to handle this case? HeaderName::from_static(\"x-amz-checksum-unknown\") }\n} /// Given a `HeaderName` representing a checksum algorithm, return the name of that algorithm\n/// as a `&'static str`.\npub fn checksum_header_name_to_checksum_algorithm( checksum_header_name: &HeaderName,\n) -> &'static str { if checksum_header_name == CRC_32_HEADER_NAME { CRC_32_NAME } else if checksum_header_name == CRC_32_C_HEADER_NAME { CRC_32_C_NAME } else if checksum_header_name == SHA_1_HEADER_NAME { SHA_1_NAME } else if checksum_header_name == SHA_256_HEADER_NAME { SHA_256_NAME } else if checksum_header_name == MD5_HEADER_NAME { MD5_NAME } else { // TODO what's the best way to handle this case? \"unknown-checksum-algorithm\" }\n} /// When a response has to be checksum-verified, we have to check possible headers until we find the\n/// header with the precalculated checksum. Because a service may send back multiple headers, we have\n/// to check them in order based on how fast each checksum is to calculate.\npub const CHECKSUM_HEADERS_IN_PRIORITY_ORDER: [HeaderName; 4] = [ CRC_32_C_HEADER_NAME, CRC_32_HEADER_NAME, SHA_1_HEADER_NAME, SHA_256_HEADER_NAME,\n]; type BoxError = Box; /// Checksum algorithms are use to validate the integrity of data. Structs that implement this trait\n/// can be used as checksum calculators. This trait requires Send + Sync because these checksums are\n/// often used in a threaded context.\npub trait Checksum: Send + Sync { /// Given a slice of bytes, update this checksum's internal state. fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError>; /// Either return this checksum as a `HeaderMap` containing one HTTP header, or return an error /// describing why checksum calculation failed. fn headers(&self) -> Result>, BoxError>; /// Return the `HeaderName` used to represent this checksum algorithm fn header_name(&self) -> HeaderName; /// \"Finalize\" this checksum, returning the calculated value as `Bytes` or an error that /// occurred during checksum calculation. To print this value in a human-readable hexadecimal /// format, you can print it using Rust's builtin [formatter]. /// /// _**NOTE:** typically, \"finalizing\" a checksum in Rust will take ownership of the checksum /// struct. In this method, we clone the checksum's state before finalizing because checksums /// may be used in a situation where taking ownership is not possible._ /// /// [formatter]: https://doc.rust-lang.org/std/fmt/trait.UpperHex.html fn finalize(&self) -> Result; /// Return the size of this checksum algorithms resulting checksum, in bytes. For example, the /// CRC32 checksum algorithm calculates a 32 bit checksum, so a CRC32 checksum struct /// implementing this trait method would return 4. fn size(&self) -> u64;\n} /// Create a new `Box` from an algorithm name. Valid algorithm names are defined as\n/// `const`s in this module.\npub fn new_checksum(checksum_algorithm: &str) -> Box { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { Box::new(Crc32::default()) } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { Box::new(Crc32c::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { Box::new(Sha1::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { Box::new(Sha256::default()) } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { // It's possible to create an MD5 and we do this in some situations for compatibility. // We deliberately hide this from users so that they don't go using it. Box::new(Md5::default()) } else { panic!(\"unsupported checksum algorithm '{}'\", checksum_algorithm) }\n} #[derive(Debug, Default)]\nstruct Crc32 { hasher: crc32fast::Hasher,\n} impl Crc32 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.update(bytes); Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.hasher.clone().finalize().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32 checksum\") }\n} impl Checksum for Crc32 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Crc32c { state: Option,\n} impl Crc32c { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => Some(crc32c::crc32c_append(crc, bytes)), None => Some(crc32c::crc32c(bytes)), }; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.state.unwrap_or_default().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_C_HEADER_NAME } fn header_value(&self) -> HeaderValue { // If no data was provided to this callback and no CRC was ever calculated, return zero as the checksum. let hash = self.state.unwrap_or_default(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32C checksum\") }\n} impl Checksum for Crc32c { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha1 { hasher: sha1::Sha1,\n} impl Sha1 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 20 } fn header_name() -> HeaderName { SHA_1_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-1 checksum\") }\n} impl Checksum for Sha1 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha256 { hasher: sha2::Sha256,\n} impl Sha256 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 32 } fn header_name() -> HeaderName { SHA_256_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-256 checksum\") }\n} impl Checksum for Sha256 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Md5 { hasher: md5::Md5,\n} impl Md5 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 16 } fn header_name() -> HeaderName { MD5_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from an MD5 checksum\") }\n} impl Checksum for Md5 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} // We have existing tests for the checksums, those don't require an update","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Refactoring aws-smithy-checksums","id":"226","title":"Refactoring aws-smithy-checksums"},"227":{"body":"When creating a checksum-validated request with an in-memory request body, we can read the body, calculate a checksum, and insert the checksum header, all before sending the request. When creating a checksum-validated request with a streaming request body, we don't have that luxury. Instead, we must calculate a checksum while sending the body, and append that checksum as a trailer . We will accomplish this by wrapping the SdkBody that requires validation within a ChecksumBody. Afterwards, we'll need to wrap the ChecksumBody in yet another layer which we'll discuss in the AwsChunkedBody and AwsChunkedBodyOptions section. // In aws-smithy-checksums/src/body.rs\nuse crate::{new_checksum, Checksum}; use aws_smithy_http::body::SdkBody;\nuse aws_smithy_http::header::append_merge_header_maps;\nuse aws_smithy_types::base64; use bytes::{Buf, Bytes};\nuse http::header::HeaderName;\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::fmt::Display;\nuse std::pin::Pin;\nuse std::task::{Context, Poll}; /// A `ChecksumBody` will read and calculate a request body as it's being sent. Once the body has\n/// been completely read, it'll append a trailer with the calculated checksum.\n#[pin_project]\npub struct ChecksumBody { #[pin] inner: InnerBody, #[pin] checksum: Box,\n} impl ChecksumBody { /// Given an `SdkBody` and the name of a checksum algorithm as a `&str`, create a new /// `ChecksumBody`. Valid checksum algorithm names are defined in this crate's /// [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, } } /// Return the name of the trailer that will be emitted by this `ChecksumBody` pub fn trailer_name(&self) -> HeaderName { self.checksum.header_name() } /// Calculate and return the sum of the: /// - checksum when base64 encoded /// - trailer name /// - trailer separator /// /// This is necessary for calculating the true size of the request body for certain /// content-encodings. pub fn trailer_length(&self) -> u64 { let trailer_name_size_in_bytes = self.checksum.header_name().as_str().len() as u64; let base64_encoded_checksum_size_in_bytes = base64::encoded_length(self.checksum.size()); (trailer_name_size_in_bytes // HTTP trailer names and values may be separated by either a single colon or a single // colon and a whitespace. In the AWS Rust SDK, we use a single colon. + \":\".len() as u64 + base64_encoded_checksum_size_in_bytes) } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => Poll::Ready(None), Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} impl http_body::Body for ChecksumBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let this = self.project(); match ( this.checksum.headers(), http_body::Body::poll_trailers(this.inner, cx), ) { // If everything is ready, return trailers, merging them if we have more than one map (Ok(outer_trailers), Poll::Ready(Ok(inner_trailers))) => { let trailers = match (outer_trailers, inner_trailers) { // Values from the inner trailer map take precedent over values from the outer map (Some(outer), Some(inner)) => Some(append_merge_header_maps(inner, outer)), // If only one or neither produced trailers, just combine the `Option`s with `or` (outer, inner) => outer.or(inner), }; Poll::Ready(Ok(trailers)) } // If the inner poll is Ok but the outer body's checksum callback encountered an error, // return the error (Err(e), Poll::Ready(Ok(_))) => Poll::Ready(Err(e)), // Otherwise return the result of the inner poll. // It may be pending or it may be ready with an error. (_, inner_poll) => inner_poll, } } fn is_end_stream(&self) -> bool { self.inner.is_end_stream() } fn size_hint(&self) -> SizeHint { let body_size_hint = self.inner.size_hint(); match body_size_hint.exact() { Some(size) => { let checksum_size_hint = self.checksum.size(); SizeHint::with_exact(size + checksum_size_hint) } // TODO is this the right behavior? None => { let checksum_size_hint = self.checksum.size(); let mut summed_size_hint = SizeHint::new(); summed_size_hint.set_lower(body_size_hint.lower() + checksum_size_hint); if let Some(body_size_hint_upper) = body_size_hint.upper() { summed_size_hint.set_upper(body_size_hint_upper + checksum_size_hint); } summed_size_hint } } }\n} // The tests I have written are omitted from this RFC for brevity. The request body checksum calculation and trailer size calculations are all tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumBody","id":"227","title":"ChecksumBody"},"228":{"body":"Users may request checksum validation for response bodies. That capability is provided by ChecksumValidatedBody, which will calculate a checksum as the response body is being read. Once all data has been read, the calculated checksum is compared to a precalculated checksum set during body creation. If the checksums don't match, then the body will emit an error. // In aws-smithy-checksums/src/body.rs\n/// A response body that will calculate a checksum as it is read. If all data is read and the\n/// calculated checksum doesn't match a precalculated checksum, this body will emit an\n/// [asw_smithy_http::body::Error].\n#[pin_project]\npub struct ChecksumValidatedBody { #[pin] inner: InnerBody, #[pin] checksum: Box, precalculated_checksum: Bytes,\n} impl ChecksumValidatedBody { /// Given an `SdkBody`, the name of a checksum algorithm as a `&str`, and a precalculated /// checksum represented as `Bytes`, create a new `ChecksumValidatedBody`. /// Valid checksum algorithm names are defined in this crate's [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str, precalculated_checksum: Bytes) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, precalculated_checksum, } } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } // Once the inner body has stopped returning data, check the checksum // and return an error if it doesn't match. Poll::Ready(None) => { let actual_checksum = { match checksum.finalize() { Ok(checksum) => checksum, Err(err) => { return Poll::Ready(Some(Err(err))); } } }; if *this.precalculated_checksum == actual_checksum { Poll::Ready(None) } else { // So many parens it's starting to look like LISP Poll::Ready(Some(Err(Box::new(Error::checksum_mismatch( this.precalculated_checksum.clone(), actual_checksum, ))))) } } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} /// Errors related to checksum calculation and validation\n#[derive(Debug, Eq, PartialEq)]\n#[non_exhaustive]\npub enum Error { /// The actual checksum didn't match the expected checksum. The checksummed data has been /// altered since the expected checksum was calculated. ChecksumMismatch { expected: Bytes, actual: Bytes },\n} impl Error { /// Given an expected checksum and an actual checksum in `Bytes` form, create a new /// `Error::ChecksumMismatch`. pub fn checksum_mismatch(expected: Bytes, actual: Bytes) -> Self { Self::ChecksumMismatch { expected, actual } }\n} impl Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { match self { Error::ChecksumMismatch { expected, actual } => write!( f, \"body checksum mismatch. expected body checksum to be {:x} but it was {:x}\", expected, actual ), } }\n} impl std::error::Error for Error {} impl http_body::Body for ChecksumValidatedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { self.project().inner.poll_trailers(cx) } // Once the inner body returns true for is_end_stream, we still need to // verify the checksum; Therefore, we always return false here. fn is_end_stream(&self) -> bool { false } fn size_hint(&self) -> SizeHint { self.inner.size_hint() }\n} // The tests I have written are omitted from this RFC for brevity. The response body checksum verification is tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumValidatedBody","id":"228","title":"ChecksumValidatedBody"},"229":{"body":"In order to send a request with checksum trailers, we must use an AWS-specific content encoding called aws-chunked. This encoding requires that we: Divide the original body content into one or more chunks. For our purposes we only ever use one chunk. Append a hexadecimal chunk size header to each chunk. Suffix each chunk with a CRLF (carriage return line feed) . Send a 0 and CRLF to close the original body content section. Send trailers as part of the request body, suffixing each with a CRLF. Send a final CRLF to close the request body. As an example, Sending a regular request body with a SHA-256 checksum would look similar to this: PUT SOMEURL HTTP/1.1\nx-amz-checksum-sha256: ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\nContent-Length: 11\n... Hello world and the aws-chunked version would look like this: PUT SOMEURL HTTP/1.1\nx-amz-trailer: x-amz-checksum-sha256\nx-amz-decoded-content-length: 11\nContent-Encoding: aws-chunked\nContent-Length: 87\n... B\\r\\n\nHello world\\r\\n\n0\\r\\n\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\n\\r\\n NOTES: In the second example, B is the hexadecimal representation of 11. Authorization and other headers are omitted from the examples above for brevity. When using aws-chunked content encoding, S3 requires that we send the x-amz-decoded-content-length with the length of the original body content. This encoding scheme is performed by AwsChunkedBody and configured with AwsChunkedBodyOptions. // In aws-http/src/content_encoding.rs\nuse aws_smithy_checksums::body::ChecksumBody;\nuse aws_smithy_http::body::SdkBody; use bytes::{Buf, Bytes, BytesMut};\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::pin::Pin;\nuse std::task::{Context, Poll}; const CRLF: &str = \"\\r\\n\";\nconst CHUNK_TERMINATOR: &str = \"0\\r\\n\"; /// Content encoding header value constants\npub mod header_value { /// Header value denoting \"aws-chunked\" encoding pub const AWS_CHUNKED: &str = \"aws-chunked\";\n} /// Options used when constructing an [`AwsChunkedBody`][AwsChunkedBody].\n#[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsChunkedBodyOptions { /// The total size of the stream. For unsigned encoding this implies that /// there will only be a single chunk containing the underlying payload, /// unless ChunkLength is also specified. pub stream_length: Option, /// The maximum size of each chunk to be sent. /// /// If ChunkLength and stream_length are both specified, the stream will be /// broken up into chunk_length chunks. The encoded length of the aws-chunked /// encoding can still be determined as long as all trailers, if any, have a /// fixed length. pub chunk_length: Option, /// The length of each trailer sent within an `AwsChunkedBody`. Necessary in /// order to correctly calculate the total size of the body accurately. pub trailer_lens: Vec,\n} impl AwsChunkedBodyOptions { /// Create a new [`AwsChunkedBodyOptions`][AwsChunkedBodyOptions] pub fn new() -> Self { Self::default() } /// Set stream length pub fn with_stream_length(mut self, stream_length: u64) -> Self { self.stream_length = Some(stream_length); self } /// Set chunk length pub fn with_chunk_length(mut self, chunk_length: u64) -> Self { self.chunk_length = Some(chunk_length); self } /// Set a trailer len pub fn with_trailer_len(mut self, trailer_len: u64) -> Self { self.trailer_lens.push(trailer_len); self }\n} #[derive(Debug, PartialEq, Eq)]\nenum AwsChunkedBodyState { WritingChunkSize, WritingChunk, WritingTrailers, Closed,\n} /// A request body compatible with `Content-Encoding: aws-chunked`\n///\n/// Chunked-Body grammar is defined in [ABNF] as:\n///\n/// ```txt\n/// Chunked-Body = *chunk\n/// last-chunk\n/// chunked-trailer\n/// CRLF\n///\n/// chunk = chunk-size CRLF chunk-data CRLF\n/// chunk-size = 1*HEXDIG\n/// last-chunk = 1*(\"0\") CRLF\n/// chunked-trailer = *( entity-header CRLF )\n/// entity-header = field-name \":\" OWS field-value OWS\n/// ```\n/// For more info on what the abbreviations mean, see https://datatracker.ietf.org/doc/html/rfc7230#section-1.2\n///\n/// [ABNF]:https://en.wikipedia.org/wiki/Augmented_Backus%E2%80%93Naur_form\n#[derive(Debug)]\n#[pin_project]\npub struct AwsChunkedBody { #[pin] inner: InnerBody, #[pin] state: AwsChunkedBodyState, options: AwsChunkedBodyOptions,\n} // Currently, we only use this in terms of a streaming request body with checksum trailers\ntype Inner = ChecksumBody; impl AwsChunkedBody { /// Wrap the given body in an outer body compatible with `Content-Encoding: aws-chunked` pub fn new(body: Inner, options: AwsChunkedBodyOptions) -> Self { Self { inner: body, state: AwsChunkedBodyState::WritingChunkSize, options, } } fn encoded_length(&self) -> Option { if self.options.chunk_length.is_none() && self.options.stream_length.is_none() { return None; } let mut length = 0; let stream_length = self.options.stream_length.unwrap_or_default(); if stream_length != 0 { if let Some(chunk_length) = self.options.chunk_length { let num_chunks = stream_length / chunk_length; length += num_chunks * get_unsigned_chunk_bytes_length(chunk_length); let remainder = stream_length % chunk_length; if remainder != 0 { length += get_unsigned_chunk_bytes_length(remainder); } } else { length += get_unsigned_chunk_bytes_length(stream_length); } } // End chunk length += CHUNK_TERMINATOR.len() as u64; // Trailers for len in self.options.trailer_lens.iter() { length += len + CRLF.len() as u64; } // Encoding terminator length += CRLF.len() as u64; Some(length) }\n} fn prefix_with_chunk_size(data: Bytes, chunk_size: u64) -> Bytes { // Len is the size of the entire chunk as defined in `AwsChunkedBodyOptions` let mut prefixed_data = BytesMut::from(format!(\"{:X?}\\r\\n\", chunk_size).as_bytes()); prefixed_data.extend_from_slice(&data); prefixed_data.into()\n} fn get_unsigned_chunk_bytes_length(payload_length: u64) -> u64 { let hex_repr_len = int_log16(payload_length); hex_repr_len + CRLF.len() as u64 + payload_length + CRLF.len() as u64\n} fn trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes: u64, trailer_map: Option,\n) -> Bytes { use std::fmt::Write; // On 32-bit operating systems, we might not be able to convert the u64 to a usize, so we just // use `String::new` in that case. let mut trailers = match usize::try_from(total_length_of_trailers_in_bytes) { Ok(total_length_of_trailers_in_bytes) => { String::with_capacity(total_length_of_trailers_in_bytes) } Err(_) => String::new(), }; let mut already_wrote_first_trailer = false; if let Some(trailer_map) = trailer_map { for (header_name, header_value) in trailer_map.into_iter() { match header_name { // New name, new value Some(header_name) => { if already_wrote_first_trailer { // First trailer shouldn't have a preceding CRLF, but every trailer after it should trailers.write_str(CRLF).unwrap(); } else { already_wrote_first_trailer = true; } trailers.write_str(header_name.as_str()).unwrap(); trailers.write_char(':').unwrap(); } // Same name, new value None => { trailers.write_char(',').unwrap(); } } trailers.write_str(header_value.to_str().unwrap()).unwrap(); } } // Write CRLF to end the body trailers.write_str(CRLF).unwrap(); // If we wrote at least one trailer, we need to write an extra CRLF if total_length_of_trailers_in_bytes != 0 { trailers.write_str(CRLF).unwrap(); } trailers.into()\n} impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { tracing::info!(\"polling AwsChunkedBody\"); let mut this = self.project(); match *this.state { AwsChunkedBodyState::WritingChunkSize => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(data))) => { // A chunk must be prefixed by chunk size in hexadecimal tracing::info!(\"writing chunk size and start of chunk\"); *this.state = AwsChunkedBodyState::WritingChunk; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); Poll::Ready(Some(Ok(prefix_with_chunk_size(data, total_chunk_size)))) } Poll::Ready(None) => { tracing::info!(\"chunk was empty, writing last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingChunk => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { tracing::info!(\"writing rest of chunk data\"); Poll::Ready(Some(Ok(data.copy_to_bytes(data.len())))) } Poll::Ready(None) => { tracing::info!(\"no more chunk data, writing CRLF and last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingTrailers => { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.state = AwsChunkedBodyState::Closed; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().fold(0, |acc, n| acc + n); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(Err(e)) => Poll::Ready(Some(Err(e))), }; } AwsChunkedBodyState::Closed => { return Poll::Ready(None); } } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // Trailers were already appended to the body because of the content encoding scheme Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.state == AwsChunkedBodyState::Closed } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n} // Used for finding how many hexadecimal digits it takes to represent a base 10 integer\nfn int_log16(mut i: T) -> u64\nwhere T: std::ops::DivAssign + PartialOrd + From + Copy,\n{ let mut len = 0; let zero = T::from(0); let sixteen = T::from(16); while i > zero { i /= sixteen; len += 1; } len\n} #[cfg(test)]\nmod tests { use super::AwsChunkedBody; use crate::content_encoding::AwsChunkedBodyOptions; use aws_smithy_checksums::body::ChecksumBody; use aws_smithy_http::body::SdkBody; use bytes::Buf; use bytes_utils::SegmentedBuf; use http_body::Body; use std::io::Read; #[tokio::test] async fn test_aws_chunked_encoded_body() { let input_text = \"Hello world\"; let sdk_body = SdkBody::from(input_text); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(input_text.len() as u64), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"B\\r\\nHello world\\r\\n0\\r\\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); } #[tokio::test] async fn test_empty_aws_chunked_encoded_body() { let sdk_body = SdkBody::from(\"\"); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(0), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"0\\r\\nx-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); }\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » AwsChunkedBody and AwsChunkedBodyOptions","id":"229","title":"AwsChunkedBody and AwsChunkedBodyOptions"},"23":{"body":"The fundamental trait for HTTP-based protocols is ParseHttpResponse","breadcrumbs":"Transport » HTTP Operations » Operation Parsing and Response Loading","id":"23","title":"Operation Parsing and Response Loading"},"230":{"body":"When sending checksum-verified requests with a streaming body, we must update the usual signing process. Instead of signing the request based on the request body's checksum, we must sign it with a special header instead: Authorization: \nx-amz-content-sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER Setting STREAMING-UNSIGNED-PAYLOAD-TRAILER tells the signer that we're sending an unsigned streaming body that will be followed by trailers. We can achieve this by: Adding a new variant to SignableBody: /// A signable HTTP request body\n#[derive(Debug, Clone, Eq, PartialEq)]\n#[non_exhaustive]\npub enum SignableBody<'a> { // existing variants have been omitted for brevity... /// An unsigned payload with trailers /// /// StreamingUnsignedPayloadTrailer is used for streaming requests where the contents of the /// body cannot be known prior to signing **AND** which include HTTP trailers. StreamingUnsignedPayloadTrailer,\n} Updating the CanonicalRequest::payload_hash method to include the new SignableBody variant: fn payload_hash<'b>(body: &'b SignableBody<'b>) -> Cow<'b, str> { // Payload hash computation // // Based on the input body, set the payload_hash of the canonical request: // Either: // - compute a hash // - use the precomputed hash // - use `UnsignedPayload` // - use `StreamingUnsignedPayloadTrailer` match body { SignableBody::Bytes(data) => Cow::Owned(sha256_hex_string(data)), SignableBody::Precomputed(digest) => Cow::Borrowed(digest.as_str()), SignableBody::UnsignedPayload => Cow::Borrowed(UNSIGNED_PAYLOAD), SignableBody::StreamingUnsignedPayloadTrailer => { Cow::Borrowed(STREAMING_UNSIGNED_PAYLOAD_TRAILER) } }\n} (in generated code) Inserting the SignableBody into the request property bag when making a checksum-verified streaming request: if self.checksum_algorithm.is_some() { request .properties_mut() .insert(aws_sig_auth::signer::SignableBody::StreamingUnsignedPayloadTrailer);\n} It's possible to send aws-chunked requests where each chunk is signed individually. Because this feature isn't strictly necessary for flexible checksums, I've avoided implementing it.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Sigv4 Update","id":"230","title":"Sigv4 Update"},"231":{"body":"In order to avoid writing lots of Rust in Kotlin, I have implemented request and response building functions as inlineables: Building checksum-validated requests with in-memory request bodies: // In aws/rust-runtime/aws-inlineable/src/streaming_body_with_checksum.rs\n/// Given a `&mut http::request::Request`, and checksum algorithm name, calculate a checksum and\n/// then modify the request to include the checksum as a header.\npub fn build_checksum_validated_request( request: &mut http::request::Request, checksum_algorithm: &str,\n) -> Result<(), aws_smithy_http::operation::BuildError> { let data = request.body().bytes().unwrap_or_default(); let mut checksum = aws_smithy_checksums::new_checksum(checksum_algorithm); checksum .update(data) .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; let checksum = checksum .finalize() .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; request.headers_mut().insert( aws_smithy_checksums::checksum_algorithm_to_checksum_header_name(checksum_algorithm), aws_smithy_types::base64::encode(&checksum[..]) .parse() .expect(\"base64-encoded checksums are always valid header values\"), ); Ok(())\n} Building checksum-validated requests with streaming request bodies: /// Given an `http::request::Builder`, `SdkBody`, and a checksum algorithm name, return a\n/// `Request` with checksum trailers where the content is `aws-chunked` encoded.\npub fn build_checksum_validated_request_with_streaming_body( request_builder: http::request::Builder, body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str,\n) -> Result, aws_smithy_http::operation::BuildError> { use http_body::Body; let original_body_size = body .size_hint() .exact() .expect(\"body must be sized if checksum is requested\"); let body = aws_smithy_checksums::body::ChecksumBody::new(body, checksum_algorithm); let checksum_trailer_name = body.trailer_name(); let aws_chunked_body_options = aws_http::content_encoding::AwsChunkedBodyOptions::new() .with_stream_length(original_body_size as usize) .with_trailer_len(body.trailer_length() as usize); let body = aws_http::content_encoding::AwsChunkedBody::new(body, aws_chunked_body_options); let encoded_content_length = body .size_hint() .exact() .expect(\"encoded_length must return known size\"); let request_builder = request_builder .header( http::header::CONTENT_LENGTH, http::HeaderValue::from(encoded_content_length), ) .header( http::header::HeaderName::from_static(\"x-amz-decoded-content-length\"), http::HeaderValue::from(original_body_size), ) .header( http::header::HeaderName::from_static(\"x-amz-trailer\"), checksum_trailer_name, ) .header( http::header::CONTENT_ENCODING, aws_http::content_encoding::header_value::AWS_CHUNKED.as_bytes(), ); let body = aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body)); request_builder .body(body) .map_err(|err| aws_smithy_http::operation::BuildError::Other(Box::new(err)))\n} Building checksum-validated responses: /// Given a `Response`, checksum algorithm name, and pre-calculated checksum, return a\n/// `Response` where the body will processed with the checksum algorithm and checked\n/// against the pre-calculated checksum.\npub fn build_checksum_validated_sdk_body( body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str, precalculated_checksum: bytes::Bytes,\n) -> aws_smithy_http::body::SdkBody { let body = aws_smithy_checksums::body::ChecksumValidatedBody::new( body, checksum_algorithm, precalculated_checksum.clone(), ); aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body))\n} /// Given the name of a checksum algorithm and a `HeaderMap`, extract the checksum value from the\n/// corresponding header as `Some(Bytes)`. If the header is unset, return `None`.\npub fn check_headers_for_precalculated_checksum( headers: &http::HeaderMap,\n) -> Option<(&'static str, bytes::Bytes)> { for header_name in aws_smithy_checksums::CHECKSUM_HEADERS_IN_PRIORITY_ORDER { if let Some(precalculated_checksum) = headers.get(&header_name) { let checksum_algorithm = aws_smithy_checksums::checksum_header_name_to_checksum_algorithm(&header_name); let precalculated_checksum = bytes::Bytes::copy_from_slice(precalculated_checksum.as_bytes()); return Some((checksum_algorithm, precalculated_checksum)); } } None\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Inlineables","id":"231","title":"Inlineables"},"232":{"body":"Codegen will be updated to insert the appropriate inlineable functions for operations that are tagged with the @httpchecksum trait. Some operations will require an MD5 checksum fallback if the user hasn't set a checksum themselves. Users also have the option of supplying a precalculated checksum of their own. This is already handled by our current header insertion logic and won't require updating the existing implementation. Because this checksum validation behavior is AWS-specific, it will be defined in SDK codegen.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Codegen","id":"232","title":"Codegen"},"233":{"body":"Implement codegen for building checksum-validated requests: In-memory request bodies Support MD5 fallback behavior for services that enable it. Streaming request bodies Implement codegen for building checksum-validated responses:","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementation Checklist","id":"233","title":"Implementation Checklist"},"234":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. SDK customers occasionally need to add additional HTTP headers to requests, and currently, the SDK has no easy way to accomplish this. At time of writing, the lower level Smithy client has to be used to create an operation, and then the HTTP request augmented on that operation type. For example: let input = SomeOperationInput::builder().some_value(5).build()?; let operation = { let op = input.make_operation(&service_config).await?; let (request, response) = op.into_request_response(); let request = request.augment(|req, _props| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); Result::<_, Infallible>::Ok(req) })?; Operation::from_parts(request, response)\n}; let response = smithy_client.call(operation).await?; This approach is both difficult to discover and implement since it requires acquiring a Smithy client rather than the generated fluent client, and it's anything but ergonomic. This RFC proposes an easier way to augment requests that is compatible with the fluent client.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » RFC: Customizable Client Operations","id":"234","title":"RFC: Customizable Client Operations"},"235":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Terminology","id":"235","title":"Terminology"},"236":{"body":"The code generated fluent builders returned by the fluent client should have a method added to them, similar to send, but that returns a customizable request. The customer experience should look as follows: let response = client.some_operation() .some_value(5) .customize() .await? .mutate_request(|mut req| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); }) .send() .await?; This new async customize method would return the following: pub struct CustomizableOperation { handle: Arc, operation: Operation,\n} impl CustomizableOperation { // Allows for customizing the operation's request fn map_request( mut self, f: impl FnOnce(Request) -> Result, E>, ) -> Result { let (request, response) = self.operation.into_request_response(); let request = request.augment(|req, _props| f(req))?; self.operation = Operation::from_parts(request, response); Ok(self) } // Convenience for `map_request` where infallible direct mutation of request is acceptable fn mutate_request( mut self, f: impl FnOnce(&mut Request) -> (), ) -> Self { self.map_request(|mut req| { f(&mut req); Result::<_, Infallible>::Ok(req) }).expect(\"infallible\"); Ok(self) } // Allows for customizing the entire operation fn map_operation( mut self, f: impl FnOnce(Operation) -> Result, E>, ) -> Result { self.operation = f(self.operation)?; Ok(self) } // Direct access to read the request fn request(&self) -> &Request { self.operation.request() } // Direct access to mutate the request fn request_mut(&mut self) -> &mut Request { self.operation.request_mut() } // Sends the operation's request async fn send(self) -> Result> where O: ParseHttpResponse> + Send + Sync + Clone + 'static, E: std::error::Error, R: ClassifyResponse, SdkError> + Send + Sync, { self.handle.client.call(self.operation).await }\n} Additionally, for those who want to avoid closures, the Operation type will have request and request_mut methods added to it to get direct access to its underlying HTTP request. The CustomizableOperation type will then mirror these functions so that the experience can look as follows: let mut operation = client.some_operation() .some_value(5) .customize() .await?;\noperation.request_mut() .headers_mut() .insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") );\nlet response = operation.send().await?;","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Proposal","id":"236","title":"Proposal"},"237":{"body":"In the proposal above, customers must await the result of customize in order to get the CustomizableOperation. This is a result of the underlying map_operation function that customize needs to call being async, which was made async during the implementation of customizations for Glacier (see #797, #801, and #1474). It is possible to move these Glacier customizations into middleware to make map_operation sync, but keeping it async is much more future-proof since if a future customization or feature requires it to be async, it won't be a breaking change in the future.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why not remove async from customize to make this more ergonomic?","id":"237","title":"Why not remove async from customize to make this more ergonomic?"},"238":{"body":"Alternatively, the name build could be used, but this increases the odds that customers won't realize that they can call send directly, and then call a longer build/send chain when customization isn't needed: client.some_operation() .some_value() .build() // Oops, didn't need to do this .send() .await?; vs. client.some_operation() .some_value() .send() .await?; Additionally, no AWS services at time of writing have a member named customize that would conflict with the new function, so adding it would not be a breaking change.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why the name customize?","id":"238","title":"Why the name customize?"},"239":{"body":"Create CustomizableOperation as an inlinable, and code generate it into client so that it has access to Handle Code generate the customize method on fluent builders Update the RustReservedWords class to include customize Add ability to mutate the HTTP request on Operation Add examples for both approaches Comment on older discussions asking about how to do this with this improved approach","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Changes Checklist","id":"239","title":"Changes Checklist"},"24":{"body":"Signing, endpoint specification, and logging are all handled as middleware. The Rust SDK takes a minimalist approach to middleware: Middleware is defined as minimally as possible, then adapted into the middleware system used by the IO layer. Tower is the de facto standard for HTTP middleware in Rust—we will probably use it. But we also want to make our middleware usable for users who aren't using Tower (or if we decide to not use Tower in the long run). Because of this, rather than implementing all our middleware as \"Tower Middleware\", we implement it narrowly (e.g. as a function that operates on operation::Request), then define optional adapters to make our middleware tower compatible.","breadcrumbs":"Transport » HTTP Middleware » HTTP middleware","id":"24","title":"HTTP middleware"},"240":{"body":"Status: Accepted Smithy provides a sensitive trait which exists as a @sensitive field annotation syntactically and has the following semantics: Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). This RFC is concerned with solving the problem of honouring this specification in the context of logging. Progress has been made towards this goal in the form of the Sensitive Trait PR , which uses code generation to remove sensitive fields from Debug implementations. The problem remains open due to the existence of HTTP binding traits and a lack of clearly defined user guidelines which customers may follow to honour the specification. This RFC proposes: A new logging middleware is generated and applied to each OperationHandler Service. A developer guideline is provided on how to avoid violating the specification.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » RFC: Logging in the Presence of Sensitive Data","id":"240","title":"RFC: Logging in the Presence of Sensitive Data"},"241":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Runtime crate : A crate existing within the rust-runtime folder, used to implement shared functionalities that do not have to be code-generated. Service : The tower::Service trait. The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Potentially sensitive : Data that could be bound to a sensitive field of a structure, for example via the HTTP Binding Traits .","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Terminology","id":"241","title":"Terminology"},"242":{"body":"","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Background","id":"242","title":"Background"},"243":{"body":"Smithy provides various HTTP binding traits. These allow protocols to configure a HTTP request by way of binding fields to parts of the request. For this reason sensitive data might be unintentionally leaked through logging of a bound request. Trait Configurable httpHeader Headers httpPrefixHeaders Headers httpLabel URI httpPayload Payload httpQuery Query Parameters httpResponseCode Status Code Each of these configurable parts must therefore be logged cautiously.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Binding Traits","id":"243","title":"HTTP Binding Traits"},"244":{"body":"It would be unfeasible to forbid the logging of sensitive data all together using the type system. With the current API, the customer will always have an opportunity to log a request containing sensitive data before it enters the Service> that we provide to them. // The API provides us with a `Service>`\nlet app: Router = OperationRegistryBuilder::default().build().expect(\"unable to build operation registry\").into(); // We can `ServiceExt::map_request` log a request with potentially sensitive data\nlet app = app.map_request(|request| { info!(?request); request }); A more subtle violation of the specification may occur when the customer enables verbose logging - a third-party dependency might simply log data marked as sensitive, for example tokio or hyper. These two cases illustrate that smithy-rs can only prevent violation of the specification in a restricted scope - logs emitted from generated code and the runtime crates. A smithy-rs specific guideline should be available to the customer which outlines how to avoid violating the specification in areas outside of our control.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Scope and Guidelines","id":"244","title":"Scope and Guidelines"},"245":{"body":"The sensitivity and HTTP bindings are declared within specific structures/operations. For this reason, in the general case, it's unknowable whether or not any given part of a request is sensitive until we determine which operation is tasked with handling the request and hence which fields are bound. Implementation wise, this means that any middleware applied before routing has taken place cannot log anything potentially sensitive without performing routing logic itself. Note that: We are not required to deserialize the entire request before we can make judgments on what data is sensitive or not - only which operation it has been routed to. We are permitted to emit logs prior to routing when: they contain no potentially sensitive data, or the request failed to route, in which case it's not subject to the constraints of an operation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Routing","id":"245","title":"Routing"},"246":{"body":"The crates existing in rust-runtime are not code generated - their source code is agnostic to the specific model in use. For this reason, if such a crate wanted to log potentially sensitive data then there must be a way to conditionally toggle that log without manipulation of the source code. Any proposed solution must acknowledge this concern.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Runtime Crates","id":"246","title":"Runtime Crates"},"247":{"body":"This proposal serves to honor the sensitivity specification via code generation of a logging middleware which is aware of the sensitivity, together with a developer contract disallowing logging potentially sensitive data in the runtime crates. A developer guideline should be provided in addition to the middleware. All data known to be sensitive should be replaced with \"{redacted}\" when logged. Implementation wise this means that tracing::Event s and tracing::Span s of the form debug!(field = \"sensitive data\") and span!(..., field = \"sensitive data\") must become debug!(field = \"{redacted}\") and span!(..., field = \"{redacted}\").","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Proposal","id":"247","title":"Proposal"},"248":{"body":"Developers might want to observe sensitive data for debugging purposes. It should be possible to opt-out of the redactions by enabling a feature flag unredacted-logging (which is disabled by default). To prevent excessive branches such as if cfg!(feature = \"unredacted-logging\") { debug!(%data, \"logging here\");\n} else { debug!(data = \"{redacted}\", \"logging here\");\n} the following wrapper should be provided from a runtime crate: pub struct Sensitive(T); impl Debug for Sensitive\nwhere T: Debug\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} impl Display for Sensitive\nwhere T: Display\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} In which case the branch above becomes debug!(sensitive_data = %Sensitive(data));","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Debug Logging","id":"248","title":"Debug Logging"},"249":{"body":"Using the smithy model, for each operation, a logging middleware should be generated. Through the model, the code generation knows which fields are sensitive and which HTTP bindings exist, therefore the logging middleware can be carefully crafted to avoid leaking sensitive data. As a request enters this middleware it should record the method, HTTP headers, status code, and URI in a tracing::span. As a response leaves this middleware it should record the HTTP headers and status code in a tracing::debug. The following model @readonly\n@http(uri: \"/inventory/{name}\", method: \"GET\")\noperation Inventory { input: Product, output: Stocked\n} @input\nstructure Product { @required @sensitive @httpLabel name: String\n} @output\nstructure Stocked { @sensitive @httpResponseCode code: String,\n} should generate the following // NOTE: This code is intended to show behavior - it does not compile pub struct InventoryLogging { inner: S, operation_name: &'static str\n} impl InventoryLogging { pub fn new(inner: S) -> Self { Self { inner } }\n} impl Service> for InventoryLogging\nwhere S: Service>\n{ type Response = Response; type Error = S::Error; type Future = /* Implementation detail */; fn call(&mut self, request: Request) -> Self::Future { // Remove sensitive data from parts of the HTTP let uri = /* redact {name} from URI */; let headers = /* no redactions */; let fut = async { let response = self.inner.call(request).await; let status_code = /* redact status code */; let headers = /* no redactions */; debug!(%status_code, ?headers, \"response\"); response }; // Instrument the future with a span let span = debug_span!(\"request\", operation = %self.operation_name, method = %request.method(), %uri, ?headers); fut.instrument(span) }\n}","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Code Generated Logging Middleware","id":"249","title":"Code Generated Logging Middleware"},"25":{"body":"The Smithy client provides a default TLS connector, but a custom one can be plugged in. rustls is enabled with the feature flag rustls. The client had previously (prior to version 0.56.0) supported native-tls. You can continue to use a client whose TLS implementation is backed by native-tls by passing in a custom connector. Check out the custom_connectors.rs tests in the pokemon-service-tls example crate.","breadcrumbs":"Transport » TLS Connector","id":"25","title":"Transport"},"250":{"body":"The Service::call path, seen in Code Generated Logging Middleware , is latency-sensitive. Careful implementation is required to avoid excess allocations during redaction of sensitive data. Wrapping Uri and HeaderMap then providing a new Display / Debug implementation which skips over the sensitive data is preferable over allocating a new String/HeaderMap and then mutating it. These wrappers should be provided alongside the Sensitive struct described in Debug Logging . If they are implemented on top of Sensitive, they will inherit the same behavior - allowing redactions to be toggled using unredacted-logging feature flag.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Debug/Display Wrappers","id":"250","title":"HTTP Debug/Display Wrappers"},"251":{"body":"This logging middleware should be applied outside of the OperationHandler after its construction in the (generated) operation_registry.rs file. The middleware should preserve the associated types of the OperationHandler (Response = Response, Error = Infallible) to cause minimal disruption. An easy position to apply the logging middleware is illustrated below in the form of Logging{Operation}::new: let empty_operation = LoggingEmptyOperation::new(operation(registry.empty_operation));\nlet get_pokemon_species = LoggingPokemonSpecies::new(operation(registry.get_pokemon_species));\nlet get_server_statistics = LoggingServerStatistics::new(operation(registry.get_server_statistics));\nlet routes = vec![ (BoxCloneService::new(empty_operation), empty_operation_request_spec), (BoxCloneService::new(get_pokemon_species), get_pokemon_species_request_spec), (BoxCloneService::new(get_server_statistics), get_server_statistics_request_spec),\n];\nlet router = aws_smithy_http_server::routing::Router::new_rest_json_router(routes); Although an acceptable first step, putting logging middleware here is suboptimal - the Router allows a tower::Layer to be applied to the operation by using the Router::layer method. This middleware will be applied outside of the logging middleware and, as a result, will not be subject to the span of any middleware. Therefore, the Router must be changed to allow for middleware to be applied within the logging middleware rather than outside of it. This is a general problem, not specific to this proposal. For example, Use Request Extensions must also solve this problem. Fortunately, this problem is separable from the actual implementation of the logging middleware and we can get immediate benefit by application of it in the suboptimal position described above.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Middleware Position","id":"251","title":"Middleware Position"},"252":{"body":"There is need for logging within the Router implementation - this is a crucial area of business logic. As mentioned in the Routing section, we are permitted to log potentially sensitive data in cases where requests fail to get routed to an operation. In the case of AWS JSON 1.0 and 1.1 protocols, the request URI is always /, putting it outside of the reach of the @sensitive trait. We therefore have the option to log it before routing occurs. We make a choice not to do this in order to remove the special case - relying on the logging layer to log URIs when appropriate.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Logging within the Router","id":"252","title":"Logging within the Router"},"253":{"body":"A guideline should be made available, which includes: The HTTP bindings traits and why they are of concern in the presence of @sensitive. The Debug implementation on structures. How to use the Sensitive struct, HTTP wrappers, and the unredacted-logging feature flag described in Debug Logging and HTTP Debug/Display Wrappers . A warning against the two potential leaks described in Scope and Guidelines : Sensitive data leaking from third-party dependencies. Sensitive data leaking from middleware applied to the Router.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Developer Guideline","id":"253","title":"Developer Guideline"},"254":{"body":"All of the following proposals are compatible with, and benefit from, Debug Logging , HTTP Debug/Display Wrappers , and Developer Guideline portions of the main proposal. The main proposal disallows the logging of potentially sensitive data in the runtime crates, instead opting for a dedicated code generated logging middleware. In contrast, the following proposals all seek ways to accommodate logging of potentially sensitive data in the runtime crates.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Alternative Proposals","id":"254","title":"Alternative Proposals"},"255":{"body":"Request extensions can be used to adjoin data to a Request as it passes through the middleware. Concretely, they exist as the type map http::Extensions accessed via http::extensions and http::extensions_mut . These can be used to provide data to middleware interested in logging potentially sensitive data. struct Sensitivity { /* Data concerning which parts of the request are sensitive */\n} struct Middleware { inner: S\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if let Some(sensitivity) = request.extensions().get::() { if sensitivity.is_method_sensitive() { debug!(method = %request.method()); } } /* ... */ self.inner.call(request) }\n} A middleware layer must be code generated (much in the same way as the logging middleware) which is dedicated to inserting the Sensitivity struct into the extensions of each incoming request. impl Service> for SensitivityInserter\nwhere S: Service>\n{ /* ... */ fn call(&mut self, request: Request) -> Self::Future { let sensitivity = Sensitivity { /* .. */ }; request.extensions_mut().insert(sensitivity); self.inner.call(request) }\n} Advantages Applicable to all middleware which takes http::Request. Does not pollute the API of the middleware - code internal to middleware simply inspects the request's extensions and performs logic based on its value. Disadvantages The sensitivity and HTTP bindings are known at compile time whereas the insertion/retrieval of the extension data is done at runtime. http::Extensions is approximately a HashMap> so lookup/insertion involves indirection/cache misses/heap allocation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Use Request Extensions","id":"255","title":"Use Request Extensions"},"256":{"body":"It is possible that sensitivity is a parameter passed to middleware during construction. This is similar in nature to Use Request Extensions except that the Sensitivity is passed to middleware during construction. struct Middleware { inner: S, sensitivity: Sensitivity\n} impl Middleware { pub fn new(inner: S) -> Self { /* ... */ } pub fn new_with_sensitivity(inner: S, sensitivity: Sensitivity) -> Self { /* ... */ }\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if self.sensitivity.is_method_sensitive() { debug!(method = %Sensitive(request.method())); } /* ... */ self.inner.call(request) }\n} It would then be required that the code generation responsible constructing a Sensitivity for each operation. Additionally, if any middleware is being applied to a operation then the code generation would be responsible for passing that middleware the appropriate Sensitivity before applying it. Advantages Applicable to all middleware. As the Sensitivity struct will be known statically, the compiler will remove branches, making it cheap. Disadvantages Pollutes the API of middleware.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Accommodate the Sensitivity in Middleware API","id":"256","title":"Accommodate the Sensitivity in Middleware API"},"257":{"body":"Distinct from tower::Layer, a tracing::Layer is a \"composable handler for tracing events\". It would be possible to write an implementation which would filter out events which contain sensitive data. Examples of filtering tracing::Layers already exist in the form of the EnvFilter and Targets . It is unlikely that we'll be able to leverage them for our use, but the underlying principle remains the same - the tracing::Layer inspects tracing::Events/tracing::Spans, filtering them based on some criteria. Code generation would be need to be used in order to produce the filtering criteria from the models. Internal developers would need to adhere to a common set of field names in order for them to be subject to the filtering. Spans would need to be opened after routing occurs in order for the tracing::Layer to know which operation Events are being produced within and hence which filtering rules to apply. Advantages Applicable to all middleware. Good separation of concerns: Does not pollute the API of the middleware No specific logic required within middleware. Disadvantages Complex implementation. Not necessarily fast. tracing::Layers seem to only support filtering entire Events, rather than more fine grained removal of fields.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Redact values using a tracing Layer","id":"257","title":"Redact values using a tracing Layer"},"258":{"body":"Implement and integrate code generated logging middleware. https://github.com/awslabs/smithy-rs/pull/1550 Add logging to Router implementation. https://github.com/awslabs/smithy-rs/issues/1666 Write developer guideline. https://github.com/awslabs/smithy-rs/pull/1772 Refactor Router to allow for better positioning described in Middleware Position . https://github.com/awslabs/smithy-rs/pull/1620 https://github.com/awslabs/smithy-rs/pull/1679 https://github.com/awslabs/smithy-rs/pull/1693","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Changes Checklist","id":"258","title":"Changes Checklist"},"259":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how client and server will use errors defined in @streaming unions (event streams).","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » RFC: Errors for event streams","id":"259","title":"RFC: Errors for event streams"},"26":{"body":"The Rust SDK uses Smithy models and code generation tooling to generate an SDK. Smithy is an open source IDL (interface design language) developed by Amazon. Although the Rust SDK uses Smithy models for AWS services, smithy-rs and Smithy models in general are not AWS specific. Design documentation here covers both our implementation of Smithy Primitives (e.g. simple shape) as well as more complex Smithy traits like Endpoint .","breadcrumbs":"Smithy » Smithy","id":"26","title":"Smithy"},"260":{"body":"In the current version of smithy-rs, customers who want to use errors in event streams need to use them as so: stream! { yield Ok(EventStreamUnion::ErrorVariant ...)\n} Furthermore, there is no support for @errors in event streams being terminal; that is, when an error is sent, it does not signal termination and thus does not complete the stream. This RFC proposes to make changes to: terminate the stream upon receiving a modeled error change the API so that customers will write their business logic in a more Rust-like experience: stream! { yield Err(EventStreamUnionError::ErrorKind ...)\n} Thus any Err(_) from the stream is terminal, rather than any Ok(x) with x being matched against the set of modeled variant errors in the union.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » The user experience if this RFC is implemented","id":"260","title":"The user experience if this RFC is implemented"},"261":{"body":"In order to implement this feature: Errors modeled in streaming unions are going to be treated like operation errors They are in the error:: namespace They have the same methods operation errors have (name on the server, metadata on the client and so on) They are not variants in the corresponding error structure Errors need to be marshalled and unmarshalled Receiver must treat any error coming from the other end as terminal The code examples below have been generated using the following model : @http(uri: \"/capture-pokemon-event/{region}\", method: \"POST\")\noperation CapturePokemonOperation { input: CapturePokemonOperationEventsInput, output: CapturePokemonOperationEventsOutput, errors: [UnsupportedRegionError, ThrottlingError]\n} @input\nstructure CapturePokemonOperationEventsInput { @httpPayload events: AttemptCapturingPokemonEvent, @httpLabel @required region: String,\n} @output\nstructure CapturePokemonOperationEventsOutput { @httpPayload events: CapturePokemonEvents,\n} @streaming\nunion AttemptCapturingPokemonEvent { event: CapturingEvent, masterball_unsuccessful: MasterBallUnsuccessful,\n} structure CapturingEvent { @eventPayload payload: CapturingPayload,\n} structure CapturingPayload { name: String, pokeball: String,\n} @streaming\nunion CapturePokemonEvents { event: CaptureEvent, invalid_pokeball: InvalidPokeballError, throttlingError: ThrottlingError,\n} structure CaptureEvent { @eventHeader name: String, @eventHeader captured: Boolean, @eventHeader shiny: Boolean, @eventPayload pokedex_update: Blob,\n} @error(\"server\")\nstructure UnsupportedRegionError { @required region: String,\n}\n@error(\"client\")\nstructure InvalidPokeballError { @required pokeball: String,\n}\n@error(\"server\")\nstructure MasterBallUnsuccessful { @required message: String,\n}\n@error(\"client\")\nstructure ThrottlingError {} Wherever irrelevant, documentation and other lines are stripped out from the code examples below. Errors in streaming unions The error in AttemptCapturingPokemonEvent is modeled as follows. On the client, pub struct AttemptCapturingPokemonEventError { pub kind: AttemptCapturingPokemonEventErrorKind, pub(crate) meta: aws_smithy_types::Error,\n}\npub enum AttemptCapturingPokemonEventErrorKind { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful), Unhandled(Box),\n} On the server, pub enum AttemptCapturingPokemonEventError { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful),\n} Both are modeled as normal errors, where the name comes from Error with a prefix of the union's name. In fact, both the client and server generate operation errors and event stream errors the same way. Event stream errors have their own marshaller . To make it work for users to stream errors, EventStreamSender<>, in addition to the union type T, takes an error type E; that is, the AttemptCapturingPokemonEventError in the example. This means that an error from the stream is marshalled and sent as a data structure similarly to the union's non-error members. On the other side, the Receiver<> needs to terminate the stream upon receiving any error . A terminated stream has no more data and will always be a bug to use it. An example of how errors can be used on clients, extracted from this test : yield Err(AttemptCapturingPokemonEventError::new( AttemptCapturingPokemonEventErrorKind::MasterBallUnsuccessful(MasterBallUnsuccessful::builder().build()), Default::default()\n)); Because unions can be used in input or output of more than one operation, errors must be generated once as they are in the error:: namespace.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » How to actually implement this RFC","id":"261","title":"How to actually implement this RFC"},"262":{"body":"Errors are in the error:: namespace and created as operation errors Errors can be sent to the stream Errors terminate the stream Customers' experience using errors mirrors the Rust way: Err(error::StreamingError ...)","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » Changes checklist","id":"262","title":"Changes checklist"},"263":{"body":"Status: Accepted One might characterize smithy-rs as a tool for transforming a Smithy service into a tower::Service builder. A Smithy model defines behavior of the generated service partially - handlers must be passed to the builder before the tower::Service is fully specified. This builder structure is the primary API surface we provide to the customer, as a result, it is important that it meets their needs. This RFC proposes a new builder, deprecating the existing one, which addresses API deficiencies and takes steps to improve performance.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » RFC: Service Builder Improvements","id":"263","title":"RFC: Service Builder Improvements"},"264":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Smithy Service : The entry point of an API that aggregates resources and operations together within a Smithy model. Described in detail here . Service : The tower::Service trait is an interface for writing network applications in a modular and reusable way. Services act on requests to produce responses. Service Builder : A tower::Service builder, generated from a Smithy service, by smithy-rs. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Handler : A closure defining the behavior of a particular request after routing. These are provided to the service builder to complete the description of the service.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Terminology","id":"264","title":"Terminology"},"265":{"body":"To provide context for the proposal we perform a survey of the current state of affairs. The following is a reference model we will use throughout the RFC: operation Operation0 { input: Input0, output: Output0\n} operation Operation1 { input: Input1, output: Output1\n} @restJson1\nservice Service0 { operations: [ Operation0, Operation1, ]\n} We have purposely omitted details from the model that are unimportant to describing the proposal. We also omit distracting details from the Rust snippets. Code generation is linear in the sense that, code snippets can be assumed to extend to multiple operations in a predictable way. In the case where we do want to speak generally about an operation and its associated types, we use {Operation}, for example {Operation}Input is the input type of an unspecified operation. Here is a quick example of what a customer might write when using the service builder: async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler1(input: Operation1Input) -> Operation1Output { todo!()\n} let app: Router = OperationRegistryBuilder::default() // Use the setters .operation0(handler0) .operation1(handler1) // Convert to `OperationRegistry` .build() .unwrap() // Convert to `Router` .into(); During the survey we touch on the major mechanisms used to achieve this API.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Background","id":"265","title":"Background"},"266":{"body":"A core concept in the service builder is the Handler trait: pub trait Handler { async fn call(self, req: http::Request) -> http::Response;\n} Its purpose is to provide an even interface over closures of the form FnOnce({Operation}Input) -> impl Future and FnOnce({Operation}Input, State) -> impl Future. It's this abstraction which allows the customers to supply both async fn handler(input: {Operation}Input) -> {Operation}Output and async fn handler(input: {Operation}Input, state: Extension) -> {Operation}Output to the service builder. We generate Handler implementations for said closures in ServerOperationHandlerGenerator.kt : impl Handler<(), Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input let output = self(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} impl Handler, Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input, Extension) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input and fetched extension data let extension = Extension(request.extensions().get::().clone()); let output = self(input, extension).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Creating {Operation}Input from a http::Request and http::Response from a {Operation}Output involves protocol aware serialization/deserialization, for example, it can involve the HTTP binding traits . The RuntimeError enumerates error cases such as serialization/deserialization failures, extensions().get::() failures, etc. We omit error handling in the snippet above, but, in full, it also involves protocol aware conversions from the RuntimeError to http::Response. The reader should make note of the influence of the model on the different sections of this procedure. The request.extensions().get::() present in the Fun: FnOnce(Operation0Input, Extension) -> Fut implementation is the current approach to injecting state into handlers. The customer is required to apply a AddExtensionLayer to the output of the service builder so that, when the request reaches the handler, the extensions().get::() will succeed. To convert the closures described above into a Service an OperationHandler is used: pub struct OperationHandler { handler: H,\n} impl Service> for OperationHandler\nwhere H: Handler,\n{ type Response = http::Response; type Error = Infallible; #[inline] fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, req: Request) -> Result { self.handler.call(req).await.map(Ok) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Handlers","id":"266","title":"Handlers"},"267":{"body":"The service builder we provide to the customer is the OperationRegistryBuilder, generated from ServerOperationRegistryGenerator.kt . Currently, the reference model would generate the following OperationRegistryBuilder and OperationRegistry: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option,\n} pub struct OperationRegistry { operation1: Op0, operation2: Op1,\n} The OperationRegistryBuilder includes a setter per operation, and a fallible build method: impl OperationRegistryBuilder { pub fn operation0(mut self, value: Op0) -> Self { self.operation0 = Some(value); self } pub fn operation1(mut self, value: Op1) -> Self { self.operation1 = Some(value); self } pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) }\n} The OperationRegistry does not include any methods of its own, however it does enjoy a From for Router implementation: impl From> for Router\nwhere Op0: Handler, Op1: Handler,\n{ fn from(registry: OperationRegistry) -> Self { let operation0_request_spec = /* Construct Operation0 routing information */; let operation1_request_spec = /* Construct Operation1 routing information */; // Convert handlers into boxed services let operation0_svc = Box::new(OperationHandler::new(registry.operation0)); let operation1_svc = Box::new(OperationHandler::new(registry.operation1)); // Initialize the protocol specific router // We demonstrate it here with `new_rest_json_router`, but note that there is a different router constructor // for each protocol. aws_smithy_http_server::routing::Router::new_rest_json_router(vec![ ( operation0_request_spec, operation0_svc ), ( operation1_request_spec, operation1_svc ) ]) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Builder","id":"267","title":"Builder"},"268":{"body":"The aws_smithy_http::routing::Router provides the protocol aware routing of requests to their target , it exists as pub struct Route { service: Box>,\n} enum Routes { RestXml(Vec<(Route, RequestSpec)>), RestJson1(Vec<(Route, RequestSpec)>), AwsJson1_0(TinyMap), AwsJson11(TinyMap),\n} pub struct Router { routes: Routes,\n} and enjoys the following Service implementation: impl Service for Router\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, request: http::Request) -> Result { match &self.routes { Routes::/* protocol */(routes) => { let route: Result = /* perform route matching logic */; match route { Ok(ok) => ok.oneshot().await, Err(err) => /* Convert routing error into http::Response */ } } } }\n} Along side the protocol specific constructors, Router includes a layer method. This provides a way for the customer to apply a tower::Layer to all routes. For every protocol, Router::layer has the approximately the same behavior: let new_routes = old_routes .into_iter() // Apply the layer .map(|route| layer.layer(route)) // Re-box the service, to restore `Route` type .map(|svc| Box::new(svc)) // Collect the iterator back into a collection (`Vec` or `TinyMap`) .collect();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Router","id":"268","title":"Router"},"269":{"body":"Historically, smithy-rs has borrowed from axum . Despite various divergences the code bases still have much in common: Reliance on Handler trait to abstract over different closure signatures: axum::handler::Handler Handlers A mechanism for turning H: Handler into a tower::Service: axum::handler::IntoService OperationHandler A Router to route requests to various handlers: axum::Router aws_smithy_http_server::routing::Router To identify where the implementations should differ we should classify in what ways the use cases differ. There are two primary areas which we describe below. Extractors and Responses In axum there is a notion of Extractor , which allows the customer to easily define a decomposition of an incoming http::Request by specifying the arguments to the handlers. For example, async fn request(Json(payload): Json, Query(params): Query>, headers: HeaderMap) { todo!()\n} is a valid handler - each argument satisfies the axum::extract::FromRequest trait, therefore satisfies one of axums blanket Handler implementations: macro_rules! impl_handler { ( $($ty:ident),* $(,)? ) => { impl Handler<($($ty,)*)> for F where F: FnOnce($($ty,)*) -> Fut + Clone + Send + 'static, Fut: Future + Send, Res: IntoResponse, $( $ty: FromRequest + Send,)* { fn call(self, req: http::Request) -> Self::Future { async { let mut req = RequestParts::new(req); $( let $ty = match $ty::from_request(&mut req).await { Ok(value) => value, Err(rejection) => return rejection.into_response(), }; )* let res = self($($ty,)*).await; res.into_response() } } } };\n} The implementations of Handler in axum and smithy-rs follow a similar pattern - convert http::Request into the closure's input, run the closure, convert the output of the closure to http::Response. In smithy-rs we do not need a general notion of \"extractor\" - the http::Request decomposition is specified by the Smithy model, whereas in axum it's defined by the handlers signature. Despite the Smithy specification the customer may still want an \"escape hatch\" to allow them access to data outside of the Smithy service inputs, for this reason we should continue to support a restricted notion of extractor. This will help support use cases such as passing lambda_http::Context through to the handler despite it not being modeled in the Smithy model. Dual to FromRequest is the axum::response::IntoResponse trait. This plays the role of converting the output of the handler to http::Response. Again, the difference between axum and smithy-rs is that smithy-rs has the conversion from {Operation}Output to http::Response specified by the Smithy model, whereas in axum the customer is free to specify a return type which implements axum::response::IntoResponse. Routing The Smithy model not only specifies the http::Request decomposition and http::Response composition for a given service, it also determines the routing. The From implementation, described in Builder , yields a fully formed router based on the protocol and http traits specified. This is in contrast to axum, where the user specifies the routing by use of various combinators included on the axum::Router, applied to other tower::Services. In an axum application one might encounter the following code: let user_routes = Router::new().route(\"/:id\", /* service */); let team_routes = Router::new().route(\"/\", /* service */); let api_routes = Router::new() .nest(\"/users\", user_routes) .nest(\"/teams\", team_routes); let app = Router::new().nest(\"/api\", api_routes); Note that, in axum handlers are eagerly converted to a tower::Service (via IntoService) before they are passed into the Router. In contrast, in smithy-rs, handlers are passed into a builder and then the conversion to tower::Service is performed (via OperationHandler). Introducing state to handlers in axum is done in the same way as smithy-rs, described briefly in Handlers - a layer is used to insert state into incoming http::Requests and the Handler implementation pops it out of the type map layer. In axum, if a customer wanted to scope state to all routes within /users/ they are able to do the following: async fn handler(Extension(state): Extension) -> /* Return Type */ {} let api_routes = Router::new() .nest(\"/users\", user_routes.layer(Extension(/* state */))) .nest(\"/teams\", team_routes); In smithy-rs a customer is only able to apply a layer around the aws_smithy_http::routing::Router or around every route via the layer method described above.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Comparison to Axum","id":"269","title":"Comparison to Axum"},"27":{"body":"Smithy introduces a few concepts that are defined here: Shape: The core Smithy primitive. A smithy model is composed of nested shapes defining an API. Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt . Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately. Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a \"Rust block\" of code. writer.rustBlock(\"struct Model\") { model.fields.forEach { write(\"${field.name}: #T\", field.symbol) }\n} This would produce something like: struct Model { field1: u32, field2: String\n} Generators: A Generator, e.g. StructureGenerator, UnionGenerator generates more complex Rust code from a Smithy model. Protocol generators pull these individual tools together to generate code for an entire service / protocol. A developer's view of code generation can be found in this document .","breadcrumbs":"Smithy » Internals","id":"27","title":"Internals"},"270":{"body":"The proposal is presented as a series of compatible transforms to the existing service builder, each paired with a motivation. Most of these can be independently implemented, and it is stated in the cases where an interdependency exists. Although presented as a mutation to the existing service builder, the actual implementation should exist as an entirely separate builder, living in a separate namespace, reusing code generation from the old builder, while exposing a new Rust API. Preserving the old API surface will prevent breakage and make it easier to perform comparative benchmarks and testing.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Proposal","id":"270","title":"Proposal"},"271":{"body":"As described in Builder , the customer is required to perform two conversions. One from OperationRegistryBuilder via OperationRegistryBuilder::build, the second from OperationRegistryBuilder to Router via the From for Router implementation. The intermediary stop at OperationRegistry is not required and can be removed.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Remove two-step build procedure","id":"271","title":"Remove two-step build procedure"},"272":{"body":"As described in Builder , the OperationRegistryBuilder::build method is fallible - it yields a runtime error when one of the handlers has not been set. pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) } We can do away with fallibility if we allow for on Op0, Op1 to switch types during build and remove the Option from around the fields. The OperationRegistryBuilder then becomes struct OperationRegistryBuilder { operation_0: Op0, operation_1: Op1\n} impl OperationRegistryBuilder { pub fn operation0(mut self, value: NewOp0) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: value, operation1: self.operation1 } } pub fn operation1(mut self, value: NewOp1) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: self.operation0, operation1: value } }\n} impl OperationRegistryBuilder\nwhere Op0: Handler, Op1: Handler,\n{ pub fn build(self) -> OperationRegistry { OperationRegistry { operation0: self.operation0, operation1: self.operation1, } }\n} The customer will now get a compile time error rather than a runtime error when they fail to specify a handler.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Statically check for missing Handlers","id":"272","title":"Statically check for missing Handlers"},"273":{"body":"To construct a Router, the customer must either give a type ascription let app: Router = /* Service builder */.into(); or be explicit about the Router namespace let app = Router::from(/* Service builder */); If we switch from a From for Router to a build method on OperationRegistry the customer may simply let app = /* Service builder */.build(); There already exists a build method taking OperationRegistryBuilder to OperationRegistry, this is removed in Remove two-step build procedure . These two transforms pair well together for this reason.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Switch From for Router to an OperationRegistry::build method","id":"273","title":"Switch From for Router to an OperationRegistry::build method"},"274":{"body":"As mentioned in Comparison to Axum: Routing and Handlers , the smithy-rs service builder accepts handlers and only converts them into a tower::Service during the final conversion into a Router. There are downsides to this: The customer has no opportunity to apply middleware to a specific operation before they are all collected into Router. The Router does have a layer method, described in Router , but this applies the middleware uniformly across all operations. The builder has no way to apply middleware around customer applied middleware. A concrete example of where this would be useful is described in the Middleware Position section of RFC: Logging in the Presence of Sensitive Data . The customer has no way of expressing readiness of the underlying operation - all handlers are converted to services with Service::poll_ready returning Poll::Ready(Ok(())). The three use cases described above are supported by axum by virtue of the Router::route method accepting a tower::Service. The reader should consider a similar approach where the service builder setters accept a tower::Service rather than the Handler. Throughout this section we purposely ignore the existence of handlers accepting state alongside the {Operation}Input, this class of handlers serve as a distraction and can be accommodated with small perturbations from each approach. Approach A: Customer uses OperationHandler::new It's possible to make progress with a small changeset, by requiring the customer eagerly uses OperationHandler::new rather than it being applied internally within From for Router (see Handlers ). The setter would then become: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option\n} impl OperationRegistryBuilder { pub fn operation0(self, value: Op0) -> Self { self.operation1 = Some(value); self }\n} The API usage would then become async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} // Create a `Service` eagerly\nlet svc = OperationHandler::new(handler0); // Middleware can be applied at this point\nlet operation0 = /* A HTTP `tower::Layer` */.layer(op1_svc); OperationRegistryBuilder::default() .operation0(operation0) /* ... */ Note that this requires that the OperationRegistryBuilder stores services, rather than Handlers. An unintended and superficial benefit of this is that we are able to drop In{n} from the OperationRegistryBuilder - only Op{n} remains and it parametrizes each operation's tower::Service. It is still possible to retain the original API which accepts Handler by introducing the following setters: impl OperationRegistryBuilder { fn operation0_handler(self, handler: H) -> OperationRegistryBuilder, Op2> { OperationRegistryBuilder { operation0: OperationHandler::new(handler), operation1: self.operation1 } }\n} There are two points at which the customer might want to apply middleware: around tower::Service<{Operation}Input, Response = {Operation}Output> and tower::Service, that is, before and after the serialization/deserialization is performed. The change described only succeeds in the latter, and therefore is only a partial solution to (1). This solves (2), the service builder may apply additional middleware around the service. This does not solve (3), as the customer is not able to provide a tower::Service<{Operation}Input, Response = {Operation}Output>. Approach B: Operations as Middleware In order to achieve all three we model operations as middleware: pub struct Operation0 { inner: S,\n} impl Service for Operation0\nwhere S: Service\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, cx: &mut Context) -> Poll> { // We defer to the inner service for readiness self.inner.poll_ready(cx) } async fn call(&mut self, request: http::Request) -> Result { let input = /* Create `Operation0Input` from `request: http::Request` */; self.inner.call(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Notice the similarity between this and the OperationHandler, the only real difference being that we hold an inner service rather than a closure. In this way we have separated all model aware serialization/deserialization, we noted in Handlers , into this middleware. A consequence of this is that the user Operation0 must have two constructors: from_service, which takes a tower::Service. from_handler, which takes an async Operation0Input -> Operation0Output. A brief example of how this might look: use tower::util::{ServiceFn, service_fn}; impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, } }\n} impl Operation0> { pub fn from_handler(inner: F) -> Self { // Using `service_fn` here isn't strictly correct - there is slight misalignment of closure signatures. This // still serves to illustrate the proposal. Operation0::from_service(service_fn(inner)) }\n} The API usage then becomes: async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} // These are both `tower::Service` and hence can have middleware applied to them\nlet operation_0 = Operation0::from_handler(handler);\nlet operation_1 = Operation1::from_service(/* some service */); OperationRegistryBuilder::default() .operation0(operation_0) .operation1(operation_1) /* ... */ Approach C: Operations as Middleware Constructors While Attempt B solves all three problems, it fails to adequately model the Smithy semantics. An operation cannot uniquely define a tower::Service without reference to a parent Smithy service - information concerning the serialization/deserialization, error modes are all inherited from the Smithy service an operation is used within. In this way, Operation0 should not be a standalone middleware, but become middleware once accepted by the service builder. Any solution which provides an {Operation} structure and wishes it to be accepted by multiple service builders must deal with this problem. We currently build one library per service and hence have duplicate structures when service closures overlap. This means we wouldn't run into this problem today, but it would be a future obstruction if we wanted to reduce the amount of generated code. use tower::layer::util::{Stack, Identity};\nuse tower::util::{ServiceFn, service_fn}; // This takes the same form as `Operation0` defined in the previous attempt. The difference being that this is now\n// private.\nstruct Service0Operation0 { inner: S\n} impl Service for ServiceOperation0\nwhere S: Service\n{ /* Same as above */\n} pub struct Operation0 { inner: S, layer: L\n} impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, layer: Identity } }\n} impl Operation0, Identity> { pub fn from_handler(inner: F) -> Self { Operation0::from_service(service_fn(inner)) }\n} impl Operation0 { pub fn layer(self, layer: L) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, layer) } } pub fn logging(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, LoggingLayer::new(/* args */)) } } pub fn auth(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, /* Construct auth middleware */) } }\n} impl OperationRegistryBuilder { pub fn operation0(self, operation: Operation0) -> OperationRegistryBuilder<>::Service, Op2> where L: Layer> { // Convert `Operation0` to a `tower::Service`. let http_svc = Service0Operation0 { inner: operation.inner }; // Apply the layers operation.layer(http_svc) }\n} Notice that we get some additional type safety here when compared to Approach A and Approach B - operation0 accepts a Operation0 rather than a general tower::Service. We also get a namespace to include utility methods - notice the logging and auth methods. The RFC favours this approach out of all those presented. Approach D: Add more methods to the Service Builder An alternative to Approach C is to simply add more methods to the service builder while internally storing a tower::Service: operation0_from_service, accepts a tower::Service. operation0_from_handler, accepts an async Fn(Operation0Input) -> Operation0Output. operation0_layer, accepts a tower::Layer. This is functionally similar to Attempt C except that all composition is done internal to the service builder and the namespace exists in the method name, rather than the {Operation} struct.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Operations as Middleware Constructors","id":"274","title":"Operations as Middleware Constructors"},"275":{"body":"Currently the Router stores Box. As a result the Router::layer method, seen in Router , must re-box a service after every tower::Layer applied. The heap allocation Box::new itself is not cause for concern because Routers are typically constructed once at startup, however one might expect the indirection to regress performance when the server is running. Having the service type parameterized as Router, allows us to write: impl Router { fn layer(self, layer: &L) -> Router where L: Layer { /* Same internal implementation without boxing */ }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Service parameterized Routers","id":"275","title":"Service parameterized Routers"},"276":{"body":"Currently there is a single Router structure, described in Router , situated in the rust-runtime/aws-smithy-http-server crate, which is output by the service builder. This, roughly, takes the form of an enum listing the different protocols. #[derive(Debug)]\nenum Routes { RestXml(/* Container */), RestJson1(/* Container */), AwsJson1_0(/* Container */), AwsJson1_1(/* Container */),\n} Recall the form of the Service::call method, given in Router , which involved matching on the protocol and then performing protocol specific logic. Two downsides of modelling Router in this way are: Router is larger and has more branches than a protocol specific implementation. If a third-party wanted to extend smithy-rs to additional protocols Routes would have to be extended. A synopsis of this obstruction is presented in Should we generate the Router type issue. After taking the Switch From for Router to an OperationRegistry::build method transform, code generation is free to switch between return types based on the model. This allows for a scenario where a @restJson1 causes the service builder to output a specific RestJson1Router.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Routers","id":"276","title":"Protocol specific Routers"},"277":{"body":"Currently, protocol specific routing errors are either: Converted to RuntimeErrors and then http::Response (see unknown_operation ). Converted directly to a http::Response (see method_not_allowed ). This is an outlier to the common pattern. The from_request functions yield protocol specific errors which are converted to RequestRejections then RuntimeErrors (see ServerHttpBoundProtocolGenerator.kt ). In these scenarios protocol specific errors are converted into RuntimeError before being converted to a http::Response via into_response method. Two downsides of this are: RuntimeError enumerates all possible errors across all existing protocols, so is larger than modelling the errors for a specific protocol. If a third-party wanted to extend smithy-rs to additional protocols with differing failure modes RuntimeError would have to be extended. As in Protocol specific Errors , a synopsis of this obstruction is presented in Should we generate the Router type issue. Switching from using RuntimeError to protocol specific errors which satisfy a common interface, IntoResponse, would resolve these problem.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Errors","id":"277","title":"Protocol specific Errors"},"278":{"body":"Currently the service builder is named OperationRegistryBuilder. Despite the name being model agnostic, the OperationRegistryBuilder mutates when the associated service mutates. Renaming OperationRegistryBuilder to {Service}Builder would reflect the relationship between the builder and the Smithy service and prevent naming conflicts if multiple service builders are to exist in the same namespace. Similarly, the output of the service builder is Router. This ties the output of the service builder to a structure in rust-runtime. Introducing a type erasure here around Router using a newtype named {Service} would: Ensure we are free to change the implementation of {Service} without changing the Router implementation. Hide the router type, which is determined by the protocol specified in the model. Allow us to put a builder method on {Service} which returns {Service}Builder. This is compatible with Protocol specific Routers , we simply newtype the protocol specific router rather than Router. With both of these changes the API would take the form: let service_0: Service0 = Service0::builder() /* use the setters */ .build() .unwrap() .into(); With Remove two-step build procedure , Switch From for Router to a OperationRegistry::build method , and Statically check for missing Handlers we obtain the following API: let service_0: Service0 = Service0::builder() /* use the setters */ .build();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Type erasure with the name of the Smithy service","id":"278","title":"Type erasure with the name of the Smithy service"},"279":{"body":"A combination of all the proposed transformations results in the following API: struct Context { /* fields */\n} async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler_with_ext(input: Operation0Input, extension: Extension) -> Operation0Output { todo!()\n} struct Operation1Service { /* fields */\n} impl Service for Operation1Service { type Response = Operation1Output; /* implementation */\n} struct Operation1ServiceWithExt { /* fields */\n} impl Service<(Operation1Input, Extension)> for Operation1Service { type Response = Operation1Output; /* implementation */\n} // Create an operation from a handler\nlet operation_0 = Operation0::from_handler(handler); // Create an operation from a handler with extension\nlet operation_0 = Operation::from_handler(handler_with_ext); // Create an operation from a `tower::Service`\nlet operation_1_svc = Operation1Service { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Create an operation from a `tower::Service` with extension\nlet operation_1_svc = Operation1ServiceWithExtension { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Apply a layer\nlet operation_0 = operation_0.layer(/* layer */); // Use the service builder\nlet service_0 = Service0::builder() .operation_0(operation_0) .operation_1(operation_1) .build(); A toy implementation of the combined proposal is presented in this PR .","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Combined Proposal","id":"279","title":"Combined Proposal"},"28":{"body":"Smithy Type (links to design discussions) Rust Type (links to Rust documentation) blob Vec boolean bool string String byte i8 short i16 integer i32 long i64 float f32 double f64 bigInteger BigInteger (Not implemented yet) bigDecimal BigDecimal (Not implemented yet) timestamp DateTime document Document","breadcrumbs":"Smithy » Simple Shapes » Simple Shapes","id":"28","title":"Simple Shapes"},"280":{"body":"Add protocol specific routers to rust-runtime/aws-smithy-http-server. https://github.com/awslabs/smithy-rs/pull/1666 Add middleware primitives and error types to rust-runtime/aws-smithy-http-server. https://github.com/awslabs/smithy-rs/pull/1679 Add code generation which outputs new service builder. https://github.com/awslabs/smithy-rs/pull/1693 Deprecate OperationRegistryBuilder, OperationRegistry and Router. https://github.com/awslabs/smithy-rs/pull/1886 https://github.com/awslabs/smithy-rs/pull/2161","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Changes Checklist","id":"280","title":"Changes Checklist"},"281":{"body":"Status: Accepted Applies to: Client and Server This RFC outlines how Rust dependency versions are selected for the smithy-rs project, and strives to meet the following semi-conflicting goals: Dependencies are secure Vended libraries have dependency ranges that overlap other Rust libraries as much as possible When in conflict, the security goal takes priority over the compatibility goal.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » RFC: Dependency Versions","id":"281","title":"RFC: Dependency Versions"},"282":{"body":"The Rust crates within smithy-rs can be divided up into two categories: Library Crates: Crates that are published to crates.io with the intention that other projects will depend on them via their Cargo.toml files. This category does NOT include binaries that are published to crates.io with the intention of being installed with cargo install. Application Crates: All examples, binaries, tools, standalone tests, or other crates that are not published to crates.io with the intent of being depended on by other projects. All generated crates must be considered library crates even if they're not published since they are intended to be pulled into other Rust projects with other dependencies.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Categorization of Crates","id":"282","title":"Categorization of Crates"},"283":{"body":"The aws-smithy-http-server-python crate doesn't fit the categorization rules well since it is a runtime crate for a generated Rust application with bindings to Python. This RFC establishes this crate as an application crate since it needs to pull in application-specific dependencies such as tracing-subscriber in order to implement its full feature set.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Support crates for Applications","id":"283","title":"Support crates for Applications"},"284":{"body":"Application crates should use the latest versions of dependencies, but must use a version greater than or equal to the minimum secure version as determined by the RUSTSEC advisories database . Library crates must use the minimum secure version. This is illustrated at a high level below: graph TD S[Add Dependency] --> T{Crate Type?} T -->|Application Crate?| A[Use latest version] T -->|Library Crate?| L[Use minimum secure version]","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Dependency Version Rules","id":"284","title":"Dependency Version Rules"},"285":{"body":"If a dependency has multiple supported major versions, then the latest major version must be selected unless there is a compelling reason to do otherwise (such as the previous major version having been previously exposed in our public API). Choosing newer major versions will reduce the amount of upgrade work that needs to be done at a later date when support for the older version is inevitably dropped.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » What is a minimum secure version when there are multiple major versions?","id":"285","title":"What is a minimum secure version when there are multiple major versions?"},"286":{"body":"Some work needs to be done to establish these guidelines: Establish automation for enforcing minimum secure versions for the direct dependencies of library crates","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Changes Checklist","id":"286","title":"Changes Checklist"},"287":{"body":"Status: Implemented Applies to: Generated clients and shared rust-runtime crates This RFC proposes a pattern for writing Rust errors to provide consistent error context AND forwards/backwards compatibility. The goal is to strike a balance between these four goals: Errors are forwards compatible, and changes to errors are backwards compatible Errors are idiomatic and ergonomic. It is easy to match on them and extract additional information for cases where that's useful. The type system prevents errors from being used incorrectly (for example, incorrectly retrieving context for a different error variant) Error messages are easy to debug Errors implement best practices with Rust's Error trait (for example, implementing the optional source() function where possible) Note: This RFC is not about error backwards compatibility when it comes to error serialization/deserialization for transfer over the wire. The Smithy protocols cover that aspect.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » RFC: Error Context and Compatibility","id":"287","title":"RFC: Error Context and Compatibility"},"288":{"body":"This section examines some examples found in aws-config that illustrate different problems that this RFC will attempt to solve, and calls out what was done well, and what could be improved upon.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Past approaches in smithy-rs","id":"288","title":"Past approaches in smithy-rs"},"289":{"body":"To start, let's examine InvalidFullUriError (doc comments omitted): #[derive(Debug)]\n#[non_exhaustive]\npub enum InvalidFullUriError { #[non_exhaustive] InvalidUri(InvalidUri), #[non_exhaustive] NoDnsService, #[non_exhaustive] MissingHost, #[non_exhaustive] NotLoopback, DnsLookupFailed(io::Error),\n} impl Display for InvalidFullUriError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { InvalidFullUriError::InvalidUri(err) => write!(f, \"URI was invalid: {}\", err), InvalidFullUriError::MissingHost => write!(f, \"URI did not specify a host\"), // ... omitted ... } }\n} impl Error for InvalidFullUriError { fn source(&self) -> Option<&(dyn Error + 'static)> { match self { InvalidFullUriError::InvalidUri(err) => Some(err), InvalidFullUriError::DnsLookupFailed(err) => Some(err), _ => None, } }\n} This error does a few things well: Using #[non_exhaustive] on the enum allows new errors to be added in the future. Breaking out different error types allows for more useful error messages, potentially with error-specific context. Customers can match on these different error variants to change their program flow, although it's not immediately obvious if such use cases exist for this error. The error cause is available through the Error::source() impl for variants that have a cause. However, there are also a number of things that could be improved: All tuple/struct enum members are public, and InvalidUri is an error from the http crate. Exposing a type from another crate can potentially lock the GA SDK into a specific crate version if breaking changes are ever made to the exposed types. In this specific case, it prevents using alternate HTTP implementations that don't use the http crate. DnsLookupFailed is missing #[non_exhaustive], so new members can never be added to it. Use of enum tuples, even with #[non_exhaustive], adds friction to evolving the API since the tuple members cannot be named. Printing the source error in the Display impl leads to error repetition by reporters that examine the full source chain. The source() impl has a _ match arm, which means future implementers could forget to propagate a source when adding new error variants. The error source can be downcasted to InvalidUri type from http in customer code. This is a leaky abstraction where customers can start to rely on the underlying library the SDK uses in its implementation, and if that library is replaced/changed, it can silently break the customer's application. Note: later in the RFC, I'll demonstrate why fixing this issue is not practical.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: InvalidFullUriError","id":"289","title":"Case study: InvalidFullUriError"},"29":{"body":"Rust currently has no standard library or universally accepted large-number crate. Until one is stabilized, a string representation is a reasonable compromise: pub struct BigInteger(String);\npub struct BigDecimal(String); This will enable us to add helpers over time as requested. Users will also be able to define their own conversions into their preferred large-number libraries. As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here .","breadcrumbs":"Smithy » Simple Shapes » Big Numbers","id":"29","title":"Big Numbers"},"290":{"body":"Next, let's look at a much simpler error. The ProfileParseError is focused purely on the parsing logic for the SDK config file: #[derive(Debug, Clone)]\npub struct ProfileParseError { location: Location, message: String,\n} impl Display for ProfileParseError { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!( f, \"error parsing {} on line {}:\\n {}\", self.location.path, self.location.line_number, self.message ) }\n} impl Error for ProfileParseError {} What this error does well: The members are private, so #[non_exhaustive] isn't even necessary The error is completely opaque (maximizing compatibility) while still being debuggable thanks to the flexible messaging What could be improved: It needlessly implements Clone, which may prevent it from holding an error source in the future since errors are often not Clone. In the future, if more error variants are needed, a private inner error kind enum could be added to change messaging, but there's not a nice way to expose new variant-specific information to the customer. Programmatic access to the error Location may be desired, but this can be trivially added in the future without a breaking change by adding an accessor method.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: ProfileParseError","id":"290","title":"Case study: ProfileParseError"},"291":{"body":"The SDK currently generates errors such as the following (from S3): #[non_exhaustive]\npub enum Error { BucketAlreadyExists(BucketAlreadyExists), BucketAlreadyOwnedByYou(BucketAlreadyOwnedByYou), InvalidObjectState(InvalidObjectState), NoSuchBucket(NoSuchBucket), NoSuchKey(NoSuchKey), NoSuchUpload(NoSuchUpload), NotFound(NotFound), ObjectAlreadyInActiveTierError(ObjectAlreadyInActiveTierError), ObjectNotInActiveTierError(ObjectNotInActiveTierError), Unhandled(Box),\n} Each error variant gets its own struct, which can hold error-specific contextual information. Except for the Unhandled variant, both the error enum and the details on each variant are extensible. The Unhandled variant should move the error source into a struct so that its type can be hidden. Otherwise, the code generated errors are already aligned with the goals of this RFC.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: code generated client errors","id":"291","title":"Case study: code generated client errors"},"292":{"body":"","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Approaches from other projects","id":"292","title":"Approaches from other projects"},"293":{"body":"The standard library uses an Error struct with an accompanying ErrorKind enum for its IO error. Roughly: #[derive(Debug)]\n#[non_exhaustive]\npub enum ErrorKind { NotFound, // ... omitted ... Other,\n} #[derive(Debug)]\npub struct Error { kind: ErrorKind, source: Box,\n} What this error does well: It is extensible since the ErrorKind is non-exhaustive It has an Other error type that can be instantiated by users in unit tests, making it easier to unit test error handling What could be improved: There isn't an ergonomic way to add programmatically accessible error-specific context to this error in the future The source error can be downcasted, which could be a trap for backwards compatibility.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » std::io::Error","id":"293","title":"std::io::Error"},"294":{"body":"Hyper has outlined some problems they want to address with errors for the coming 1.0 release. To summarize: It's difficult to match on specific errors (Hyper 0.x's Error relies on is_x methods for error matching rather than enum matching). Error reporters duplicate information since the hyper 0.x errors include the display of their error sources Error::source() can leak internal dependencies","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Hyper 1.0","id":"294","title":"Hyper 1.0"},"295":{"body":"There is discussion in the errors working group about how to avoid leaking internal dependency error types through error source downcasting. One option is to create an opaque error wrapping new-type that removes the ability to downcast to the other library's error. This, however, can be circumvented via unsafe code, and also breaks the ability for error reporters to properly display the error (for example, if the error has backtrace information, that would be inaccessible to the reporter). This situation might improve if the nightly request_value/request_ref/provide functions on std::error::Error are stabilized, since then contextual information needed for including things such as a backtrace could still be retrieved through the opaque error new-type. This RFC proposes that error types from other libraries not be directly exposed in the API, but rather, be exposed indirectly through Error::source as &dyn Error + 'static. Errors should not require downcasting to be useful. Downcasting the error's source should be a last resort, and with the understanding that the type could change at a later date with no compile-time guarantees.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Opaque Error Sources","id":"295","title":"Opaque Error Sources"},"296":{"body":"Taking a customer's perspective, there are two broad categories of errors: Actionable: Errors that can/should influence program flow; where it's useful to do different work based on additional error context or error variant information Informative: Errors that inform that something went wrong, but where it's not useful to match on the error to change program flow This RFC proposes that a consistent pattern be introduced to cover these two use cases for all errors in the public API for the Rust runtime crates and generated client crates.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Proposal","id":"296","title":"Error Proposal"},"297":{"body":"Actionable errors are represented as enums. If an error variant has an error source or additional contextual information, it must use a separate context struct that is referenced via tuple in the enum. For example: // Good: new error types can be added in the future\n#[non_exhaustive]\npub enum Error { // Good: This is exhaustive and uses a tuple, but its sole member is an extensible struct with private fields VariantA(VariantA), // Bad: The fields are directly exposed and can't have accessor methods. The error // source type also can't be changed at a later date since. #[non_exhaustive] VariantB { some_additional_info: u32, source: AnotherError // AnotherError is from this crate }, // Bad: There's no way to add additional contextual information to this error in the future, even // though it is non-exhaustive. Changing it to a tuple or struct later leads to compile errors in existing // match statements. #[non_exhaustive] VariantC, // Bad: Not extensible if additional context is added later (unless that context can be added to `AnotherError`) #[non_exhaustive] VariantD(AnotherError), // Bad: Not extensible. If new context is added later (for example, a second endpoint), there's no way to name it. #[non_exhaustive] VariantE(Endpoint, AnotherError), // Bad: Exposes another library's error type in the public API, // which makes upgrading or replacing that library a breaking change #[non_exhaustive] VariantF { source: http::uri::InvalidUri }, // Bad: The error source type is public, and even though its a boxed error, it won't // be possible to change it to an opaque error type later (for example, if/when // opaque errors become practical due to standard library stabilizations). #[non_exhaustive] VariantG { source: Box, }\n} pub struct VariantA { some_field: u32, // This is private, so it's fine to reference the external library's error type source: http::uri::InvalidUri\n} impl VariantA { fn some_field(&self) -> u32 { self.some_field }\n} Error variants that contain a source must return it from the Error::source method. The source implementation should not use the catch all (_) match arm, as this makes it easy to miss adding a new error variant's source at a later date. The error Display implementation must not include the source in its output: // Good\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), Self::VariantB { some_additional_info, .. } => write!(f, \"variant b ({some_additional_info})\"), // ... and so on } }\n} // Bad\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), // Bad: includes the source in the `Display` output, which leads to duplicate error information Self::VariantB { some_additional_info, source } => write!(f, \"variant b ({some_additional_info}): {source}\"), // ... and so on } }\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Actionable error pattern","id":"297","title":"Actionable error pattern"},"298":{"body":"Informative errors must be represented as structs. If error messaging changes based on an underlying cause, then a private error kind enum can be used internally for this purpose. For example: #[derive(Debug)]\npub struct InformativeError { some_additional_info: u32, source: AnotherError,\n} impl fmt::Display for InformativeError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, \"some informative message with {}\", self.some_additional_info) }\n} impl Error for InformativeError { fn source(&self) -> Option<&(dyn Error + 'static)> { Some(&self.source) }\n} In general, informative errors should be referenced by variants in actionable errors since they cannot be converted to actionable errors at a later date without a breaking change. This is not a hard rule, however. Use your best judgement for the situation.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Informative error pattern","id":"298","title":"Informative error pattern"},"299":{"body":"In code where errors are logged rather than returned to the customer, the full error source chain must be displayed. This will be made easy by placing a DisplayErrorContext struct in aws-smithy-types that is used as a wrapper to get the better error formatting: tracing::warn!(err = %DisplayErrorContext(err), \"some message\"); This might be implemented as follows: #[derive(Debug)]\npub struct DisplayErrorContext(pub E); impl fmt::Display for DisplayErrorContext { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write_err(f, &self.0)?; // Also add a debug version of the error at the end write!(f, \" ({:?})\", self) }\n} fn write_err(f: &mut fmt::Formatter<'_>, err: &dyn Error) -> fmt::Result { write!(f, \"{}\", err)?; if let Some(source) = err.source() { write!(f, \": \")?; write_err(f, source)?; } Ok(())\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Displaying full error context","id":"299","title":"Displaying full error context"},"3":{"body":"The Rust SDK is built on Tower Middleware, Tokio & Hyper. We're continuing to iterate on the internals to enable running the AWS SDK in other executors & HTTP stacks. As an example, you can see a demo of adding reqwest as a custom HTTP stack to gain access to its HTTP Proxy support! For more details about the SDK internals see Operation Design","breadcrumbs":"Design Overview » Internals","id":"3","title":"Internals"},"30":{"body":"chrono is the current de facto library for datetime in Rust, but it is pre-1.0. DateTimes are represented by an SDK defined structure modeled on std::time::Duration from the Rust standard library. /// DateTime in time.\n///\n/// DateTime in time represented as seconds and sub-second nanos since\n/// the Unix epoch (January 1, 1970 at midnight UTC/GMT).\n///\n/// This type can be converted to/from the standard library's [`SystemTime`](std::time::SystemTime):\n/// ```rust\n/// # fn doc_fn() -> Result<(), aws_smithy_types::date_time::ConversionError> {\n/// # use aws_smithy_types::date_time::DateTime;\n/// # use std::time::SystemTime;\n/// use std::convert::TryFrom;\n///\n/// let the_millennium_as_system_time = SystemTime::try_from(DateTime::from_secs(946_713_600))?;\n/// let now_as_date_time = DateTime::from(SystemTime::now());\n/// # Ok(())\n/// # }\n/// ```\n///\n/// The [`aws-smithy-types-convert`](https://crates.io/crates/aws-smithy-types-convert) crate\n/// can be used for conversions to/from other libraries, such as\n/// [`time`](https://crates.io/crates/time) or [`chrono`](https://crates.io/crates/chrono).\n#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]\npub struct DateTime { pub(crate) seconds: i64, /// Subsecond nanos always advances the wallclock time, even for times where seconds is negative /// /// Bigger subsecond nanos => later time pub(crate) subsecond_nanos: u32,\n} Functions in the aws-smithy-types-convert crate provide conversions to other crates, such as time or chrono.","breadcrumbs":"Smithy » Simple Shapes » Timestamps","id":"30","title":"Timestamps"},"300":{"body":"Update every struct/enum that implements Error in all the non-server Rust runtime crates Hide error source type in Unhandled variant in code generated errors Remove Clone from ProfileParseError and any others that have it","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Changes Checklist","id":"300","title":"Changes Checklist"},"301":{"body":"This is a checklist meant to aid code review of new errors: The error fits either the actionable or informative pattern If the error is informative, it's clear that it will never be expanded with additional variants in the future The Display impl does not write the error source to the formatter The catch all _ match arm is not used in the Display or Error::source implementations Error types from external libraries are not exposed in the public API Error enums are #[non_exhaustive] Error enum variants that don't have a separate error context struct are #[non_exhaustive] Error context is exposed via accessors rather than by public fields Actionable errors and their context structs are in an error submodule for any given module. They are not mixed with other non-error code","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Code Review Checklist","id":"301","title":"Error Code Review Checklist"},"302":{"body":"Status: Accepted Applies to: Server RFC 20 introduced a new service builder API. It supports fine-grained configuration at multiple levels (per-handler middlewares, router middlewares, plugins) while trying to prevent some misconfiguration issues at compile-time (i.e. missing operation handlers). There is consensus that the new API is an improvement over the pre-existing OperationRegistryBuilder/OperationRegistry, which is now on its way to deprecation in one of the next releases. This RFC builds on top of RFC 20 to explore an alternative API design prior to its stabilisation. The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » RFC: Evolving the new service builder API","id":"302","title":"RFC: Evolving the new service builder API"},"303":{"body":"Type-heavy builders can lead to a poor developer experience when it comes to writing function signatures, conditional branches and clarity of error messages. This RFC provides examples for the issues we are trying to mitigate and showcases an alternative design for the service builder, cutting generic parameters from 2*(N+1) to 2, where N is the number of operations on the service. We rely on eagerly upgrading the registered handlers and operations to Route to achieve this reduction. Goals: Maximise API ergonomics, with a particular focus on the developer experience for Rust beginners. Strategy: Reduce type complexity, exposing a less generic API; Provide clearer errors when the service builder is misconfigured. Trade-offs: Reduce compile-time safety. Missing handlers will be detected at runtime instead of compile-time. Constraints: There should be no significant degradation in runtime performance (i.e. startup time for applications).","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Overview","id":"303","title":"Overview"},"304":{"body":"Let's start by reviewing the API proposed in RFC 20 . We will use the Pokemon service as our driving example throughout the RFC. This is what the startup code looks like: #[tokio::main]\npub async fn main() { // [...] let app = PokemonService::builder() .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .check_health(check_health) .build(); // Setup shared state and middlewares. let shared_state = Arc::new(State::default()); let app = app.layer(&AddExtensionLayer::new(shared_state)); // Start the [`hyper::Server`]. let bind: SocketAddr = /* */; let server = hyper::Server::bind(&bind).serve(app.into_make_service()); // [...]\n} The builder is infallible: we are able to verify at compile-time that all handlers have been provided using the typestate builder pattern .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Handling missing operations","id":"304","title":"Handling missing operations"},"305":{"body":"What happens if we stray away from the happy path? We might forget, for example, to add the check_health handler. The compiler greets us with this error: error[E0277]: the trait bound `MissingOperation: Upgradable` is not satisfied --> pokemon-service/src/bin/pokemon-service.rs:38:10 |\n38 | .build(); | ^^^^^ the trait `Upgradable` is not implemented for `MissingOperation` | = help: the following other types implement trait `Upgradable`: FailOnMissingOperation Operation The compiler complains that MissingOperation does not implement the Upgradable trait. Neither MissingOperation nor Upgradable appear in the startup code we looked at. This is likely to be the first time the developer sees those traits, assuming they haven't spent time getting familiar with aws-smithy-http-server's internals. The help section is unhelpful, if not actively misdirecting. How can the developer figure out that the issue lies with check_health? They need to inspect the generic parameters attached to Upgradable in the code label or the top-level error message - we see, among other things, a CheckHealth parameter. That is the hint they need to follow to move forward. We unfortunately do not have agency on the compiler error we just examined. Rust does not expose hooks for crate authors to tweak the errors returned when a type does not implement a trait we defined. All implementations of the typestate builder pattern accept this shortcoming in exchange for compile-time safety. Is it a good tradeoff in our case?","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Compiler errors cannot be tuned","id":"305","title":"Compiler errors cannot be tuned"},"306":{"body":"If build returns an error, the HTTP server is never launched. The application fails to start. Let's examine the cost of this runtime error along two dimensions: Impact on developer productivity; Impact on end users. We'd love for this issue to be caught on the developer machine - it provides the shortest feedback loop. The issue won't be surfaced by a cargo check or cargo build invocation, as it happens with the typestate builder approach. It should be surfaced by executing the application test suite, assuming that the developer has written at least a single integration test - e.g. a test that passes a request to the call method exposed by PokemonService or launches a full-blown instance of the application which is then probed via an HTTP client. If there are no integration tests, the issue won't be detected on the developer machine nor in CI. Nonetheless, it is unlikely to cause any end-user impact even if it manages to escape detection and reach production. The deployment will never complete if they are using a progressive rollout strategy: instances of the new version will crash as soon as they are launched, never getting a chance to mark themselves as healthy; all traffic will keep being handled by the old version, with no visible impact on end users of the application. Given the above, we think that the impact of a runtime error is low enough to be worth exploring designs that do not guarantee compile-safety for the builder API [1] .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » The cost of a runtime error","id":"306","title":"The cost of a runtime error"},"307":{"body":"Moving from a compile-time error to a runtime error does not require extensive refactoring. The definition of PokemonServiceBuilder goes from: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Op1, do_nothing: Op2, get_pokemon_species: Op3, get_server_statistics: Op4, capture_pokemon: Op5, get_storage: Op6, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} to: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} All operation fields are now Option-wrapped. We introduce a new MissingOperationsError error to hold the names of the missing operations and their respective setter methods: #[derive(Debug)]\npub struct MissingOperationsError { service_name: &'static str, operation_names2setter_methods: HashMap<&'static str, &'static str>,\n} impl Display for MissingOperationsError { /* */ }\nimpl std::error::Error for MissingOperationsError {} which is then used in build as error type (not shown here for brevity) . We can now try again to stray away from the happy path by forgetting to register a handler for the CheckHealth operation. The code compiles just fine this time, but the application fails when launched via cargo run: ERROR pokemon_service: You must specify a handler for all operations attached to the `Pokemon` service.\nWe are missing handlers for the following operations:\n- com.aws.example#CheckHealth Use the dedicated methods on `PokemonServiceBuilder` to register the missing handlers:\n- PokemonServiceBuilder::check_health The error speaks the language of the domain, Smithy's interface definition language: it mentions operations, services, handlers. Understanding the error requires no familiarity with smithy-rs' internal type machinery or advanced trait patterns in Rust. We can also provide actionable suggestions: Rust beginners should be able to easily process the information, rectify the mistake and move on quickly.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Providing clear feedback","id":"307","title":"Providing clear feedback"},"308":{"body":"Let's take a second look at the (updated) definition of PokemonServiceBuilder: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} We have 13 generic parameters: 1 for plugins (Pl); 2 for each operation (OpX and ExtsX); All those generic parameters were necessary when we were using the typestate builder pattern . They kept track of which operation handlers were missing: if any OpX was set to MissingOperation when calling build -> compilation error! Do we still need all those generic parameters if we move forward with this RFC? You might be asking yourselves: why do those generics bother us? Is there any harm in keeping them around? We'll look at the impact of those generic parameters on two scenarios: Branching in startup logic; Breaking down a monolithic startup function into multiple smaller functions.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Simplifying PokemonServiceBuilder's signature","id":"308","title":"Simplifying PokemonServiceBuilder's signature"},"309":{"body":"Conditional statements appear quite often in the startup logic for an application (or in the setup code for its integration tests). Let's consider a toy example: if a check_database flag is set to true, we want to register a different check_health handler - one that takes care of pinging the database to make sure it's up. The \"obvious\" solution would look somewhat like this: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\napp.build(); The compiler is not pleased: error[E0308]: `if` and `else` have incompatible types --> pokemon-service/src/bin/pokemon-service.rs:39:9 |\n36 | let app = if check_database { | _______________-\n37 | | app.check_health(check_health) | | ------------------------------ expected because of this\n38 | | } else {\n39 | | app.check_health(check_health_with_database) | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected fn item, found a different fn item\n40 | | }; | |_____- `if` and `else` have incompatible types | = note: expected struct `PokemonServiceBuilder impl Future {check_health}>>, _, _, _, _, _, _, _, _, _, _, _>` found struct `PokemonServiceBuilder impl Future {check_health_with_database}>>, _, _, _, _, _, _, _, _, _, _, _>` The developer must be aware of the following facts to unpack the error message: The two branches of an if/else statement need to return the same type. Each function closure has a new unique type (represented as fn(CheckHealthInput) -> impl Future {check_health} for check_health); The handler function type becomes part of the overall PokemonServiceBuilder type, a cog in the larger Op1 generic parameter used to hold the handler for the CheckHealth operation (i.e. Operation impl Future {check_health}>>); The second fact requires an intermediate understanding of Rust's closures and opaque types (impl Trait). It's quite likely to confuse Rust beginners. The developer has three options to move forward: Convert check_health and check_health_with_database into a common type that can be passed as a handler to PokemonServiceBuilder::check_health; Invoke the build method inside the two branches in order to return a \"plain\" PokemonService> from both branches. Embed the configuration parameter (check_database) in the application state, retrieve it inside check_health and perform the branching there. I can't easily see a way to accomplish 1) using the current API. Pursuing 2) is straight-forward with a single conditional: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health).build()\n} else { app.check_health(check_health_with_database).build()\n}; It becomes more cumbersome when we have more than a single conditional: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nmatch (check_database, include_cpu_statics) { (true, true) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics_with_cpu) .build(), (true, false) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics) .build(), (false, true) => app .check_health(check_health) .get_server_statistics(get_server_statistics_with_cpu()) .build(), (false, false) => app .check_health(check_health) .get_server_statistics(get_server_statistics) .build(),\n} A lot of repetition compared to the code for the \"obvious\" approach: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\nlet app = if include_cpu_statistics { app.get_server_statistics(get_server_statistics_with_cpu)\n} else { app.get_server_statistics(get_server_statistics)\n};\napp.build(); The obvious approach becomes viable if we stop embedding the handler function type in PokemonServiceBuilder's overall type.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Branching -> \"Incompatible types\"","id":"309","title":"Branching -> \"Incompatible types\""},"31":{"body":"Rust has two different String representations: String, an owned, heap allocated string. &str, a reference to a string, owned elsewhere. In ideal world, input shapes, where there is no reason for the strings to be owned would use &'a str. Outputs would likely use String. However, Smithy does not provide a distinction between input and output shapes. A third compromise could be storing Arc, an atomic reference counted pointer to a String. This may be ideal for certain advanced users, but is likely to confuse most users and produces worse ergonomics. This is an open design area where we will seek user feedback. Rusoto uses String and there has been one feature request to date to change that. Current models represent strings as String.","breadcrumbs":"Smithy » Simple Shapes » Strings","id":"31","title":"Strings"},"310":{"body":"Services with a high number of routes can lead to fairly long startup routines. Developers might be tempted to break down the startup routine into smaller functions, grouping together operations with common requirements (similar domain, same middlewares, etc.). What does the signature of those smaller functions look like? The service builder must be one of the arguments if we want to register handlers. We must also return it to allow the orchestrating function to finish the application setup (our setters take ownership of self). A first sketch: fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { /* */\n} The compiler demands to see those generic parameters in the signature: error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:27 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:53 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` We could try to nudge the compiler into inferring them: fn partial_setup( builder: PokemonServiceBuilder<_, _, _, _, _, _>,\n) -> PokemonServiceBuilder<_, _, _, _, _, _> { /* */\n} but that won't fly either: error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types --> pokemon-service/src/bin/pokemon-service.rs:30:28 |\n30 | ) -> PokemonServiceBuilder<_, _, _, _, _, _> { | ^ ^ ^ ^ ^ ^ not allowed in type signatures | | | | | | | | | | | not allowed in type signatures | | | | not allowed in type signatures | | | not allowed in type signatures | | not allowed in type signatures | not allowed in type signatures We must type it all out: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} That compiles, at last. Let's try to register an operation handler now: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder.get_server_statistics(get_server_statistics)\n} That looks innocent, but it doesn't fly: error[E0308]: mismatched types --> pokemon-service/src/bin/pokemon-service.rs:31:5 |\n28 | fn partial_setup( | --- this type parameter\n29 | builder: PokemonServiceBuilder,\n30 | ) -> PokemonServiceBuilder { | --------------------------------------------------- expected `PokemonServiceBuilder` because of return type\n31 | builder.get_server_statistics(get_server_statistics) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `Op4`, found struct `Operation` | = note: expected struct `PokemonServiceBuilder<_, _, _, Op4, _, _, _>` found struct `PokemonServiceBuilder<_, _, _, Operation>) -> impl Future {get_server_statistics}>>, _, _, _> By registering a handler we have changed the corresponding OpX generic parameter. Fixing this error requires some non-trivial type gymnastic - I gave up after trying for ~15 minutes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Refactoring into smaller functions -> Prepare for some type juggling!","id":"310","title":"Refactoring into smaller functions -> Prepare for some type juggling!"},"311":{"body":"The previous two examples should have convinced you that the 2N+1 generic parameters on PokemonServiceBuilder harm the ergonomics of our API. Can we get rid of them? Yes! Let's look at one possible approach: pub struct PokemonServiceBuilder { check_health: Option>, do_nothing: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, capture_pokemon: Option>, get_storage: Option>, plugin: Plugin,\n} We no longer store the raw handlers inside PokemonServiceBuilder. We eagerly upgrade the operation handlers to a Route instance when they are registered with the builder. impl PokemonServiceBuilder { pub fn get_pokemon_species(mut self, handler: Handler) -> Self /* Complex trait bounds */ { let route = Route::new(Operation::from_handler(handler).upgrade(&self.plugin)); self.get_pokemon_species = Some(route); self } /* other setters and methods */\n} The existing API performs the upgrade when build is called, forcing PokemonServiceBuilder to store the raw handlers and keep two generic parameters around (OpX and ExtsX) for each operation. The proposed API requires plugins to be specified upfront, when creating an instance of the builder. They cannot be modified after a PokemonServiceBuilder instance has been built: impl PokemonService<()> { /// Constructs a builder for [`PokemonService`]. pub fn builder(plugin: Plugin) -> PokemonServiceBuilder { PokemonServiceBuilder { check_health: None, do_nothing: None, get_pokemon_species: None, get_server_statistics: None, capture_pokemon: None, get_storage: None, plugin, } }\n} This constraint guarantees that all operation handlers are upgraded to a Route using the same set of plugins. Having to specify all plugins upfront is unlikely to have a negative impact on developers currently using smithy-rs. We have seen how cumbersome it is to break the startup logic into different functions using the current service builder API. Developers are most likely specifying all plugins and routes in the same function even if the current API allows them to intersperse route registrations and plugin registrations: they would simply have to re-order their registration statements to adopt the API proposed in this RFC.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Cut them down: going from 2N+1 to 2 generic parameters","id":"311","title":"Cut them down: going from 2N+1 to 2 generic parameters"},"312":{"body":"The new design prohibits the following invocation style: let plugin = ColorPlugin::new();\nPokemonService::builder(plugin) // [...] .get_pokemon_species(get_pokemon_species) // Add PrintPlugin .print() .get_storage(get_storage) .build() We could choose to remove this limitation and allow handlers to be upgraded using a different set of plugins depending on where they were registered. In the snippet above, for example, we would have: get_pokemon_species is upgraded using just the ColorPlugin; get_storage is upgraded using both the ColorPlugin and the PrintPlugin. There are no technical obstacles preventing us from implementing this API, but I believe it could easily lead to confusion and runtime surprises due to a mismatch between what the developer might expect PrintPlugin to apply to (all handlers) and what it actually applies to (handlers registered after .print()). We can provide developers with other mechanisms to register plugins for a single operation or a subset of operations without introducing ambiguity. For attaching additional plugins to a single operation, we could introduce a blanket Pluggable implementation for all operations in aws-smithy-http-server: impl Pluggable for Operation where Pl: Plugin { type Output = Operation; fn apply(self, new_plugin: Pl) -> Self::Output { new_plugin.map(self) }\n} which would allow developers to invoke op.apply(MyPlugin) or call extensions methods such as op.print() where op is an Operation. For attaching additional plugins to a subgroup of operations, instead, we could introduce nested builders: let initial_plugins = ColorPlugin;\nlet mut builder = PokemonService::builder(initial_plugins) .get_pokemon_species(get_pokemon_species);\nlet additional_plugins = PrintPlugin;\n// PrintPlugin will be applied to all handlers registered on the scoped builder returned by `scope`.\nlet nested_builder = builder.scoped(additional_plugins) .get_storage(get_storage) .capture_pokemon(capture_pokemon) // Register all the routes on the scoped builder with the parent builder. // API names are definitely provisional and bikesheddable. .attach(builder);\nlet app = builder.build(); Both proposals are outside the scope of this RFC, but they are shown here for illustrative purposes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: allow new plugins to be registered after builder creation","id":"312","title":"Alternatives: allow new plugins to be registered after builder creation"},"313":{"body":"A lot of our issues stem from type mismatch errors: we are encoding the type of our handlers into the overall type of the service builder and, as a consequence, we end up modifying that type every time we set a handler or modify its state. Type erasure is a common approach for mitigating these issues - reduce those generic parameters to a common type to avoid the mismatch errors. This whole RFC can be seen as a type erasure proposal - done eagerly, as soon as the handler is registered, using Option> as our \"common type\" after erasure. We could try to strike a different balance - i.e. avoid performing type erasure eagerly, but allow developers to erase types on demand. Based on my analysis, this could happen in two ways: We cast handlers into a Box> to which we can later apply plugins (lazy type erasure); We upgrade registered handlers to Route and apply plugins in the process (eager type erasure on-demand). Let's ignore these implementation issues for the time being to focus on what the ergonomics would look like assuming we can actually perform type erasure. In practice, we are going to assume that: In approach 1), we can call .boxed() on a registered operation and get a Box back; In approach 2), we can call .erase() on the entire service builder and convert all registered operations to Route while keeping the MissingOperation entries as they are. After erase has been called, you can no longer register plugins (or, alternatively, the plugins you register will only apply new handlers). We are going to explore both approaches under the assumption that we want to preserve compile-time verification for missing handlers. If we are willing to abandon compile-time verification, we get better ergonomics since all OpX and ExtsX generic parameters can be erased (i.e. we no longer need to worry about MissingOperation). On Box> This is the current definition of the Upgradable trait: /// Provides an interface to convert a representation of an operation to a HTTP [`Service`](tower::Service) with\n/// canonical associated types.\npub trait Upgradable { type Service: Service, Response = http::Response>; /// Performs an upgrade from a representation of an operation to a HTTP [`Service`](tower::Service). fn upgrade(self, plugin: &Plugin) -> Self::Service;\n} In order to perform type erasure, we need to determine: what type parameters we are going to pass as generic arguments to Upgradable; what type we are going to use for the associated type Service. We have: there is a single known protocol for a service, therefore we can set Protocol to its concrete type (e.g. AwsRestJson1); each handler refers to a different operation, therefore we cannot erase the Operation and the Exts parameters; both Body and Plugin appear as generic parameters on the service builder itself, therefore we can set them to the same type; we can use Route to normalize the Service associated type. The above leaves us with two unconstrained type parameters, Operation and Exts, for each operation. Those unconstrained type parameters leak into the type signature of the service builder itself. We therefore find ourselves having, again, 2N+2 type parameters. Branching Going back to the branching example: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health(check_health)\n} else { builder.check_health(check_health_with_database)\n};\nlet app = builder.build(); In approach 1), we could leverage the .boxed() method to convert the actual OpX type into a Box, thus ensuring that both branches return the same type: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder.check_health_operation(Operation::from_handler(check_health_with_database).boxed())\n};\nlet app = builder.build(); The same cannot be done when conditionally registering a route, because on the else branch we cannot convert MissingOperation into a Box since MissingOperation doesn't implement Upgradable - the pillar on which we built all our compile-time safety story. // This won't compile!\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder\n}; In approach 2), we can erase the whole builder in both branches when they both register a route: let check_database: bool = /* */;\nlet boxed_builder = if check_database { builder.check_health(check_health).erase()\n} else { builder.check_health(check_health_with_database).erase()\n};\nlet app = boxed_builder.build(); but, like in approach 1), we will still get a type mismatch error if one of the two branches leaves the route unset. Refactoring into smaller functions Developers would still have to spell out all generic parameters when writing a function that takes in a builder as a parameter: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} Writing the signature after having modified the builder becomes easier though. In approach 1), they can explicitly change the touched operation parameters to the boxed variant: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder< Op1, Op2, Op3, Box>, Op5, Op6, Body, Plugin, Body, Plugin, Exts4=Exts > { builder.get_server_statistics(get_server_statistics)\n} It becomes trickier in approach 2), since to retain compile-time safety on the builder we expect erase to map MissingOperation into MissingOperation. Therefore, we can't write something like this: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder, Route, Route, Route, Route, Route> { builder.get_server_statistics(get_server_statistics).()\n} The compiler would reject it since it can't guarantee that all other operations can be erased to a Route. This is likely to require something along the lines of: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder<::Erased, ::Erased, ::Erased, ::Erased, ::Erased, ::Erased>\nwhere // Omitting a bunch of likely needed additional generic parameters and bounds here Op1: TypeErase, Op2: TypeErase, Op3: TypeErase, Op4: TypeErase, Op5: TypeErase, Op6: TypeErase,\n{ builder.get_server_statistics(get_server_statistics).()\n} Summary Both approaches force us to have a number of generic parameters that scales linearly with the number of operations on the service, affecting the ergonomics of the resulting API in both the branching and the refactoring scenarios. We believe that the ergonomics advantages of the proposal advanced by this RFC outweigh the limitation of having to specify your plugins upfront, when creating the builder instance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: lazy and eager-on-demand type erasure","id":"313","title":"Alternatives: lazy and eager-on-demand type erasure"},"314":{"body":"The Pluggable trait was an interesting development out of RFC 20 : it allows you to attach methods to a service builder using an extension trait. /// An extension to service builders to add the `print()` function.\npub trait PrintExt: aws_smithy_http_server::plugin::Pluggable { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> Self::Output where Self: Sized, { self.apply(PrintPlugin) }\n} This pattern needs to be revisited if we want to move forward with this RFC, since new plugins cannot be registered after the builder has been instantiated. My recommendation would be to implement Pluggable for PluginStack, providing the same pattern ahead of the creation of the builder: // Currently you'd have to go for `PluginStack::new(IdentityPlugin, IdentityPlugin)`,\n// but that can be smoothed out even if this RFC isn't approved.\nlet plugin_stack = PluginStack::default() // Use the extension method .print();\nlet app = PokemonService::builder(plugin_stack) .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .build()?;","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Builder extensions: what now?","id":"314","title":"Builder extensions: what now?"},"315":{"body":"The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Playing around with the design","id":"315","title":"Playing around with the design"},"316":{"body":"Update codegen-server to generate the proposed service builder API https://github.com/awslabs/smithy-rs/pull/1954 Implement Pluggable for PluginStack https://github.com/awslabs/smithy-rs/pull/1954 Evaluate the introduction of a PluginBuilder as the primary API to compose multiple plugins (instead of PluginStack::new(IdentityPlugin, IdentityPlugin).apply(...)) https://github.com/awslabs/smithy-rs/pull/1971 The impact of a runtime error on developer productivity can be further minimised by encouraging adoption of integration testing; this can be achieved, among other options, by authoring guides that highlight its benefits and provide implementation guidance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Changes checklist","id":"316","title":"Changes checklist"},"317":{"body":"Status: Implemented Applies to: server For a summarized list of proposed changes, see the Changes Checklist section.","breadcrumbs":"RFCs » RFC-0024: RequestID » RFC: RequestID in business logic handlers","id":"317","title":"RFC: RequestID in business logic handlers"},"318":{"body":"RequestID : a service-wide request's unique identifier UUID : a universally unique identifier RequestID is an element that uniquely identifies a client request. RequestID is used by services to map all logs, events and specific data to a single operation. This RFC discusses whether and how smithy-rs can make that value available to customers. Services use a RequestID to collect logs related to the same request and see its flow through the various operations, help clients debug requests by sharing this value and, in some cases, use this value to perform their business logic. RequestID is unique across a service at least within a certain timeframe. This value for the purposes above must be set by the service. Having the client send the value brings the following challenges: The client could repeatedly send the same RequestID The client could send no RequestID The client could send a malformed or malicious RequestID (like in 1 and 2 ). To minimise the attack surface and provide a uniform experience to customers, servers should generate the value. However, services should be free to read the ID sent by clients in HTTP headers: it is common for services to read the request ID a client sends, record it and send it back upon success. A client may want to send the same value to multiple services. Services should still decide to have their own unique request ID per actual call. RequestIDs are not to be used by multiple services, but only within a single service.","breadcrumbs":"RFCs » RFC-0024: RequestID » Terminology","id":"318","title":"Terminology"},"319":{"body":"The proposal is to implement a RequestId type and make it available to middleware and business logic handlers, through FromParts and as a Service. To aid customers already relying on clients' request IDs, there will be two types: ClientRequestId and ServerRequestId. Implementing FromParts for Extension gives customers the ability to write their handlers: pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... ServerRequestId and ClientRequestId will be injected into the extensions by a layer. This layer can also be used to open a span that will log the request ID: subsequent logs will be in the scope of that span. ServerRequestId format: Common formats for RequestIDs are: UUID: a random string, represented in hex, of 128 bits from IETF RFC 4122: 7c038a43-e499-4162-8e70-2d4d38595930 The hash of a sequence such as date+thread+server: 734678902ea938783a7200d7b2c0b487 A verbose description: current_ms+hostname+increasing_id For privacy reasons, any format that provides service details should be avoided. A random string is preferred. The proposed format is to use UUID, version 4. A Service that inserts a RequestId in the extensions will be implemented as follows: impl Service> for ServerRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { req.extensions_mut().insert(ServerRequestId::new()); self.inner.call(req) }\n} For client request IDs, the process will be, in order: If a header is found matching one of the possible ones, use it Otherwise, None Option is used to distinguish whether a client had provided an ID or not. impl Service> for ClientRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { for possible_header in self.possible_headers { if let Some(id) = req.headers.get(possible_header) { req.extensions_mut().insert(Some(ClientRequestId::new(id))); return self.inner.call(req) } } req.extensions_mut().insert(None); self.inner.call(req) }\n} The string representation of a generated ID will be valid for this regex: For ServerRequestId: /^[A-Za-z0-9_-]{,48}$/ For ClientRequestId: see the spec Although the generated ID is opaque, this will give guarantees to customers as to what they can expect, if the server ID is ever updated to a different format.","breadcrumbs":"RFCs » RFC-0024: RequestID » The user experience if this RFC is implemented","id":"319","title":"The user experience if this RFC is implemented"},"32":{"body":"Smithy defines the concept of \"Document Types\": [Documents represent] protocol-agnostic open content that is accessed like JSON data. Open content is useful for modeling unstructured data that has no schema, data that can't be modeled using rigid types, or data that has a schema that evolves outside of the purview of a model. The serialization format of a document is an implementation detail of a protocol and MUST NOT have any effect on the types exposed by tooling to represent a document value. Individual protocols define their own document serialization behavior, with some protocols such as AWS and EC2 Query not supporting document types.","breadcrumbs":"Smithy » Simple Shapes » Document Types","id":"32","title":"Document Types"},"320":{"body":"Implement ServerRequestId: a new() function that generates a UUID, with Display, Debug and ToStr implementations Implement ClientRequestId: new() that wraps a string (the header value) and the header in which the value could be found, with Display, Debug and ToStr implementations Implement FromParts for Extension Implement FromParts for Extension","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes checklist","id":"320","title":"Changes checklist"},"321":{"body":"This RFC has been changed to only implement ServerRequestId.","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes since the RFC has been approved","id":"321","title":"Changes since the RFC has been approved"},"322":{"body":"Status: Implemented. See the description of the PR that laid the foundation for the implementation of constraint traits for a complete reference. See the Better Constraint Violations RFC too for subsequent improvements to this design. See the uber tracking issue for pending work. Constraint traits are used to constrain the values that can be provided for a shape. For example, given the following Smithy model, @length(min: 18)\nInteger Age the integer Age must take values greater than or equal to 18. Constraint traits are most useful when enforced as part of input model validation to a service. When a server receives a request whose contents deserialize to input data that violates the modeled constraints, the operation execution's preconditions are not met, and as such rejecting the request without executing the operation is expected behavior. Constraint traits can also be applied to operation output member shapes, but the expectation is that service implementations not fail to render a response when an output value does not meet the specified constraints. From awslabs/smithy#1039 : This might seem counterintuitive, but our philosophy is that a change in server-side state should not be hidden from the caller unless absolutely necessary. Refusing to service an invalid request should always prevent server-side state changes, but refusing to send a response will not, as there's generally no reasonable route for a server implementation to unwind state changes due to a response serialization failure. In general , clients should not enforce constraint traits in generated code. Clients must also never enforce constraint traits when sending requests. This is because: addition and removal of constraint traits are backwards-compatible from a client's perspective (although this is not documented anywhere in the Smithy specification), the client may have been generated with an older version of the model; and the most recent model version might have lifted some constraints. On the other hand, server SDKs constitute the source of truth for the service's behavior, so they interpret the model in all its strictness. The Smithy spec defines 8 constraint traits: enum , idRef , length , pattern , private , range , required ; and uniqueItems . The idRef and private traits are enforced at SDK generation time by the awslabs/smithy libraries and bear no relation to generated Rust code. The only constraint trait enforcement that is generated by smithy-rs clients should be and is the enum trait, which renders Rust enums. The required trait is already and only enforced by smithy-rs servers since #1148 . That leaves 4 traits: length, pattern, range, and uniqueItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » RFC: Constraint traits","id":"322","title":"RFC: Constraint traits"},"323":{"body":"This section addresses how to implement and enforce the length, pattern, range, and uniqueItems traits. We will use the length trait applied to a string shape as a running example. The implementation of this trait mostly carries over to the other three.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Implementation","id":"323","title":"Implementation"},"324":{"body":"Consider the following Smithy model: @length(min: 1, max: 69)\nstring NiceString The central idea to the implementation of constraint traits is: parse, don't validate . Instead of code-generating a Rust String to represent NiceString values and perform the validation at request deserialization, we can leverage Rust's type system to guarantee domain invariants . We can generate a wrapper tuple struct that parses the string's value and is \"tight\" in the set of values it can accept: pub struct NiceString(String); impl TryFrom for NiceString { type Error = nice_string::ConstraintViolation; fn try_from(value: String) -> Result { let num_code_points = value.chars().count(); if 1 <= num_code_points && num_code_points <= 69 { Ok(Self(value)) } else { Err(nice_string::ConstraintViolation::Length(num_code_points)) } }\n} (Note that we're using the linear time check chars().count() instead of len() on the input value, since the Smithy specification says the length trait counts the number of Unicode code points when applied to string shapes .) The goal is to enforce, at the type-system level, that these constrained structs always hold valid data. It should be impossible for the service implementer, without resorting to unsafe Rust, to construct a NiceString that violates the model. The actual check is performed in the implementation of TryFrom for the generated struct, which makes it convenient to use the ? operator for error propagation . Each constrained struct will have a related std::error::Error enum type to signal the first parsing failure, with one enum variant per applied constraint trait: pub mod nice_string { pub enum ConstraintViolation { /// Validation error holding the number of Unicode code points found, when a value between `1` and /// `69` (inclusive) was expected. Length(usize), } impl std::error::Error for ConstraintViolation {}\n} std::error::Error requires Display and Debug . We will #[derive(Debug)], unless the shape also has the sensitive trait , in which case we will just print the name of the struct: impl std::fmt::Debug for ConstraintViolation { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"ConstraintViolation\"); formatter.finish() }\n} Display is used to produce human-friendlier representations. Its implementation might be called when formatting a 400 HTTP response message in certain protocols, for example.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Example implementation for the length trait","id":"324","title":"Example implementation for the length trait"},"325":{"body":"We will continue to deserialize the different parts of the HTTP message into the regular Rust standard library types. However, just before the deserialization function returns, we will convert the type into the wrapper tuple struct that will eventually be handed over to the operation handler. This is what we're already doing when deserializing strings into enums. For example, given the Smithy model: @enum([ { name: \"Spanish\", value: \"es\" }, { name: \"English\", value: \"en\" }, { name: \"Japanese\", value: \"jp\" },\n])\nstring Language the code the client generates when deserializing a string from a JSON document into the Language enum is (excerpt): ...\nmatch key.to_unescaped()?.as_ref() { \"language\" => { builder = builder.set_language( aws_smithy_json::deserialize::token::expect_string_or_null( tokens.next(), )? .map(|s| { s.to_unescaped() .map(|u| crate::model::Language::from(u.as_ref())) }) .transpose()?, ); } _ => aws_smithy_json::deserialize::token::skip_value(tokens)?,\n}\n... Note how the String gets converted to the enum via Language::from(). impl std::convert::From<&str> for Language { fn from(s: &str) -> Self { match s { \"es\" => Language::Spanish, \"en\" => Language::English, \"jp\" => Language::Japanese, other => Language::Unknown(other.to_owned()), } }\n} For constrained shapes we would do the same to parse the inner deserialized value into the wrapper tuple struct, except for these differences: For enums, the client generates an Unknown variant that \"contains new variants that have been added since this code was generated\". The server does not need such a variant ( #1187 ). Conversions into the tuple struct are fallible (try_from() instead of from()). These errors will result in a my_struct::ConstraintViolation.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Request deserialization","id":"325","title":"Request deserialization"},"326":{"body":"We will enforce the length constraint by calling len() on Rust's Vec (list and set shapes), HashMap (map shapes) and our aws_smithy_types::Blob (bytes shapes). We will enforce the length constraint trait on String (string shapes) by calling .chars().count().","breadcrumbs":"RFCs » RFC-0025: Constraint traits » length trait","id":"326","title":"length trait"},"327":{"body":"The pattern trait restricts string shape values to a specified regular expression. We will implement this by using the regex's crate is_match . We will use once_cell to compile the regex only the first time it is required.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » pattern trait","id":"327","title":"pattern trait"},"328":{"body":"The uniqueItems trait indicates that the items in a List MUST be unique. If the list shape is sparse, more than one null value violates this constraint. We will enforce this by copying references to the Vec's elements into a HashSet and checking that the sizes of both containers coincide.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » uniqueItems trait","id":"328","title":"uniqueItems trait"},"329":{"body":"From the spec : Some constraints can be applied to shapes as well as structure members. If a constraint of the same type is applied to a structure member and the shape that the member targets, the trait applied to the member takes precedence. structure ShoppingCart { @range(min: 7, max:12) numberOfItems: PositiveInteger\n} @range(min: 1)\ninteger PositiveInteger In the above example, the range trait applied to numberOfItems takes precedence over the one applied to PositiveInteger. The resolved minimum will be 7, and the maximum 12. When the constraint trait is applied to a member shape, the tuple struct's name will be the PascalCased name of the member shape, NumberOfItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Trait precedence and naming of the tuple struct","id":"329","title":"Trait precedence and naming of the tuple struct"},"33":{"body":"Note: Throughout this document, the word \"box\" always refers to a Rust Box , a heap allocated pointer to T, and not the Smithy concept of boxed vs. unboxed. Recursive shapes pose a problem for Rust, because the following Rust code will not compile: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Option\n} |\n3 | struct TopStructure { | ^^^^^^^^^^^^^^^^^^^ recursive type has infinite size\n4 | intermediate: IntermediateStructure | ----------------------------------- recursive without indirection | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `main::TopStructure` representable This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt To support this, as the message suggests, we must \"Box\" the offending type. There is a touch of trickiness—only one element in the cycle needs to be boxed, but we need to select it deterministically such that we always pick the same element between multiple codegen runs. To do this the Rust SDK will: Topologically sort the graph of shapes. Identify cycles that do not pass through an existing Box, List, Set, or Map For each cycle, select the earliest shape alphabetically & mark it as Box in the Smithy model by attaching the custom RustBoxTrait to the member. Go back to step 1. This would produce valid Rust: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Box>\n} Backwards Compatibility Note! Box is not generally compatible with T in Rust. There are several unlikely but valid model changes that will cause the SDK to produce code that may break customers. If these are problematic, all are avoidable with customizations. A recursive link is added to an existing structure. This causes a member that was not boxed before to become Box. Workaround : Mark the new member as Box in a customization. A field is removed from a structure that removes the recursive dependency. The SDK would generate T instead of Box. Workaround : Mark the member that used to be boxed as Box in a customization. The Box will be unnecessary, but we will keep it for backwards compatibility.","breadcrumbs":"Smithy » Recursive Shapes » Recursive Shapes","id":"33","title":"Recursive Shapes"},"330":{"body":"Should we code-generate unsigned integer types (u16, u32, u64) when the range trait is applied with min set to a value greater than or equal to 0? A user has even suggested to use the std::num::NonZeroUX types (e.g. NonZeroU64 ) when range is applied with min set to a value greater than 0. UPDATE: This requires further design work. There are interoperability concerns: for example, the positive range of a u32 is strictly greater than that of an i32, so clients wouldn't be able to receive values within the non-overlapping range. In request deserialization, should we fail with the first violation and immediately render a response, or attempt to parse the entire request and provide a complete and structured report? UPDATE: We will provide a response containing all violations. See the \"Collecting Constraint Violations\" section in the Better Constraint Violations RFC. Should we provide a mechanism for the service implementer to construct a Rust type violating the modeled constraints in their business logic e.g. a T::new_unchecked() constructor? This could be useful (1) when the user knows the provided inner value does not violate the constraints and doesn't want to incur the performance penalty of the check; (2) when the struct is in a transient invalid state. However: (2) is arguably a modelling mistake and a separate struct to represent the transient state would be a better approach, the user could use unsafe Rust to bypass the validation; and adding this constructor is a backwards-compatible change, so it can always be added later if this feature is requested. UPDATE: We decided to punt on this until users express interest.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Unresolved questions","id":"330","title":"Unresolved questions"},"331":{"body":"An alternative design with less public API surface would be to perform constraint validation at request deserialization, but hand over a regular \"loose\" type (e.g. String instead of NiceString) that allows for values violating the constraints. If we were to implement this approach, we can implement it by wrapping the incoming value in the aforementioned tuple struct to perform the validation, and immediately unwrap it. Comparative advantages: Validation remains an internal detail of the framework. If the semantics of a constraint trait change, the behavior of the service is still backwards-incompatibly affected, but user code is not. Less \"invasive\". Baking validation in the generated type might be deemed as the service framework overreaching responsibilities. Comparative disadvantages: It becomes possible to send responses with invalid operation outputs. All the service framework could do is log the validation errors. Baking validation at the type-system level gets rid of an entire class of logic errors. Less idiomatic (this is subjective). The pattern of wrapping a more primitive type to guarantee domain invariants is widespread in the Rust ecosystem. The standard library makes use of it extensively. Note that both designs are backwards incompatible in the sense that you can't migrate from one to the other without breaking user code. UPDATE: We ended up implementing both designs, adding a flag to opt into the alternative design. Refer to the mentions of the publicConstrainedTypes flag in the description of the Builders of builders PR .","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Alternative design","id":"331","title":"Alternative design"},"332":{"body":"Status: Implemented Applies to: clients (and may impact servers due to shared codegen) This RFC proposes changing the organization structure of the generated client crates to: Make discovery in the crate documentation easier. Facilitate re-exporting types from runtime crates in related modules without name collisions. Facilitate feature gating operations for faster compile times in the future.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » RFC: Client Crate Organization","id":"332","title":"RFC: Client Crate Organization"},"333":{"body":"Previously, crates were organized as such: .\n├── client\n| ├── fluent_builders\n| | └── \n| ├── Builder (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| └── Sleep (*)\n├── error\n| ├── \n| ├── \n| ├── \n| └── \n├── http_body_checksum (empty)\n├── input\n| ├── \n| └── \n├── lens (empty)\n├── middleware\n| └── DefaultMiddleware\n├── model\n| ├── \n| └── \n├── operation\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | ├── RetryKind (*)\n| └── \n├── output\n| ├── \n| └── \n├── paginator\n| ├── \n| └── \n├── presigning\n| ├── config\n| | ├── Builder\n| | ├── Error\n| | └── PresigningConfig\n| └── request\n| └── PresignedRequest\n├── types\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| ├── DateTime (*)\n| └── SdkError (*)\n├── AppName (*)\n├── Client\n├── Config\n├── Credentials (*)\n├── Endpoint (*)\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region (*) (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Previous Organization","id":"333","title":"Previous Organization"},"334":{"body":"This RFC proposes reorganizing types by operation first and foremost, and then rearranging other pieces to reduce codegen collision risk.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Proposed Changes","id":"334","title":"Proposed Changes"},"335":{"body":"Builders (distinct from fluent builders) are generated alongside all inputs, outputs, models, and errors. They all follow the same overall pattern (where shapeType is Input, Output, or empty for models/errors): .\n└── module ├── └── This results in large lists of modules that all have exactly one item in them, which makes browsing the documentation difficult, and introduces the possibility of name collisions when re-exporting modules from the runtime crates. Builders should adopt a prefix and go into a single builders module, similar to how the fluent builders currently work: .\n├── module\n| └── builders\n| └── \n└──---- ","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Establish a pattern for builder organization","id":"335","title":"Establish a pattern for builder organization"},"336":{"body":"All code generated for an operation that isn't shared between operations will go into operation-specific modules. This includes inputs, outputs, errors, parsers, and paginators. Types shared across operations will remain in another module (discussed below), and serialization/deserialization logic for those common types will also reside in that common location for now. If operation feature gating occurs in the future, further optimization can be done to track which of these are used by feature, or they can be reorganized (this would be discussed in a future RFC and is out of scope here). With code generated operations living in crate::operation, there is a high chance of name collision with the customize module. To resolve this, customize will be moved into crate::client. The new crate::operation module will look as follows: .\n└── operation └── ├── paginator | ├── `${operation}Paginator` | └── `${operation}PaginatorItems` ├── builders | ├── `${operation}FluentBuilder` | ├── `${operation}InputBuilder` | └── `${operation}OutputBuilder` ├── `${operation}Error` ├── `${operation}Input` ├── `${operation}Output` └── `${operation}Parser` (private/doc hidden)","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Organize code generated types by operation","id":"336","title":"Organize code generated types by operation"},"337":{"body":"The crate root should only host the most frequently used types, or phrased differently, the types that are critical to making a service call with default configuration, or that are required for the most frequent config changes (such as setting credentials, or changing the region/endpoint). Previously, the following were exported in root: .\n├── AppName\n├── Client\n├── Config\n├── Credentials\n├── Endpoint\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region The AppName is infrequently set, and will be moved into crate::config. Customers are encouraged to use aws-config crate to resolve credentials, region, and endpoint. Thus, these types no longer need to be at the top-level, and will be moved into crate::config. ErrorExt will be moved into crate::error, but Error will stay in the crate root so that customers that alias the SDK crate can easily reference it in their Results: use aws_sdk_s3 as s3; fn some_function(/* ... */) -> Result<(), s3::Error> { /* ... */\n} The PKG_VERSION should move into a new meta module, which can also include other values in the future such as the SHA-256 hash of the model used to produce the crate, or the version of smithy-rs that generated it.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Reorganize the crate root","id":"337","title":"Reorganize the crate root"},"338":{"body":"Previously, the Smithy Client builder was re-exported alongside the SDK fluent Client so that non-SDK clients could easily customize the underlying Smithy client by using the fluent client's Client::with_config function or From> trait implementation. This makes sense for non-SDK clients where customization of the connector and middleware types is supported generically, but less sense for SDKs since the SDK clients are hardcoded to use DynConnector and DynMiddleware. Thus, the Smithy client Builder should not be re-exported for SDKs.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Conditionally remove Builder from crate::client","id":"338","title":"Conditionally remove Builder from crate::client"},"339":{"body":"Previously, crate::types held re-exported types from aws-smithy-types that are used by code generated structs/enums. This module will be renamed to crate::primitives so that the name types can be repurposed in the next section.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Create a primitives module","id":"339","title":"Create a primitives module"},"34":{"body":"Smithy Type Rust Type List Vec Set Vec Map HashMap Structure struct Union enum Most generated types are controlled by SymbolVisitor .","breadcrumbs":"Smithy » Aggregate Shapes » Aggregate Shapes","id":"34","title":"Aggregate Shapes"},"340":{"body":"The name model is meaningless outside the context of code generation (although there is precedent since both the Java V2 and Kotlin SDKs use the term). Previously, this module held all the generated structs/enums that are referenced by inputs, outputs, and errors. This RFC proposes that this module be renamed to types, and that all code generated types for shapes that are reused between operations (basically anything that is not an input, output, or error) be moved here. This would look as follows: .\n└── types ├── error | ├── builders | | └── | └── ├── builders | └── └── Customers using the fluent builder should be able to just use ${crate}::types::*; to immediately get access to all the shared types needed by the operations they are calling. Additionally, moving the top-level code generated error types into crate::types will eliminate a name collision issue in the crate::error module.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the types module","id":"340","title":"Repurpose the types module"},"341":{"body":"The error module is significantly smaller after all the code generated error types are moved out of it. This top-level module is now available for re-exports and utilities. The following will be re-exported in crate::error: aws_smithy_http::result::SdkError aws_smithy_types::error::display::DisplayErrorContext For crates that have an ErrorExt, it will also be moved into crate::error.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the original crate::error module","id":"341","title":"Repurpose the original crate::error module"},"342":{"body":"The crate::presigning module only has four members, so it should be flattened from: .\n└── presigning ├── config | ├── Builder | ├── Error | └── PresigningConfig └── request └── PresignedRequest to: .\n└── presigning ├── PresigningConfigBuilder ├── PresigningConfigError ├── PresigningConfig └── PresignedRequest At the same time, Builder and Error will be renamed to PresigningConfigBuilder and PresigningConfigError respectively since these will rarely be referred to directly (preferring PresigningConfig::builder() instead; the error will almost always be unwrapped).","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Flatten the presigning module","id":"342","title":"Flatten the presigning module"},"343":{"body":"The lens and http_body_checksum modules have nothing inside them, and their documentation descriptions are not useful to customers: lens: Generated accessors for nested fields http_body_checksum: Functions for modifying requests and responses for the purposes of checksum validation These modules hold private functions that are used by other generated code, and should just be made private or #[doc(hidden)] if necessary.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Remove the empty modules","id":"343","title":"Remove the empty modules"},"344":{"body":"All combined, the following is the new publicly visible organization: .\n├── client\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | └── RetryKind (*)\n| ├── Builder (only in non-SDK crates) (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AppName (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| ├── Credentials (*)\n| ├── Endpoint (*)\n| ├── Region (*)\n| └── Sleep (*)\n├── error\n| ├── DisplayErrorContext (*)\n| ├── ErrorExt (for some services)\n| └── SdkError (*)\n├── meta\n| └── PKG_VERSION\n├── middleware\n| └── DefaultMiddleware\n├── operation\n| └── \n| ├── paginator\n| | ├── `${operation}Paginator`\n| | └── `${operation}PaginatorItems`\n| ├── builders\n| | ├── `${operation}FluentBuilder`\n| | ├── `${operation}InputBuilder`\n| | └── `${operation}OutputBuilder`\n| ├── `${operation}Error`\n| ├── `${operation}Input`\n| ├── `${operation}Output`\n| └── `${operation}Parser` (private/doc hidden)\n├── presigning\n| ├── PresigningConfigBuilder\n| ├── PresigningConfigError\n| ├── PresigningConfig\n| └── PresignedRequest\n├── primitives\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| └── DateTime (*)\n├── types\n| ├── error\n| | ├── builders\n| | | └── \n| | └── \n| ├── builders\n| | └── \n| └── \n├── Client\n├── Config\n└── Error (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » New Organization","id":"344","title":"New Organization"},"345":{"body":"Move crate::AppName into crate::config Move crate::PKG_VERSION into a new crate::meta module Move crate::Endpoint into crate::config Move crate::Credentials into crate::config Move crate::Region into crate::config Move crate::operation::customize into crate::client Finish refactor to decouple client/server modules Organize code generated types by operation Reorganize builders Rename crate::types to crate::primitives Rename crate::model to crate::types Move crate::error into crate::types Only re-export aws_smithy_client::client::Builder for non-SDK clients (remove from SDK clients) Move crate::ErrorExt into crate::error Re-export aws_smithy_types::error::display::DisplayErrorContext and aws_smithy_http::result::SdkError in crate::error Move crate::paginator into crate::operation Flatten crate::presigning Hide or remove crate::lens and crate::http_body_checksum Move fluent builders into crate::operation::x::builders Remove/hide operation ParseResponse implementations in crate::operation Update \"Crate Organization\" top-level section in generated crate docs Update all module docs Break up modules/files so that they're not 30k lines of code models/types; each struct/enum should probably get its own file with pub-use models/types::builders: now this needs to get split up client.rs Fix examples Write changelog","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Changes Checklist","id":"345","title":"Changes Checklist"},"346":{"body":"Status: RFC For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how the Rust SDK will integrate with the next generation of endpoint resolution logic (Endpoints 2.0). Endpoints 2.0 defines a rules language for resolving endpoints. The Rust SDK will code-generate Rust code from this intermediate language and use this to create service-specific endpoint resolvers. Endpoints 2.0 will be a core feature and be available for generic clients as well as the AWS SDK.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » RFC: Endpoints 2.0","id":"346","title":"RFC: Endpoints 2.0"},"347":{"body":"Generic client : In reference to features/code that is not AWS specific and is supported for all Smithy clients. Rules language : A JSON-based rules language used to resolve endpoints Smithy Endpoint : An endpoint, as returned from the rules-language. This contains a URI, headers, and configuration map of String -> Document (properties). This must undergo another level of transformation before it can be used as an AwsEndpoint. AWS Endpoint : An endpoint with explicit signing configuration applied. AWS Endpoints need to contain region & service metadata to control signing. Middleware : A transformation applied to a request, prior to request dispatch Endpoint Parameters : A code-generated structure for each service which contains service-specific (and general) endpoint parameters.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Terminology","id":"347","title":"Terminology"},"348":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The user experience if this RFC is implemented","id":"348","title":"The user experience if this RFC is implemented"},"349":{"body":"SDKs will generate a new, public, endpoint module. The module will contain a Params structure and a DefaultResolver . Supporting these modules, a private endpoints_impl module will be generated. Why generate two modules ? Generating two separate modules, endpoint and endpoint_impl ensures that we don't have namespace collisions between hand-written and generated code. SDK middleware will be updated to use the new smithy_types::Endpoint . During request construction in make_operation, a smithy endpoint will be inserted into the property bag. The endpoint middleware will be updated to extract the Smithy endpoint from the property bag and set the request endpoint & signing information accordingly (see: Converting to AWS Endpoint . The following flow chart traces the endpoints 2.0 influence on a request via the green boxes. flowchart TD globalConfig(\"SDK global configuration (e.g. region provider, UseFIPS, etc.)\") serviceConfig(\"Modeled, service specific configuration information (clientContextParams)\") operationConfig(\"Operation-specific configuration (S3 Bucket, accountId, etc.)\") getObject[\"S3::GetObject\"] params[\"Create endpoint parameters\"] evaluate[\"Evaluate ruleset\"] rules[\"Generated Endpoint Ruleset for S3\"] middleware[\"Apply endpoint & properties to request via endpoint middleware\"] style getObject fill:green,stroke:#333,stroke-width:4px style params fill:green,stroke:#333,stroke-width:4px style evaluate fill:green,stroke:#333,stroke-width:4px style middleware fill:green,stroke:#333,stroke-width:4px getObject ==> params globalConfig ---> params operationConfig --> params serviceConfig ---> params rules --> evaluate params --> evaluate evaluate --> middleware","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overview","id":"349","title":"Overview"},"35":{"body":"List objects in Smithy are transformed into vectors in Rust. Based on the output of the NullableIndex , the generated list may be Vec or Vec>.","breadcrumbs":"Smithy » Aggregate Shapes » List","id":"35","title":"List"},"350":{"body":"In the general case, users will not be impacted by Endpoints 2.0 with one exception: today, users can provide a global endpoint provider that can override different services. There is a single ResolveAwsEndpoint trait that is shared across all services. However, this isn't the case for Endpoints 2.0 where the trait actually has a generic parameter: pub trait ResolveEndpoint: Send + Sync { fn resolve_endpoint(&self, params: &T) -> Result;\n} The trait itself would then be parameterized by service-specific endpoint parameter, eg: aws_sdk_s3::endpoint::Params. The endpoint parameters we would use for S3 (e.g. including Bucket) are different from the endpoint parameters we might use for a service like DynamoDB which, today, doesn't have any custom endpoint behavior. Going forward we will to provide two different avenues for customers to customize endpoints: Configuration driven URL override. This mechanism hasn't been specified, but suppose that the Rust SDK supported an SDK_ENDPOINT environment variable. This variable would be an input to the existing endpoint resolver. machinery and would be backwards compatible with other SDKs (e.g. by prefixing the bucket as a host label for S3). Wholesale endpoint resolver override. In this case, customers would gain access to all endpoint parameters and be able to write their own resolver. This RFC proposes making the following changes: For the current global ability to override an endpoint, instead of accepting an AwsEndpoint, accept a URI. This will simplify the interface for most customers who don't actually need logic-driven endpoint construction. The Endpoint that can be set will be passed in as the SDK::Endpoint built-in. This will be renamed to endpoint_url for clarity. All AWS services MUST accept the SDK::Endpoint built-in. For complex, service-specific behavior, customers will be able to provide a service specific endpoint resolver at client construction time. This resolver will be parameterized with the service-specific parameters type, ( eg. aws_sdk_s3::endpoint::Params). Finally, customers will be able to access the default_resolver() for AWS services directly. This will enable them to utilize the default S3 endpoint resolver in their resolver implementation. Example: overriding the endpoint URI globally async fn main() { let sdk_conf = aws_config::from_env().endpoint_url(\"http://localhost:8123\").load().await; let dynamo = aws_sdk_dynamodb::Client::new(&sdk_conf); // snip ...\n} Example: overriding the endpoint resolver for a service /// Resolve to Localhost when an environment variable is set\nstruct CustomDdbResolver; impl ResolveEndpoint for CustomDdbResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // custom resolver to redirect to DDB local if a flag is set let base_endpoint = aws_sdk_dynamodb::endpoint::default_resolver().resolve_endpoint(params).expect(\"valid endpoint should be resolved\"); if env::var(\"LOCAL\") == Ok(\"true\") { // update the URI on the returned endpoint to localhost while preserving the other properties Ok(base_endpoint.builder().uri(\"http://localhost:8888\").build()) } else { Ok(base_endpoint) } }\n} async fn main() { let conf = aws_config::load_from_env().await; let ddb_conf = aws_sdk_dynamodb::config::Builder::from(&conf).endpoint_resolver(CustomDdbResolver); let dynamodb = aws_sdk_dynamodb::Client::from_conf(ddb_conf);\n} Note: for generic clients, they cannot use endpoint_url—this is because endpoint_url is dependent on rules and generic clients do not necessarily rules. However, they can use the impl ResolveEndpoint for &'static str { ... } implementation. What about alternative S3 implementations? How do we say \"don't put prefix bucket on this?\" For cases where users want to use the provided URL directly with no modification users will need to rely on service specific configuration, like forcing path style addressing for S3. Alternative Design : Context Aware Endpoint Trait Optional addition : We could add an additional EndpointResolver parameter to SdkConfig that exposed a global trait where Params is &dyn Any similar to Context Aware Endpoint Trait . If these were both set, a runtime panic would alert users to the misconfiguration.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overriding Endpoints","id":"350","title":"Overriding Endpoints"},"351":{"body":"The new endpoint resolution trait and Endpoint struct will be available for generic clients. AWS endpoint middleware will pull the Endpoint out of the property bag and read the properties to determine auth/signing + any other AWS metadata that may be required. An example of the Endpoint struct is below. This struct will be in aws-smithy-types, however, it should initially be gated with documentation warning about stability. The Endpoint Struct // module: `aws_smithy_types::endpoint`\n// potential optimization to reduce / remove allocations for keys which are almost always static\n// this can also just be `String`\ntype MaybeStatic = Cow<'static, T>; /// Endpoint\n#[derive(Debug, PartialEq)]\npub struct Endpoint { // Note that this allows `Endpoint` to contain an invalid URI. During conversion to an actual endpoint, the // the middleware can fail, returning a `ConstructionFailure` to the user url: MaybeStatic, headers: HashMap, Vec>>, properties: HashMap, aws_smithy_types::Document>,\n} // not shown:\n// - impl block with standard accessors\n// - builder, designed to be invoked / used by generated code What's an Endpoint property? Endpoint properties, on their own, have no intrinsic meaning. Endpoint properties have established conventions for AWS SDKs. Other Smithy implementors may choose a different pattern. For AWS SDKs, the authSchemes key is an ordered list of authentication/signing schemes supported by the Endpoint that the SDK should use. To perform produce an Endpoint struct we have a generic ResolveEndpoint trait which will be both generic in terms of parameters and being \"smithy-generic: // module: `smithy_types::endpoint` or `aws_smithy_client`??\npub trait ResolveEndpoint: Send + Sync { /// Resolves an `Endpoint` for `Params` fn resolve_endpoint(&self, params: &Params) -> Result;\n} All Smithy services that have the @endpointRuleSet trait applied to the service shape will code generate a default endpoint resolver implementation. The default endpoint resolver MUST be public, so that customers can delegate to it if they wish to override the endpoint resolver.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » New Endpoint Traits","id":"351","title":"New Endpoint Traits"},"352":{"body":"We've mentioned \"service specific endpoint parameters\" a few times. In Endpoints 2.0, we will code generate Endpoint Parameters for every service based on their rules. Note : the endpoint parameters themselves are generated solely from the ruleset. The Smithy model provides additional information about parameter binding, but that only influences how the parameters are set, not how they are generated. Example Params struct for S3: #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\n/// Configuration parameters for resolving the correct endpoint\npub struct Params { pub(crate) bucket: std::option::Option, pub(crate) region: std::option::Option, pub(crate) use_fips: bool, pub(crate) use_dual_stack: bool, pub(crate) endpoint: std::option::Option, pub(crate) force_path_style: std::option::Option, pub(crate) accelerate: bool, pub(crate) disable_access_points: std::option::Option, pub(crate) disable_mrap: std::option::Option,\n} impl Params { /// Create a builder for [`Params`] pub fn builder() -> crate::endpoint_resolver::Builder { crate::endpoint_resolver::Builder::default() } /// Gets the value for bucket pub fn bucket(&self) -> std::option::Option<&str> { self.bucket.as_deref() } /// Gets the value for region pub fn region(&self) -> std::option::Option<&str> { self.region.as_deref() } /// Gets the value for use_fips pub fn use_fips(&self) -> std::option::Option { Some(self.use_fips) } /// Gets the value for use_dual_stack pub fn use_dual_stack(&self) -> std::option::Option { Some(self.use_dual_stack) } // ... more accessors\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Endpoint Params","id":"352","title":"Endpoint Params"},"353":{"body":"When an endpoint ruleset is present, Smithy will code generate an endpoint resolver from that ruleset. The endpoint resolver MUST be a struct so that it can store/cache computations (such as a partition resolver that has compiled regexes). pub struct DefaultEndpointResolver { partition_resolver: PartitionResolver\n} impl ResolveEndpoint for DefaultEndpointResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // delegate to private impl crate::endpoints_impl::resolve_endpoint(params) }\n} DefaultEndpointResolver MUST be publicly accessible and offer both a default constructor and the ability to configure resolution behavior (e.g. by supporting adding additional partitions.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The default endpoint resolver","id":"353","title":"The default endpoint resolver"},"354":{"body":"To describe how this feature will work, let's take a step-by-step path through endpoint resolution. A user defines a service client, possibly with some client specific configuration like region. @clientContextParams are code generated onto the client Config . Code generating @clientContextParams A user invokes an operation like s3::GetObject. A params object is created . In the body of make_operation(), this is passed to config.endpoint_resolver to load a generic endpoint. The Result of the of the endpoint resolution is written into the property bag. The generic smithy middleware (SmithyEndpointStage) sets the request endpoint. The AWS auth middleware (AwsAuthStage) reads the endpoint out of the property bag and applies signing overrides. The request is signed & dispatched The other major piece of implementation required is actually implementing the rules engine. To learn more about rules-engine internals, skip to implementing the rules engine .","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » How to actually implement this RFC","id":"354","title":"How to actually implement this RFC"},"355":{"body":"When a smithy model uses the @clientContextParams trait, we need to generate client params onto the Rust SDK. This is a Smithy-native feature. This should be implemented as a \"standard\" config decorator that reads traits from the current model. Kotlin Snippet for Client context params class ClientContextDecorator(ctx: ClientCodegenContext) : NamedSectionGenerator() { private val contextParams = ctx.serviceShape.getTrait()?.parameters.orEmpty().toList() .map { (key, value) -> ContextParam.fromClientParam(key, value, ctx.symbolProvider) } data class ContextParam(val name: String, val type: Symbol, val docs: String?) { companion object { private fun toSymbol(shapeType: ShapeType, symbolProvider: RustSymbolProvider): Symbol = symbolProvider.toSymbol( when (shapeType) { ShapeType.STRING -> StringShape.builder().id(\"smithy.api#String\").build() ShapeType.BOOLEAN -> BooleanShape.builder().id(\"smithy.api#Boolean\").build() else -> TODO(\"unsupported type\") } ) fun fromClientParam( name: String, definition: ClientContextParamDefinition, symbolProvider: RustSymbolProvider ): ContextParam { return ContextParam( RustReservedWords.escapeIfNeeded(name.toSnakeCase()), toSymbol(definition.type, symbolProvider), definition.documentation.orNull() ) } } } override fun section(section: ServiceConfig): Writable { return when (section) { is ServiceConfig.ConfigStruct -> writable { contextParams.forEach { param -> rust(\"pub (crate) ${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.ConfigImpl -> emptySection ServiceConfig.BuilderStruct -> writable { contextParams.forEach { param -> rust(\"${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.BuilderImpl -> writable { contextParams.forEach { param -> param.docs?.also { docs(it) } rust( \"\"\" pub fn ${param.name}(mut self, ${param.name}: #T) -> Self { self.${param.name} = Some(${param.name}); self } \"\"\", param.type ) } } ServiceConfig.BuilderBuild -> writable { contextParams.forEach { param -> rust(\"${param.name}: self.${param.name},\") } } else -> emptySection } }\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Code generating client context params","id":"355","title":"Code generating client context params"},"356":{"body":"Params will be created and utilized in generic code generation. make_operation() needs to load the parameters from several configuration sources. These sources have a priority order. To handle this priority order, we will load from all sources in reverse priority order, with lower priority sources overriding higher priority ones. Implementation of operation decorator class EndpointParamsDecorator( private val ctx: ClientCodegenContext, private val operationShape: OperationShape,\n) : OperationCustomization() { val idx = ContextIndex.of(ctx.model) private val ruleset = EndpointRuleset.fromNode(ctx.serviceShape.expectTrait().ruleSet) override fun section(section: OperationSection): Writable { return when (section) { is OperationSection.MutateInput -> writable { rustTemplate( \"\"\" let params = #{Params}::builder() #{builder:W}.expect(\"invalid endpoint\"); \"\"\", \"Params\" to EndpointParamsGenerator(ruleset).paramsStruct(), \"builder\" to builderFields(section) ) } is OperationSection.MutateRequest -> writable { rust(\"// ${section.request}.properties_mut().insert(params);\") } else -> emptySection } } private fun builderFields(section: OperationSection.MutateInput) = writable { val memberParams = idx.getContextParams(operationShape) val builtInParams = ruleset.parameters.toList().filter { it.isBuiltIn } // first load builtins and their defaults builtInParams.forEach { param -> val defaultProviders = section.endpointCustomizations.mapNotNull { it.defaultFor(param, section.config) } if (defaultProviders.size > 1) { error(\"Multiple providers provided a value for the builtin $param\") } defaultProviders.firstOrNull()?.also { defaultValue -> rust(\".set_${param.name.rustName()}(#W)\", defaultValue) } } // these can be overridden with client context params idx.getClientContextParams(ctx.serviceShape).forEach { (name, _param) -> rust(\".set_${name.toSnakeCase()}(${section.config}.${name.toSnakeCase()}.as_ref())\") } // lastly, allow these to be overridden by members memberParams.forEach { (memberShape, param) -> rust(\".set_${param.name.toSnakeCase()}(${section.input}.${ctx.symbolProvider.toMemberName(memberShape)}.as_ref())\") } rust(\".build()\") }\n} Loading values for builtIns The fundamental point of builtIn values is enabling other code generators to define where these values come from. Because of that, we will need to expose the ability to customize AwsBuiltIns. One way to do this is with a new customization type, EndpointCustomization: fun endpointCustomizations( clientCodegenContext: C, operation: OperationShape, baseCustomizations: List\n): List = baseCustomizations abstract class EndpointCustomization { abstract fun defaultFor(parameter: Parameter, config: String): Writable?\n} Customizations have the ability to specify the default value for a parameter. (Of course, these customizations need to be wired in properly.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Creating Params","id":"356","title":"Creating Params"},"357":{"body":"A Smithy endpoint has an untyped, string->Document collection of properties. We need to interpret these properties to handle actually resolving an endpoint. As part of the AwsAuthStage, we load authentication schemes from the endpoint properties and use these to configure signing on the request. Note : Authentication schemes are NOT required as part of an endpoint. When the auth schemes are not set, the default authentication should be used. The Rust SDK will set SigningRegion and SigningName in the property bag by default as part of make_operation.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Converting a Smithy Endpoint to an AWS Endpoint","id":"357","title":"Converting a Smithy Endpoint to an AWS Endpoint"},"358":{"body":"The Rust SDK code converts the rules into Rust code that will be compiled.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Implementing the rules engine","id":"358","title":"Implementing the rules engine"},"359":{"body":"Rules Engine Endpoint rules code generator Endpoint params code generator Endpoint tests code generator Implement ruleset standard library functions as inlineables. Note: pending future refactoring work, the aws. functions will need to be integrated into the smithy core endpoint resolver. Implement partition function & ability to customize partitions SDK Integration Add a Smithy endpoint resolver to the service config, with a default that loads the default endpoint resolver. Update SdkConfig to accept a URI instead of an implementation of ResolveAwsEndpoint. This change can be done standalone. Remove/deprecate the ResolveAwsEndpoint trait and replace it with the vanilla Smithy trait. Potentially, provide a bridge. Update make_operation to write a smithy::Endpoint into the property bag Update AWS Endpoint middleware to work off of a smithy::Endpoint Wire the endpoint override to the SDK::Endpoint builtIn parameter Remove the old smithy endpoint","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Changes checklist","id":"359","title":"Changes checklist"},"36":{"body":"Because floats are not Hashable in Rust, for simplicity smithy-rs translates all sets to into Vec instead of HashSet. In the future, a breaking change may be made to introduce a library-provided wrapper type for Sets.","breadcrumbs":"Smithy » Aggregate Shapes » Set","id":"36","title":"Set"},"360":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Alternative Designs","id":"360","title":"Alternative Designs"},"361":{"body":"An alternative design that could provide more flexibility is a context-aware endpoint trait where the return type would give context about the endpoint being returned. This would, for example, allow a customer to say explicitly \"don't modify this endpoint\": enum ContextualEndpoint { /// Just the URI please. Pass it into the default endpoint resolver as a baseline Uri { uri: Uri, immutable: bool }, /// A fully resolved, ready to rumble endpoint. Don't bother hitting the default endpoint resolver, just use what /// I've got. AwsEndpoint(AwsEndpoint)\n} trait ResolveGlobalEndpoint { fn resolve_endpoint(params: &dyn Any) -> Result;\n} Service clients would then use ResolveGlobalEndpoint, optional specified from SdkConfig to perform routing decisions.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Context Aware Endpoint Traits","id":"361","title":"Context Aware Endpoint Traits"},"362":{"body":"Status: Implemented in smithy-rs#2122 Applies to: AWS SDK for Rust At time of writing (2022-10-11), the SDK's credentials provider can be customized by providing: A profile credentials file to modify the default provider chain An instance of one of the credentials providers implemented in aws-config, such as the AssumeRoleCredentialsProvider, ImdsCredentialsProvider, and so on. A custom struct that implements the ProvideCredentials The problem this RFC examines is that when options 2 and 3 above are exercised, the customer needs to be aware of credentials caching and put additional effort to ensure caching is set up correctly (and that double caching doesn't occur). This is especially difficult to get right since some built-in credentials providers (such as AssumeRoleCredentialsProvider) already have caching, while most others do not and need to be wrapped in LazyCachingCredentialsProvider. The goal of this RFC is to create an API where Rust's type system ensures caching is set up correctly, or explicitly opted out of.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » RFC: SDK Credential Cache Type Safety","id":"362","title":"RFC: SDK Credential Cache Type Safety"},"363":{"body":"A new config method named credentials_cache() will be added to ConfigLoader and the generated service Config builders that takes a CredentialsCache instance. This CredentialsCache will be a struct with several functions on it to create and configure the cache. Client creation will ultimately be responsible for taking this CredentialsCache instance and wrapping the given (or default) credentials provider. The CredentialsCache would look as follows: enum Inner { Lazy(LazyConfig), // Eager doesn't exist today, so this is purely for illustration Eager(EagerConfig), // Custom may not be implemented right away // Not naming or specifying the custom cache trait for now since its out of scope Custom(Box), NoCaching,\n}\npub struct CredentialsCache { inner: Inner,\n} impl CredentialsCache { // These methods use default cache settings pub fn lazy() -> Self { /* ... */ } pub fn eager() -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy_builder() -> LazyBuilder { /* ... */ } pub fn eager_builder() -> EagerBuilder { /* ... */ } // Later, when custom implementations are supported pub fn custom(cache_impl: Box) -> Self { /* ... */ } pub(crate) fn create_cache( self, provider: Box, sleep_impl: Arc ) -> SharedCredentialsProvider { // Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), Self::NoCaching => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation in addition to the impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Customers that don't care about credential caching can configure credential providers without needing to think about it: let sdk_config = aws_config::from_env() .credentials_provider(ImdsCredentialsProvider::builder().build()) .load() .await; However, if they want to customize the caching, they can do so without modifying the credentials provider at all (in case they want to use the default): let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::default_eager()) .load() .await; The credentials_cache will default to CredentialsCache::default_lazy() if not provided.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » CredentialsCache and ConfigLoader::credentials_cache","id":"363","title":"CredentialsCache and ConfigLoader::credentials_cache"},"364":{"body":"Remove cache from AssumeRoleProvider Implement CredentialsCache with its Lazy variant and builder Add credentials_cache method to ConfigLoader Refactor ConfigLoader to take CredentialsCache instead of impl ProvideCredentials + 'static Refactor SharedCredentialsProvider to take a cache implementation in addition to an impl ProvideCredentials + 'static Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader Write changelog upgrade instructions Fix examples (if there are any for configuring caching)","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Changes Checklist","id":"364","title":"Changes Checklist"},"365":{"body":"","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Appendix: Alternatives Considered","id":"365","title":"Appendix: Alternatives Considered"},"366":{"body":"In this alternative, aws-types has a ProvideCachedCredentials in addition to ProvideCredentials. All individual credential providers (such as ImdsCredentialsProvider) implement ProvideCredentials, while credential caches (such as LazyCachingCredentialsProvider) implement the ProvideCachedCredentials. The ConfigLoader would only take impl ProvideCachedCredentials. This allows customers to provide their own caching solution by implementing ProvideCachedCredentials, while requiring that caching be done correctly through the type system since ProvideCredentials is only useful inside the implementation of ProvideCachedCredentials. Caching can be opted out by creating a NoCacheCredentialsProvider that implements ProvideCachedCredentials without any caching logic, although this wouldn't be recommended and this provider wouldn't be vended in aws-config. Example configuration: // Compiles\nlet sdk_config = aws_config::from_env() .credentials( LazyCachingCredentialsProvider::builder() .load(ImdsCredentialsProvider::new()) .build() ) .load() .await; // Doesn't compile\nlet sdk_config = aws_config::from_env() // Wrong type: doesn't implement `ProvideCachedCredentials` .credentials(ImdsCredentialsProvider::new()) .load() .await; Another method could be added to ConfigLoader that makes it easier to use the default cache: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::new()) .load() .await; Pros/cons :+1: It's flexible, and somewhat enforces correct cache setup through types. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers may unintentionally implement ProvideCachedCredentials instead of ProvideCredentials for a custom provider, and then not realize they're not benefiting from caching. :-1: The documentation needs to make it very clear what the differences are between ProvideCredentials and ProvideCachedCredentials since they will look identical. :-1: It's possible to implement both ProvideCachedCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative A: ProvideCachedCredentials trait","id":"366","title":"Alternative A: ProvideCachedCredentials trait"},"367":{"body":"This alternative is similar to alternative A, except that the cache trait is distinct from ProvideCredentials so that it's more apparent when mistakenly implementing the wrong trait for a custom credentials provider. A CacheCredentials trait would be added that looks as follows: pub trait CacheCredentials: Send + Sync + Debug { async fn cached(&self, now: SystemTime) -> Result;\n} Instances implementing CacheCredentials need to own the ProvideCredentials implementation to make both lazy and eager credentials caching possible. The configuration examples look identical to Option A. Pros/cons :+1: It's flexible, and enforces correct cache setup through types slightly better than Option A. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers can still unintentionally implement the wrong trait and miss out on caching when creating custom credentials providers, but it will be more apparent than in Option A. :-1: It's possible to implement both CacheCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative B: CacheCredentials trait","id":"367","title":"Alternative B: CacheCredentials trait"},"368":{"body":"The struct approach posits that customers don't need or want to implement custom credential caching, but at the same time, doesn't make it impossible to add custom caching later. The idea is that there would be a struct called CredentialsCache that specifies the desired caching approach for a given credentials provider: pub struct LazyCache { credentials_provider: Arc, // ...\n} pub struct EagerCache { credentials_provider: Arc, // ...\n} pub struct CustomCache { credentials_provider: Arc, // Not naming or specifying the custom cache trait for now since its out of scope cache: Arc\n} enum CredentialsCacheInner { Lazy(LazyCache), // Eager doesn't exist today, so this is purely for illustration Eager(EagerCache), // Custom may not be implemented right away Custom(CustomCache),\n} pub struct CredentialsCache { inner: CredentialsCacheInner,\n} impl CredentialsCache { // Methods prefixed with `default_` just use the default cache settings pub fn default_lazy(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } pub fn default_eager(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy(provider: impl ProvideCredentials + 'static) -> LazyBuilder { /* ... */ } pub fn eager(provider: impl ProvideCredentials + 'static) -> EagerBuilder { /* ... */ } pub(crate) fn create_cache( self, sleep_impl: Arc ) -> SharedCredentialsProvider { // ^ Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(inner.credentials_provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation rather than impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Configuration would look as follows: let sdk_config = aws_config::from_env() .credentials(CredentialsCache::default_lazy(ImdsCredentialsProvider::builder().build())) .load() .await; The credentials_provider method on ConfigLoader would only take CredentialsCache as an argument so that the SDK could not be configured without credentials caching, or if opting out of caching becomes a use case, then a CredentialsCache::NoCache variant could be made. Like alternative A, a convenience method can be added to make using the default cache easier: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::builder().build()) .load() .await; In the future if custom caching is added, it would look as follows: let sdk_config = aws_config::from_env() .credentials( CredentialsCache::custom(ImdsCredentialsProvider::builder().build(), MyCache::new()) ) .load() .await; The ConfigLoader wouldn't be able to immediately set its credentials provider since other values from the config are needed to construct the cache (such as sleep_impl). Thus, the credentials setter would merely save off the CredentialsCache instance, and then when load is called, the complete SharedCredentialsProvider would be constructed: pub async fn load(self) -> SdkConfig { // ... let credentials_provider = self.credentials_cache.create_cache(sleep_impl); // ...\n} Pros/cons :+1: Removes the possibility of missing out on caching when implementing a custom provider. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Requires thinking about caching when only wanting to customize the credentials provider :-1: Requires a lot of boilerplate in aws-config for the builders, enum variant structs, etc.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative C: CredentialsCache struct with composition","id":"368","title":"Alternative C: CredentialsCache struct with composition"},"369":{"body":"Status: Implemented in smithy-rs#2108 Applies to: clients This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them. It is assumed that the primary motivation behind the introduction of type safe credentials caching remains the same as the preceding RFC.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » RFC: Finding New Home for Credential Types","id":"369","title":"RFC: Finding New Home for Credential Types"},"37":{"body":"Because key MUST be a string in Smithy maps, we avoid the hashibility issue encountered with Set. There are optimizations that could be considered (e.g. since these maps will probably never be modified), however, pending customer feedback, Smithy Maps become HashMap in Rust.","breadcrumbs":"Smithy » Aggregate Shapes » Map","id":"37","title":"Map"},"370":{"body":"This document assumes that the following items in the changes checklist in the preceding RFC have been implemented: Implement CredentialsCache with its Lazy variant and builder Add the credentials_cache method to ConfigLoader Rename SharedCredentialsProvider to SharedCredentialsCache Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Assumptions","id":"370","title":"Assumptions"},"371":{"body":"Here is how our attempt to implement the selected design in the preceding RFC can lead to an obstacle. Consider this code snippet we are planning to support: let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::lazy()) .load() .await; let client = aws_sdk_s3::Client::new(&sdk_config); A CredentialsCache created by CredentialsCache::lazy() above will internally go through three crates before the variable client has been created: aws-config: after it has been passed to aws_config::ConfigLoader::credentials_cache // in lib.rs impl ConfigLoader { // --snip-- pub fn credentials_cache(mut self, credentials_cache: CredentialsCache) -> Self { self.credentials_cache = Some(credentials_cache); self } // --snip--\n} aws-types: after aws_config::ConfigLoader::load has passed it to aws_types::sdk_config::Builder::credentials_cache // in sdk_config.rs impl Builder { // --snip-- pub fn credentials_cache(mut self, cache: CredentialsCache) -> Self { self.set_credentials_cache(Some(cache)); self } // --snip--\n} aws-sdk-s3: after aws_sdk_s3::Client::new has been called with the variable sdk_config // in client.rs impl Client { // --snip-- pub fn new(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Self::from_conf(sdk_config.into()) } // --snip--\n} calls // in config.rs impl From<&aws_types::sdk_config::SdkConfig> for Builder { fn from(input: &aws_types::sdk_config::SdkConfig) -> Self { let mut builder = Builder::default(); builder = builder.region(input.region().cloned()); builder.set_endpoint_resolver(input.endpoint_resolver().clone()); builder.set_retry_config(input.retry_config().cloned()); builder.set_timeout_config(input.timeout_config().cloned()); builder.set_sleep_impl(input.sleep_impl()); builder.set_credentials_cache(input.credentials_cache().cloned()); builder.set_credentials_provider(input.credentials_provider().cloned()); builder.set_app_name(input.app_name().cloned()); builder.set_http_connector(input.http_connector().cloned()); builder }\n} impl From<&aws_types::sdk_config::SdkConfig> for Config { fn from(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Builder::from(sdk_config).build() }\n} What this all means is that CredentialsCache needs to be accessible from aws-config, aws-types, and aws-sdk-s3 (SDK client crates, to be more generic). We originally assumed that CredentialsCache would be defined in aws-config along with LazyCredentialsCache, but the assumption no longer holds because aws-types and aws-sdk-s3 do not depend upon aws-config. Therefore, we need to find a new place in which to create credentials caches accessible from the aforementioned crates.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Problems","id":"371","title":"Problems"},"372":{"body":"We propose to move the following items to a new crate called aws-credential-types: All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies For the first bullet point, we move types and traits associated with credentials out of aws-types. Crucially, the ProvideCredentials trait now lives in aws-credential-types. For the second bullet point, we move the items related to credentials caching. CredentialsCache with its Lazy variant and builder lives in aws-credential-types and CredentialsCache::create_cache will be marked as pub. One area where we make an adjustment, though, is that LazyCredentialsCache depends on aws_types::os_shim_internal::TimeSource so we need to move TimeSource into aws-credentials-types as well. A result of the above arrangement will give us the following module dependencies (only showing what's relevant): :+1: aws_types::sdk_config::Builder and a service client config::Builder can create a SharedCredentialsCache with a concrete type of credentials cache. :+1: It avoids cyclic crate dependencies. :-1: There is one more AWS runtime crate to maintain and version.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Proposed Solution","id":"372","title":"Proposed Solution"},"373":{"body":"An alternative design is to move the following items to a separate crate (tentatively called aws-XXX): All items in aws_types::sdk_config, i.e. SdkConfig and its builder All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies The reason for the first bullet point is that the builder needs to be somewhere it has access to the credentials caching factory function, CredentialsCache::create_cache. The factory function is in aws-XXX and if the builder stayed in aws-types, it would cause a cyclic dependency between those two crates. A result of the above arrangement will give us the following module dependencies: We have dismissed this design mainly because we try moving out of the aws-types create as little as possible. Another downside is that SdkConfig sitting together with the items for credentials provider & caching does not give us a coherent mental model for the aws-XXX crate, making it difficult to choose the right name for XXX.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Rejected Alternative","id":"373","title":"Rejected Alternative"},"374":{"body":"The following list does not repeat what is listed in the preceding RFC but does include those new mentioned in the Assumptions section: Create aws-credential-types Move all items in aws_types::credentials and their dependencies to the aws-credential-types crate Move all items in aws_config::meta::credentials and their dependencies to the aws-credential-types crate Update use statements and fully qualified names in the affected places","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Changes Checklist","id":"374","title":"Changes Checklist"},"375":{"body":"Status: RFC Applies to: Output, Input, and Builder types as well as DateTime, Document, Blob, and Number implemented in aws_smithy_types crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » RFC: Serialization and Deserialization","id":"375","title":"RFC: Serialization and Deserialization"},"376":{"body":"Builder Refers to data types prefixed with Builder, which converts itself into a corresponding data type upon being built. e.g. aws_sdk_dynamodb::input::PutItemInput. serde Refers to serde crate. Serialize Refers to Serialize trait avaialble on serde crate. Deserialize Refers to Deserialize trait available on serde crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Terminology","id":"376","title":"Terminology"},"377":{"body":"We are going to implement Serialize and Deserialize traits from serde crate to some data types. Data types that are going to be affected are; builder data types operation Input types operation Output types data types that builder types may have on their field(s) aws_smithy_types::DateTime aws_smithy_types::Document aws_smithy_types::Blob aws_smithy_types::Number DateTime and Blob implements different serialization/deserialization format for human-readable and non-human readable format; We must emphasize that these 2 formats are not compatible with each other. The reason for this is explained in the Blob section and Date Time . Additionally, we add fn set_fields to fluent builders to allow users to set the data they deserialized to fluent builders. Lastly, we emphasize that this RFC does NOT aim to serialize the entire response or request or implement serde traits on data types for server-side code.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Overview","id":"377","title":"Overview"},"378":{"body":"Users have requested serde traits to be implemented on data types implemented in rust SDK. We have created this RFC with the following use cases in mind. [request]: Serialize/Deserialize of models for Lambda events #269 Tests as suggested in the design FAQ. Building tools","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case","id":"378","title":"Use Case"},"379":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate","id":"379","title":"Feature Gate"},"38":{"body":"See StructureGenerator.kt for more details Smithy structure becomes a struct in Rust. Backwards compatibility & usability concerns lead to a few design choices: As specified by NullableIndex, fields are Option when Smithy models them as nullable. All structs are marked #[non_exhaustive] All structs derive Debug & PartialEq. Structs do not derive Eq because a float member may be added in the future. Struct fields are public. Public struct fields allow for split borrows . When working with output objects this significantly improves ergonomics, especially with optional fields. let out = dynamo::ListTablesOutput::new();\nout.some_field.unwrap(); // <- partial move, impossible with an accessor Builders are generated for structs that provide ergonomic and backwards compatible constructors. A builder for a struct is always available via the convenience method SomeStruct::builder() Structures manually implement debug: In order to support the sensitive trait , a Debug implementation for structures is manually generated.","breadcrumbs":"Smithy » Aggregate Shapes » Structure","id":"38","title":"Structure"},"380":{"body":"To enable any of the features from this RFC, user must pass --cfg aws-sdk-unstable to rustc. You can do this by specifying it on env-variable or by config.toml. specifying it on .cargo/config.toml [build]\nrustflags = [\"--cfg\", \"aws-sdk-unstable\"] As an environment variable export RUSTFLAGS=\"--cfg aws-sdk-unstable\"\ncargo build We considered allowing users to enable this feature on a crate-level. e.g. [dependencies]\naws_sdk_dynamodb = { version = \"0.22.0\", features = [\"unstable\", \"serialize\"] } Compared to the cfg approach, it is lot easier for the users to enable this feature. However, we believe that cfg approach ensure users won't enable this feature by surprise, and communicate to users that features behind this feature gate can be taken-away or exprience breaking changes any time in future.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enabling Feature","id":"380","title":"Enabling Feature"},"381":{"body":"Serde traits are implemented behind feature gates. Serialize is implemented behind serde-serialize, while Deserialize is implemented behind serde-deserialize. Users must enable the unstable feature to expose those features. We considered giving each feature a dedicated feature gate such as unstable-serde-serialize. In this case, we will need to change the name of feature gates entirely once it leaves the unstable status which will cause users to make changes to their code base. We conclude that this brings no benefit to the users. Furthermore, we considered naming the fature-gate serialize/deserialize. However, this way it would be confusing for the users when we add support for different serialization/deserialization framework such as deser. Thus, to emphasize that the traits is from serde crate, we decided to name it serde-serialize/serde-deserialize","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate for Serialization and De-serialization","id":"381","title":"Feature Gate for Serialization and De-serialization"},"382":{"body":"We considered keeping both features behind the same feature gate. There is no significant difference in the complexity of implementation. We do not see any benefit in keeping them behind the same feature gate as this will only increase compile time when users do not need one of the features.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Keeping both features behind the same feature gate","id":"382","title":"Keeping both features behind the same feature gate"},"383":{"body":"We considered implementing different feature gates for output, input, and their corresponding data types. For example, output and input types can have output-serde-* and input-serde-*. We are unable to do this as relevant metadata is not available during the code-gen.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Different feature gates for different data types","id":"383","title":"Different feature gates for different data types"},"384":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Implementation","id":"384","title":"Implementation"},"385":{"body":"aws_smithy_types is a crate that implements smithy's data types. These data types must implement serde traits as well since SDK uses the data types.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Smithy Types","id":"385","title":"Smithy Types"},"386":{"body":"Serialize and Deserialize is not implemented with derive macro. In human-readable format, Blob is serialized as a base64 encoded string and any data to be deserialized as this data type must be encoded in base 64. Encoding must be carried out by base64::encode function available from aws_smithy_types crate. Non-human readable format serializes Blob with fn serialize_bytes. Reason behind the implementation of human-readable format aws_smithy_types crate comes with functions for encoding/decoding base 64, which makes the implementation simpler. Additionally, AWS CLI and AWS SDK for other languages require data to be encoded in base 64 when it requires Blob type as input. We also considered serializing them with serialize_bytes, without encoding them with serialize_bytes. In this case, the implementation will depend on the implementation of the library author. There are many different crates, so we decided to survey how some of the most popular crates implement this feature. library version implementation all-time downloads on crate.io as of writing (Dec 2022) serde_json 1.0 Array of number 109,491,713 toml 0.5.9 Array of number 63,601,994 serde_yaml 0.9.14 Unsupported 23,767,300 First of all, bytes could have hundreds of elements; reading an array of hundreds of numbers will never be a pleasing experience, and it is especially troubling when you are writing data for test cases. Additionally, it has come to our attention that some crates just doesn't support it, which would hinder users' ability to be productive and tie users' hand. For the reasons described above, we believe that it is crucial to encode them to string and base64 is favourable over other encoding schemes such as base 16, 32, or Ascii85. Reason behind the implementation of a non-human readable format We considered using the same logic for non-human readable format as well. However, readable-ness is not necessary for non-human readable format. Additionally, non-human readable format tends to emphasize resource efficiency over human-readable format; Base64 encoded string would take up more space, which is not what the users would want. Thus, we believe that implementing a tailored serialization logic would be beneficial to the users.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Blob","id":"386","title":"Blob"},"387":{"body":"Serialize and Deserialize is not implemented with derive macro. For human-readable format, DateTime is serialized in RFC-3339 format; It expects the value to be in RFC-3339 format when it is Deserialized. Non-human readable implements DateTime as a tuple of u32 and i64; the latter corresponds to seconds field and the first is the seubsecond_nanos. Reason behind the implementation of a human-readable format For serialization, DateTime format already implements a function to encode itself into RFC-3339 format. For deserialization, it is possible to accept other formats, we can add this later if we find it reasonable. Reason behind the implementation of a non-human readable format Serializing them as tuples of two integers results in a smaller data size and requires less computing power than any string-based format. Tuple will be smaller in size as it does not require tagging like in maps.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » DateTime","id":"387","title":"DateTime"},"388":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without tagging thanks to the difference in each variant's datatypes.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Document","id":"388","title":"Document"},"389":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without a tag as each variant's content is different.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Number","id":"389","title":"Number"},"39":{"body":"Smithy Input : @documentation(\"

    Contains I/O usage metrics...\")\nstructure IOUsage { @documentation(\"... elided\") ReadIOs: ReadIOs, @documentation(\"... elided\") WriteIOs: WriteIOs\n} long ReadIOs long WriteIOs Rust Output : ///

    Contains I/O usage metrics for a command that was invoked.

    \n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct IoUsage { ///

    The number of read I/O requests that the command made.

    pub read_i_os: i64, ///

    The number of write I/O requests that the command made.

    pub write_i_os: i64,\n}\nimpl std::fmt::Debug for IoUsage { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"IoUsage\"); formatter.field(\"read_i_os\", &self.read_i_os); formatter.field(\"write_i_os\", &self.write_i_os); formatter.finish() }\n}\n/// See [`IoUsage`](crate::model::IoUsage)\npub mod io_usage { /// A builder for [`IoUsage`](crate::model::IoUsage) #[non_exhaustive] #[derive(Debug, Clone, Default)] pub struct Builder { read_i_os: std::option::Option, write_i_os: std::option::Option, } impl Builder { ///

    The number of read I/O requests that the command made.

    pub fn read_i_os(mut self, inp: i64) -> Self { self.read_i_os = Some(inp); self } ///

    The number of read I/O requests that the command made.

    pub fn set_read_i_os(mut self, inp: Option) -> Self { self.read_i_os = inp; self } ///

    The number of write I/O requests that the command made.

    pub fn write_i_os(mut self, inp: i64) -> Self { self.write_i_os = Some(inp); self } ///

    The number of write I/O requests that the command made.

    pub fn set_write_i_os(mut self, inp: Option) -> Self { self.write_i_os = inp; self } /// Consumes the builder and constructs a [`IoUsage`](crate::model::IoUsage) pub fn build(self) -> crate::model::IoUsage { crate::model::IoUsage { read_i_os: self.read_i_os.unwrap_or_default(), write_i_os: self.write_i_os.unwrap_or_default(), } } }\n}\nimpl IoUsage { /// Creates a new builder-style object to manufacture [`IoUsage`](crate::model::IoUsage) pub fn builder() -> crate::model::io_usage::Builder { crate::model::io_usage::Builder::default() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Example Structure Output","id":"39","title":"Example Structure Output"},"390":{"body":"Builder types and non Builder types implement Serialize and Deserialize with derive macro. Example: #[cfg_attr( all(aws-sdk-unstable, feature = \"serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct UploadPartCopyOutput { ...\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Builder Types and Non-Builder Types","id":"390","title":"Builder Types and Non-Builder Types"},"391":{"body":"serde allows programmers to use one of four different tagging ( internal, external, adjacent, and untagged ) when serializing an enum.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enum Representation","id":"391","title":"Enum Representation"},"392":{"body":"You cannot deserialize serialized data in some cases. For example, aws_sdk_dynamodb::model::AttributeValue has Null(bool) and Bool(bool), which you cannot distinguish serialized values without a tag.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » untagged","id":"392","title":"untagged"},"393":{"body":"This results in compile time error. Using a #[serde(tag = \"...\")] attribute on an enum containing a tuple variant is an error at compile time .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » internal","id":"393","title":"internal"},"394":{"body":"We are left with external and adjacent tagging. External tagging is the default way. This RFC can be achieved either way. The resulting size of the serialized data is smaller when tagged externally, as adjacent tagging will require a tag even when a variant has no content. For the reasons mentioned above, we implement an enum that is externally tagged.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » external and adjacent","id":"394","title":"external and adjacent"},"395":{"body":"We are going to skip serialization and deserialization of fields that have the datatype that corresponds to @streaming blob from smithy. Any fields with these data types are tagged with #[serde(skip)]. By skipping, corresponding field's value will be assigned the value generated by Default trait. As of writing, aws_smithy_http::byte_stream::ByteStream is the only data type that is affected by this decision. Here is an example of data types affected by this decision: aws_sdk_s3::input::put_object_input::PutObjectInput We considered serializing them as bytes, however, it could take some time for a stream to reach the end, and the resulting serialized data may be too big for itself to fit into the ram. Here is an example snippet. #[allow(missing_docs)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::fmt::Debug)]\npub struct PutObjectInput { pub acl: std::option::Option, pub body: aws_smithy_http::byte_stream::ByteStream, // ... other fields\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data Types to Skip Serialization/Deserialization","id":"395","title":"Data Types to Skip Serialization/Deserialization"},"396":{"body":"For data types that include @streaming union in any of their fields, we do NOT implement serde traits. As of writing, following Rust data types corresponds to @streaming union. aws_smithy_http::event_stream::Receiver aws_smithy_http::event_stream::EventStreamSender Here is an example of data type affected by this decision; aws_sdk_transcribestreaming::client::fluent_builders::StartMedicalStreamTranscription We considered skipping relevant fields on serialization and creating a custom de-serialization function which creates event stream that will always result in error when a user tries to send/receive data. However, we believe that our decision is justified for following reason. All for operations that feature event streams since the stream is ephemeral (tied to the HTTP connection), and is effectively unusable after serialization and deserialization Most event stream operations don't have fields that go along with them, making the stream the sole component in them, which makes ser/de not so useful SDK that uses event stream, such as aws-sdk-transcribestreaming only has just over 5000 all-time downloads with recent downloads of just under 1000 as of writing (2023/01/21); It makes it difficult to justify since the implementation impacts smaller number of people.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data types to exclude from ser/de code generation","id":"396","title":"Data types to exclude from ser/de code generation"},"397":{"body":"Output data, such as aws_sdk_dynamodb::output::UpdateTableOutput has builder types. These builder types are available to users, however, no API requires users to build data types by themselves. We considered removing traits from these data types. Removing serde traits on these types will help reduce compile time, however, builder type can be useful, for example, for testing. We have prepared examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Serde traits implemented on Builder of Output Types","id":"397","title":"Serde traits implemented on Builder of Output Types"},"398":{"body":"Currently, to set the value to fluent builders, users must call setter methods for each field. SDK does not have a method that allows users to use deserialized Input. Thus, we add a new method fn set_fields to Client types. This method accepts inputs and replaces all parameters that Client has with the new one. pub fn set_fields(mut self, input_type: path::to::input_type) -> path::to::input_type { self.inner = input_type; self\n} Users can use fn set_fields to replace the parameters in fluent builders. You can find examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » fn set_fields to allow users to use externally created Input","id":"398","title":"fn set_fields to allow users to use externally created Input"},"399":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Other Concerns","id":"399","title":"Other Concerns"},"4":{"body":"The Rust SDK is code generated from Smithy models, using Smithy codegeneration utilities. The Code generation is written in Kotlin. More details can be found in the Smithy section.","breadcrumbs":"Design Overview » Code Generation","id":"4","title":"Code Generation"},"40":{"body":"Smithy Union is modeled as enum in Rust. Generated enums must be marked #[non_exhaustive]. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue . Union members (enum variants) are not nullable, because Smithy union members cannot contain null values. When union members contain references to other shapes, we generate a wrapping variant (see below). Union members do not require #[non_exhaustive], because changing the shape targeted by a union member is not backwards compatible. is_variant and as_variant helper functions are generated to improve ergonomics.","breadcrumbs":"Smithy » Aggregate Shapes » Union","id":"40","title":"Union"},"400":{"body":"SDK will introduce new fields and we may see new data types in the future. We believe that this will not be a problem.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Model evolution","id":"400","title":"Model evolution"},"401":{"body":"Most fields are Option type. When the user de-serializes data written for a format before the new fields were introduced, new fields will be assigned with None type. If a field isn't Option, serde uses Default trait unless a custom de-serialization/serialization is specified to generate data to fill the field. If the new field is not an Option type and has no Default implementation, we must implement a custom de-serialization logic. In the case of serialization, the introduction of new fields will not be an issue unless the data format requires a schema. (e.g. parquet, avro) However, this is outside the scope of this RFC.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Fields","id":"401","title":"Introduction of New Fields"},"402":{"body":"If a new field introduces a new data type, it will not require any additional work if the data type can derive serde traits. If the data cannot derive serde traits on its own, then we have two options. To clarify, this is the same approach we took on Data Type to skip section. skip We will simply skip serializing/de-serializing. However, we may need to implement custom serialization/de-serialization logic if a value is not wrapped with Option. custom serialization/de-serialization logic We can implement tailored serialization/de-serialization logic. Either way, we will mention this on the generated docs to avoid surprising users. e.g. #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV1 { string_field: Option\n} #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV2 { string_field: Option, // this will always be treated as None value by serde #[serde(skip)] skip_not_serializable: Option, // We can implement a custom serialization logic #[serde(serialize_with = \"custom_serilization_logic\", deserialize_with = \"custom_deserilization_logic\")] not_derive_able: SomeComplexDataType, // Serialization will be skipped, and de-serialization will be handled with the function provided on default tag #[serde(skip, default = \"default_value\")] skip_with_custom: DataTypeWithoutDefaultTrait,\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Data Type","id":"402","title":"Introduction of New Data Type"},"403":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Discussions","id":"403","title":"Discussions"},"404":{"body":"If serialized data contains sensitive information, it will not be masked. We mention that fields can compromise such information on every struct field to ensure that users know this.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Sensitive Information","id":"404","title":"Sensitive Information"},"405":{"body":"We ran the following benchmark on C6a.2xlarge instance with 50gb of GP2 SSD. The commit hash of the code is a8e2e19129aead4fbc8cf0e3d34df0188a62de9f. It clearly shows an increase in compile time. Users are advised to consider the use of software such as sccache or mold to reduce the compile time. aws-sdk-dynamodb when compiled with debug profile command real time user time sys time cargo build 0m35.728s 2m24.243s 0m11.868s cargo build --features unstable-serde-serialize 0m38.079s 2m26.082s 0m11.631s cargo build --features unstable-serde-deserialize 0m45.689s 2m34.000s 0m11.978s cargo build --all-features 0m48.959s 2m45.688s 0m13.359s when compiled with release profile command real time user time sys time cargo build --release 0m52.040s 5m0.841s 0m11.313s cargo build --release --features unstable-serde-serialize 0m53.153s 5m4.069s 0m11.577s cargo build --release --features unstable-serde-deserialize 1m0.107s 5m10.231s 0m11.699s cargo build --release --all-features 1m3.198s 5m26.076s 0m12.311s aws-sdk-ec2 when compiled with debug profile command real time user time sys time cargo build 1m20.041s 2m14.592s 0m6.611s cargo build --features unstable-serde-serialize 2m0.555s 4m24.881s 0m16.131s cargo build --features unstable-serde-deserialize 3m10.857s 5m34.246s 0m18.844s cargo build --all-features 3m31.473s 6m1.052s 0m19.681s when compiled with release profile command real time user time sys time cargo build --release 2m29.480s 9m19.530s 0m15.957s cargo build --release --features unstable-serde-serialize 2m45.002s 9m43.098s 0m16.886s cargo build --release --features unstable-serde-deserialize 3m47.531s 10m52.017s 0m18.404s cargo build --release --all-features 3m45.208s 8m46.168s 0m10.211s","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Compile Time","id":"405","title":"Compile Time"},"406":{"body":"SDK team previously expressed concern that serialized data may be misleading. We believe that features implemented as part of this RFC do not produce a misleading result as we focus on builder types and it's corresponding data types which are mapped to serde's data type model with the derive macro.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Misleading Results","id":"406","title":"Misleading Results"},"407":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Appendix","id":"407","title":"Appendix"},"408":{"body":"use aws_sdk_dynamodb::{Client, Error}; async fn example(read_builder: bool) -> Result<(), Error> { // getting the client let shared_config = aws_config::load_from_env().await; let client = Client::new(&shared_config); // de-serializing input's builder types and input types from json let deserialized_input = if read_builder { let mut parameter: aws_sdk_dynamodb::input::list_tables_input::Builder = serde_json::from_str(include_str!(\"./builder.json\")); parameter.set_exclusive_start_table_name(\"some_name\").build() } else { let input: aws_sdk_dynamodb::input::ListTablesInput = serde_json::from_str(include_str!(\"./input.json\")); input }; // sending request using the deserialized input let res = client.list_tables().set_fields(deserialized_input).send().await?; println!(\"DynamoDB tables: {:?}\", res.table_names); let out: aws_sdk_dynamodb::output::ListTablesOutput = { // say you want some of the field to have certain values let mut out_builder: aws_sdk_dynamodb::output::list_tables_output::Builder = serde_json::from_str(r#\" { table_names: [ \"table1\", \"table2\" ] } \"#); // but you don't really care about some other values out_builder.set_last_evaluated_table_name(res.last_evaluated_table_name()).build() }; assert_eq!(res, out); // serializing json output let json_output = serde_json::to_string(res).unwrap(); // you can save the serialized input println!(json_output); Ok(())\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case Examples","id":"408","title":"Use Case Examples"},"409":{"body":"Implement human-redable serialization for DateTime and Blob in aws_smithy_types Implement non-human-redable serialization for DateTime and Blob in aws_smithy_types Implement Serialize and Deserialize for relevant data types in aws_smithy_types Modify Kotlin's codegen so that generated Builder and non-Builder types implement Serialize and Deserialize Add feature gate for Serialize and Deserialize Prepare examples Prepare reproducible compile time benchmark","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Changes checklist","id":"409","title":"Changes checklist"},"41":{"body":"The union generated for a simplified dynamodb::AttributeValue Smithy : namespace test union AttributeValue { @documentation(\"A string value\") string: String, bool: Boolean, bools: BoolList, map: ValueMap\n} map ValueMap { key: String, value: AttributeValue\n} list BoolList { member: Boolean\n} Rust : #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { /// a string value String(std::string::String), Bool(bool), Bools(std::vec::Vec), Map(std::collections::HashMap),\n} impl AttributeValue { pub fn as_bool(&self) -> Result<&bool, &crate::model::AttributeValue> { if let AttributeValue::Bool(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bool(&self) -> bool { self.as_bool().is_some() } pub fn as_bools(&self) -> Result<&std::vec::Vec, &crate::model::AttributeValue> { if let AttributeValue::Bools(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bools(&self) -> bool { self.as_bools().is_some() } pub fn as_map(&self) -> Result<&std::collections::HashMap, &crate::model::AttributeValue> { if let AttributeValue::Map(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_map(&self) -> bool { self.as_map().is_some() } pub fn as_string(&self) -> Result<&std::string::String, &crate::model::AttributeValue> { if let AttributeValue::String(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_string(&self) -> bool { self.as_string().is_some() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Generated Union Example","id":"41","title":"Generated Union Example"},"410":{"body":"Status: Implemented in smithy-rs#2246 Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a fallback mechanism for credentials providers on external timeout (see the Terminology section), allowing them to continue serving (possibly expired) credentials for the sake of overall reliability of the intended service; The IMDS credentials provider is an example that must fulfill such a requirement to support static stability.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » RFC: Providing fallback credentials on external timeout","id":"410","title":"RFC: Providing fallback credentials on external timeout"},"411":{"body":"External timeout: The name of the timeout that occurs when a duration elapses before an async call to provide_credentials returns. In this case, provide_credentials returns no credentials. Internal timeout: The name of the timeout that occurs when a duration elapses before an async call to some function, inside the implementation of provide_credentials, returns. Examples include connection timeouts, TLS negotiation timeouts, and HTTP request timeouts. Implementations of provide_credentials may handle these failures at their own discretion e.g. by returning (possibly expired) credentials or a CredentialsError. Static stability: Continued availability of a service in the face of impaired dependencies.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Terminology","id":"411","title":"Terminology"},"412":{"body":"This RFC is concerned only with external timeouts, as the cost of poor API design is much higher in this case than for internal timeouts. The former will affect a public trait implemented by all credentials providers whereas the latter can be handled locally by individual credentials providers without affecting one another.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Assumption","id":"412","title":"Assumption"},"413":{"body":"We have mentioned static stability. Supporting it calls for the following functional requirement, among others: REQ 1: Once a credentials provider has served credentials, it should continue serving them in the event of a timeout (whether internal or external) while obtaining refreshed credentials. Today, we have the following trait method to obtain credentials: fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>\nwhere Self: 'a, This method returns a future, which can be raced against a timeout future as demonstrated by the following code snippet from LazyCredentialsCache: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| async move { let credentials = future.await.map_err(|_err| { CredentialsError::provider_timed_out(load_timeout) })??; // --snip-- }).await;\n// --snip-- This creates an external timeout for provide_credentials. If timeout_future wins the race, a future for provide_credentials gets dropped, timeout_future returns an error, and the error is mapped to CredentialsError::ProviderTimedOut and returned. This makes it impossible for the variable provider above to serve credentials as stated in REQ 1. A more complex use case involves CredentialsProviderChain. It is a manifestation of the chain of responsibility pattern and keeps calling the provide_credentials method on each credentials provider down the chain until credentials are returned by one of them. In addition to REQ 1, we have the following functional requirement with respect to CredentialsProviderChain: REQ 2: Once a credentials provider in the chain has returned credentials, it should continue serving them even in the event of a timeout (whether internal or external) without falling back to another credentials provider. Referring back to the code snippet above, we analyze two relevant cases (and suppose provider 2 below must meet REQ 1 and REQ 2 in each case): Case 1: Provider 2 successfully loaded credentials but later failed to do so because an external timeout kicked in. The figure above illustrates an example. This CredentialsProviderChain consists of three credentials providers. When CredentialsProviderChain::provide_credentials is called, provider 1's provide_credentials is called but does not find credentials so passes the torch to provider 2, which in turn successfully loads credentials and returns them. The next time the method is called, provider 1 does not find credentials but neither does provider 2 this time, because an external timeout by timeout_future given to the whole chain kicked in and the future is dropped while provider 2's provide_credentials was running. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns a CredentialsError::ProviderTimedOut instead. Case 2: Provider 2 successfully loaded credentials but later was not reached because its preceding provider was still running when an external timeout kicked in. The figure above illustrates an example with the same setting as the previous figure. Again, when CredentialsProviderChain::provide_credentials is called the first time, provider 1 does not find credentials but provider 2 does. The next time the method is called, provider 1 is still executing provide_credentials and then an external timeout by timeout_future kicked in. Consequently, the execution of CredentialsProviderChain::provide_credentials has been terminated. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns CredentialsError::ProviderTimedOut instead.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Problem","id":"413","title":"Problem"},"414":{"body":"To address the problem in the previous section, we propose to add a new method to the ProvideCredentials trait called fallback_on_interrupt. This method allows credentials providers to have a fallback mechanism on an external timeout and to serve credentials to users if needed. There are two options as to how it is implemented, either as a synchronous primitive or as an asynchronous primitive. Option A: Synchronous primitive pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt(&self) -> Option { None }\n} :+1: Users can be guided to use only synchronous primitives when implementing fallback_on_interrupt. :-1: It cannot support cases where fallback credentials are asynchronously retrieved. :-1: It may turn into a blocking operation if it takes longer than it should. Option B: Asynchronous primitive mod future { // --snip-- // This cannot use `OnlyReady` in place of `BoxFuture` because // when a chain of credentials providers implements its own // `fallback_on_interrupt`, it needs to await fallback credentials // in its inner providers. Thus, `BoxFuture` is required. pub struct FallbackOnInterrupt<'a>(NowOrLater, BoxFuture<'a, Option>>); // impls for FallbackOnInterrupt similar to those for the ProvideCredentials future newtype\n} pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt<'a>(&'a self) -> future::FallbackOnInterrupt<'a> { future::FallbackOnInterrupt::ready(None) }\n} :+1: It is async from the beginning, so less likely to introduce a breaking change. :-1: We may have to consider yet another timeout for fallback_on_interrupt itself. Option A cannot be reversible in the future if we are to support the use case for asynchronously retrieving the fallback credentials, whereas option B allows us to continue supporting both ready and pending futures when retrieving the fallback credentials. However, fallback_on_interrupt is supposed to return credentials that have been set aside in case provide_credentials is timed out. To express that intent, we choose option A and document that users should NOT go fetch new credentials in fallback_on_interrupt. The user experience for the code snippet in question will look like this once this proposal is implemented: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| { async move { let credentials = match future.await { Ok(creds) => creds?, Err(_err) => match provider.fallback_on_interrupt() { // can provide fallback credentials Some(creds) => creds, None => return Err(CredentialsError::provider_timed_out(load_timeout)), } }; // --snip-- } }).await;\n// --snip--","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Proposal","id":"414","title":"Proposal"},"415":{"body":"Almost all credentials providers do not have to implement their own fallback_on_interrupt except for CredentialsProviderChain (ImdsCredentialsProvider also needs to implement fallback_on_interrupt when we are adding static stability support to it but that is outside the scope of this RFC). Considering the two cases we analyzed above, implementing CredentialsProviderChain::fallback_on_interrupt is not so straightforward. Keeping track of whose turn in the chain it is to call provide_credentials when an external timeout has occurred is a challenging task. Even if we figured it out, that would still not satisfy Case 2 above, because it was provider 1 that was actively running when the external timeout kicked in, but the chain should return credentials from provider 2, not from provider 1. With that in mind, consider instead the following approach: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn fallback_on_interrupt(&self) -> Option { { for (_, provider) in &self.providers { match provider.fallback_on_interrupt() { creds @ Some(_) => return creds, None => {} } } None }\n} CredentialsProviderChain::fallback_on_interrupt will invoke each provider's fallback_on_interrupt method until credentials are returned by one of them. It ensures that the updated code snippet for LazyCredentialsCache can return credentials from provider 2 in both Case 1 and Case 2. Even if timeout_future wins the race, the execution subsequently calls provider.fallback_on_interrupt() to obtain fallback credentials from provider 2, assuming provider 2's fallback_on_interrupt is implemented to return fallback credentials accordingly. The downside of this simple approach is that the behavior is not clear if more than one credentials provider in the chain can return credentials from their fallback_on_interrupt. Note, however, that it is the exception rather than the norm for a provider's fallback_on_interrupt to return fallback credentials, at least at the time of writing (01/13/2023). The fact that it returns fallback credentials means that the provider successfully loaded credentials at least once, and it usually continues serving credentials on subsequent calls to provide_credentials. Should we have more than one provider in the chain that can potentially return fallback credentials from fallback_on_interrupt, we could configure the behavior of CredentialsProviderChain managing in what order and how each fallback_on_interrupt should be executed. See the Possible enhancement section for more details. The use case described there is an extreme edge case, but it's worth exploring what options are available to us with the proposed design.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » How to actually implement this RFC","id":"415","title":"How to actually implement this RFC"},"416":{"body":"In this section, we will describe an alternative approach that we ended up dismissing as unworkable. Instead of fallback_on_interrupt, we considered the following method to be added to the ProvideCredentials trait: pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- /// Returns a future that provides credentials within the given `timeout`. /// /// The default implementation races `provide_credentials` against /// a timeout future created from `timeout`. fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { let timeout_future = sleeper.sleep(timeout); let future = Timeout::new(self.provide_credentials(), timeout_future); future::ProvideCredentials::new(async move { let credentials = future .await .map_err(|_err| CredentialsError::provider_timed_out(timeout))?; credentials }) } provide_credentials_with_timeout encapsulated the timeout race and allowed users to specify how long the external timeout for provide_credentials would be. The code snippet from LazyCredentialsCache then looked like let sleeper = Arc::clone(&self.sleeper);\nlet load_timeout = self.load_timeout; // by default self.load_timeout is 5 seconds.\n// --snip--\nlet result = cache .get_or_load(|| { async move { let credentials = provider .provide_credentials_with_timeout(sleeper, load_timeout) .await?; // --snip-- } }).await;\n// --snip-- However, implementing CredentialsProviderChain::provide_credentials_with_timeout quickly ran into the following problem: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.credentials_with_timeout(sleeper, timeout)) }\n} impl CredentialsProviderChain { // --snip-- async fn credentials_with_timeout( &self, sleeper: Arc, timeout: Duration, ) -> provider::Result { for (_, provider) in &self.providers { match provider .provide_credentials_with_timeout(Arc::clone(&sleeper), /* how do we calculate timeout for each provider ? */) .await { Ok(credentials) => { return Ok(credentials); } Err(CredentialsError::ProviderTimedOut(_)) => { // --snip-- } Err(err) => { // --snip-- } } } Err(CredentialsError::provider_timed_out(timeout)) } There are mainly two problems with this approach. The first problem is that as shown above, there is no sensible way to calculate a timeout for each provider in the chain. The second problem is that exposing a parameter like timeout at a public trait's level is giving too much control to users; delegating overall timeout to the individual provider means each provider has to get it right.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Alternative","id":"416","title":"Alternative"},"417":{"body":"Add fallback_on_interrupt method to the ProvideCredentials trait with the default implementation Implement CredentialsProviderChain::fallback_on_interrupt Implement DefaultCredentialsChain::fallback_on_interrupt Add unit tests for Case 1 and Case 2","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Changes checklist","id":"417","title":"Changes checklist"},"418":{"body":"We will describe how to customize the behavior for CredentialsProviderChain::fallback_on_interrupt. We are only demonstrating how much the proposed design can be extended and currently do not have concrete use cases to implement using what we present in this section. As described in the Proposal section, CredentialsProviderChain::fallback_on_interrupt traverses the chain from the head to the tail and returns the first fallback credentials found. This precedence policy works most of the time, but when we have more than one provider in the chain that can potentially return fallback credentials, it could break in the following edge case (we are still basing our discussion on the code snippet from LazyCredentialsCache but forget REQ 1 and REQ 2 for the sake of simplicity). During the first call to CredentialsProviderChain::provide_credentials, provider 1 fails to load credentials, maybe due to an internal timeout, and then provider 2 succeeds in loading its credentials (call them credentials 2) and internally stores them for Provider2::fallback_on_interrupt to return them subsequently. During the second call, provider 1 succeeds in loading credentials (call them credentials 1) and internally stores them for Provider1::fallback_on_interrupt to return them subsequently. Suppose, however, that credentials 1's expiry is earlier than credentials 2's expiry. Finally, during the third call, CredentialsProviderChain::provide_credentials did not complete due to an external timeout. CredentialsProviderChain::fallback_on_interrupt then returns credentials 1, when it should return credentials 2 whose expiry is later, because of the precedence policy. This a case where CredentialsProviderChain::fallback_on_interrupt requires the recency policy for fallback credentials found in provider 1 and provider 2, not the precedence policy. The following figure shows how we can set up such a chain: The outermost chain is a CredentialsProviderChain and follows the precedence policy for fallback_on_interrupt. It contains a sub-chain that, in turn, contains provider 1 and provider 2. This sub-chain implements its own fallback_on_interrupt to realize the recency policy for fallback credentials found in provider 1 and provider 2. Conceptually, we have pub struct FallbackRecencyChain { provider_chain: CredentialsProviderChain,\n} impl ProvideCredentials for FallbackRecencyChain { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { // Can follow the precedence policy for loading credentials // if it chooses to do so. } fn fallback_on_interrupt(&self) -> Option { // Iterate over `self.provider_chain` and return // fallback credentials whose expiry is the most recent. }\n} We can then compose the entire chain like so: let provider_1 = /* ... */\nlet provider_2 = /* ... */\nlet provider_3 = /* ... */ let sub_chain = CredentialsProviderChain::first_try(\"Provider1\", provider_1) .or_else(\"Provider2\", provider_2); let recency_chain = /* Create a FallbackRecencyChain with sub_chain */ let final_chain = CredentialsProviderChain::first_try(\"fallback_recency\", recency_chain) .or_else(\"Provider3\", provider_3); The fallback_on_interrupt method on final_chain still traverses from the head to the tail, but once it hits recency_chain, fallback_on_interrupt on recency_chain respects the expiry of fallback credentials found in its inner providers. What we have presented in this section can be generalized thanks to chain composability. We could have different sub-chains, each implementing its own policy for fallback_on_interrupt.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Possible enhancement","id":"418","title":"Possible enhancement"},"419":{"body":"Status: Accepted Applies to: server During and after the design and the core implementation of constraint traits in the server SDK, some problems relating to constraint violations were identified. This RFC sets out to explain and address three of them: impossible constraint violations , collecting constraint violations , and \"tightness\" of constraint violations . The RFC explains each of them in turn, solving them in an iterative and pedagogical manner, i.e. the solution of a problem depends on the previous ones having been solved with their proposed solutions. The three problems are meant to be addressed atomically in one changeset (see the Checklist ) section. Note: code snippets from generated SDKs in this document are abridged so as to be didactic and relevant to the point being made. They are accurate with regards to commit 2226fe .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » RFC: Better Constraint Violations","id":"419","title":"RFC: Better Constraint Violations"},"42":{"body":"","breadcrumbs":"Smithy » Endpoint Resolution » Endpoint Resolution","id":"42","title":"Endpoint Resolution"},"420":{"body":"The design and the description of the PR where the core implementation of constraint traits was made are recommended prior reading to understand this RFC. Shape closure : the set of shapes a shape can \"reach\", including itself. Transitively constrained shape : a shape whose closure includes: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape ; or an intEnum shape . A directly constrained shape is any of these: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape , an intEnum shape ; or a structure shape with at least one required member shape. Constrained type : the Rust type a constrained shape gets rendered as. For shapes that are not structure, union, enum or intEnum shapes, these are wrapper newtype s. In the absence of a qualifier, \"constrained shape\" should be interpreted as \"transitively constrained shape\".","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Terminology","id":"420","title":"Terminology"},"421":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Impossible constraint violations","id":"421","title":"Impossible constraint violations"},"422":{"body":"A constrained type has a fallible constructor by virtue of it implementing the TryFrom trait. The error type this constructor may yield is known as a constraint violation : impl TryFrom for ConstrainedType { type Error = ConstraintViolation; fn try_from(value: UnconstrainedType) -> Result { ... }\n} The ConstraintViolation type is a Rust enum with one variant per way \"constraining\" the input value may fail. So, for example, the following Smithy model: structure A { @required member: String,\n} Yields: /// See [`A`](crate::model::A).\npub mod a { #[derive(std::cmp::PartialEq, std::fmt::Debug)] /// Holds one variant for each of the ways the builder can fail. pub enum ConstraintViolation { /// `member` was not provided but it is required when building `A`. MissingMember, }\n} Constraint violations are always Rust enums, even if they only have one variant. Constraint violations can occur in application code: use my_server_sdk::model let res = model::a::Builder::default().build(); // We forgot to set `member`. match res { Ok(a) => { ... }, Err(e) => { assert_eq!(model::a::ConstraintViolation::MissingMember, e); }\n}","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"422","title":"Background"},"423":{"body":"Currently, the constraint violation types we generate are used by both : the server framework upon request deserialization; and by users in application code. However, the kinds of constraint violations that can occur in application code can sometimes be a strict subset of those that can occur during request deserialization. Consider the following model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString This produces: pub struct LengthMap( pub(crate) std::collections::HashMap,\n); impl std::convert::TryFrom< std::collections::HashMap, > for LengthMap\n{ type Error = crate::model::length_map::ConstraintViolation; /// Constructs a `LengthMap` from an /// [`std::collections::HashMap`], failing when the provided value does not /// satisfy the modeled constraints. fn try_from( value: std::collections::HashMap, ) -> Result { let length = value.len(); if (1..=69).contains(&length) { Ok(Self(value)) } else { Err(crate::model::length_map::ConstraintViolation::Length(length)) } }\n} pub mod length_map { pub enum ConstraintViolation { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), } ...\n} Observe how the ConstraintViolation::Value variant is never constructed. Indeed, this variant is impossible to be constructed in application code : a user has to provide a map whose values are already constrained LengthStrings to the try_from constructor, which only enforces the map's @length trait. The reason why these seemingly \"impossible violations\" are being generated is because they can arise during request deserialization. Indeed, the server framework deserializes requests into fully unconstrained types . These are types holding unconstrained types all the way through their closures. For instance, in the case of structure shapes, builder types (the unconstrained type corresponding to the structure shape) hold builders all the way down. In the case of the above model, below is the alternate pub(crate) constructor the server framework uses upon deserialization. Observe how LengthMapOfLengthStringsUnconstrained is fully unconstrained and how the try_from constructor can yield ConstraintViolation::Value. pub(crate) mod length_map_of_length_strings_unconstrained { #[derive(Debug, Clone)] pub(crate) struct LengthMapOfLengthStringsUnconstrained( pub(crate) std::collections::HashMap, ); impl std::convert::TryFrom for crate::model::LengthMapOfLengthStrings { type Error = crate::model::length_map_of_length_strings::ConstraintViolation; fn try_from(value: LengthMapOfLengthStringsUnconstrained) -> Result { let res: Result< std::collections::HashMap, Self::Error, > = value .0 .into_iter() .map(|(k, v)| { let v: crate::model::LengthString = k.try_into().map_err(Self::Error::Key)?; Ok((k, v)) }) .collect(); let hm = res?; Self::try_from(hm) } }\n} In conclusion, the user is currently exposed to an internal detail of how the framework operates that has no bearing on their application code. They shouldn't be exposed to impossible constraint violation variants in their Rust docs, nor have to match on these variants when handling errors. Note: this comment alludes to the problem described above.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"423","title":"Problem"},"424":{"body":"The problem can be mitigated by adding #[doc(hidden)] to the internal variants and #[non_exhaustive] to the enum. We're already doing this in some constraint violation types. However, a \"less leaky\" solution is achieved by splitting the constraint violation type into two types, which this RFC proposes: one for use by the framework, with pub(crate) visibility, named ConstraintViolationException; and one for use by user application code, with pub visibility, named ConstraintViolation. pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), }\n} Note that, to some extent, the spirit of this approach is already currently present in the case of builder types when publicConstrainedTypes is set to false: ServerBuilderGenerator.kt renders the usual builder type that enforces constraint traits, setting its visibility to pub (crate), for exclusive use by the framework. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the builder type the user is exposed to: this builder does not take in constrained types and does not enforce all modeled constraints.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"424","title":"Solution proposal"},"425":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Collecting constraint violations","id":"425","title":"Collecting constraint violations"},"426":{"body":"Constrained operations are currently required to have smithy.framework#ValidationException as a member in their errors property . This is the shape that is rendered in responses when a request contains data that violates the modeled constraints. The shape is defined in the smithy-validation-model Maven package, as follows : $version: \"2.0\" namespace smithy.framework /// A standard error for input validation failures.\n/// This should be thrown by services when a member of the input structure\n/// falls outside of the modeled or documented constraints.\n@error(\"client\")\nstructure ValidationException { /// A summary of the validation failure. @required message: String, /// A list of specific failures encountered while validating the input. /// A member can appear in this list more than once if it failed to satisfy multiple constraints. fieldList: ValidationExceptionFieldList\n} /// Describes one specific validation failure for an input member.\nstructure ValidationExceptionField { /// A JSONPointer expression to the structure member whose value failed to satisfy the modeled constraints. @required path: String, /// A detailed description of the validation failure. @required message: String\n} list ValidationExceptionFieldList { member: ValidationExceptionField\n} It was mentioned in the constraint traits RFC , and implicit in the definition of Smithy's smithy.framework.ValidationException shape, that server frameworks should respond with a complete collection of errors encountered during constraint trait enforcement to the client.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"426","title":"Background"},"427":{"body":"As of writing, the TryFrom constructor of constrained types whose shapes have more than one constraint trait attached can only yield a single error. For example, the following shape: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString Yields: pub struct LengthPatternString(pub(crate) std::string::String); impl LengthPatternString { fn check_length( string: &str, ) -> Result<(), crate::model::length_pattern_string::ConstraintViolation> { let length = string.chars().count(); if (5..=10).contains(&length) { Ok(()) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Length(length)) } } fn check_pattern( string: String, ) -> Result { let regex = Self::compile_regex(); if regex.is_match(&string) { Ok(string) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Pattern(string)) } } pub fn compile_regex() -> &'static regex::Regex { static REGEX: once_cell::sync::Lazy = once_cell::sync::Lazy::new(|| { regex::Regex::new(r#\"[a-f0-5]*\"#).expect(r#\"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/awslabs/smithy-rs/issues for support\"#) }); ®EX }\n} impl std::convert::TryFrom for LengthPatternString { type Error = crate::model::length_pattern_string::ConstraintViolation; /// Constructs a `LengthPatternString` from an [`std::string::String`], /// failing when the provided value does not satisfy the modeled constraints. fn try_from(value: std::string::String) -> Result { Self::check_length(&value)?; let value = Self::check_pattern(value)?; Ok(Self(value)) }\n} Observe how a failure to adhere to the @length trait will short-circuit the evaluation of the constructor, when the value could technically also not adhere with the @pattern trait. Similarly, constrained structures fail upon encountering the first member that violates a constraint. Additionally, in framework request deserialization code : collections whose members are constrained fail upon encountering the first member that violates the constraint, maps whose keys and/or values are constrained fail upon encountering the first violation; and structures whose members are constrained fail upon encountering the first member that violates the constraint, In summary, any shape that is transitively constrained yields types whose constructors (both the internal one and the user-facing one) currently short-circuit upon encountering the first violation.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"427","title":"Problem"},"428":{"body":"The deserializing architecture lends itself to be easily refactored so that we can collect constraint violations before returning them. Indeed, note that deserializers enforce constraint traits in a two-step phase: first, the entirety of the unconstrained value is deserialized, then constraint traits are enforced by feeding the entire value to the TryFrom constructor. Let's consider a ConstraintViolations type (note the plural) that represents a collection of constraint violations that can occur within user application code . Roughly: pub ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} The main reason for wrapping a vector in ConstraintViolations as opposed to directly returning the vector is forwards-compatibility: we may want to expand ConstraintViolations with conveniences. If the constrained type can only ever yield a single violation, we will dispense with ConstraintViolations and keep directly returning the crate::model::shape_name::ConstraintViolation type. We will analogously introduce a ConstraintViolationExceptions type that represents a collection of constraint violations that can occur within the framework's request deserialization code . This type will be pub(crate) and will be the one the framework will map to Smithy's ValidationException that eventually gets serialized into the response. Collecting constraint violations may constitute a DOS attack vector This is a problem that already exists as of writing, but that collecting constraint violations highlights, so it is a good opportunity, from a pedagogical perspective, to explain it here. Consider the following model: @length(max: 3)\nlist ListOfPatternStrings { member: PatternString\n} @pattern(\"expensive regex to evaluate\")\nstring PatternString Our implementation currently enforces constraints from the leaf to the root : when enforcing the @length constraint, the TryFrom constructor the server framework uses gets a Vec and first checks the members adhere to the @pattern trait, and only after is the @length trait checked. This means that if a client sends a request with n >>> 3 list members, the expensive check runs n times, when a constant-time check inspecting the length of the input vector would have sufficed to reject the request. Additionally, we may want to avoid serializing n ValidationExceptionFields due to performance concerns. A possibility to circumvent this is making the @length validator special, having it bound the other validators via effectively permuting the order of the checks and thus short-circuiting. In general, it's unclear what constraint traits should cause short-circuiting. A probably reasonable rule of thumb is to include traits that can be attached directly to aggregate shapes: as of writing, that would be @uniqueItems on list shapes and @length on list shapes. Another possiblity is to do nothing and value complete validation exception response messages over trying to mitigate this with special handling. One could argue that these kind of DOS attack vectors should be taken care of with a separate solution e.g. a layer that bounds a request body's size to a reasonable default (see how Axum added this ). We will provide a similar request body limiting mechanism regardless. This RFC advocates for implementing the first option, arguing that it's fair to say that the framework should return an error that is as informative as possible, but it doesn't necessarily have to be complete . However, we will also write a layer, applied by default to all server SDKs, that bounds a request body's size to a reasonable (yet high) default. Relying on users to manually apply the layer is dangerous, since such a configuration is trivially exploitable . Users can always manually apply the layer again to their resulting service if they want to further restrict a request's body size.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"428","title":"Solution proposal"},"429":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » \"Tightness\" of constraint violations","id":"429","title":"\"Tightness\" of constraint violations"},"43":{"body":"The core codegen generates HTTP requests that do not contain an authority, scheme or post. These properties must be set later based on configuration. Existing AWS services have a number of requirements that increase the complexity: Endpoints must support manual configuration by end users: let config = dynamodb::Config::builder() .endpoint(StaticEndpoint::for_uri(\"http://localhost:8000\")) When a user specifies a custom endpoint URI, typically they will want to avoid having this URI mutated by other endpoint discovery machinery. Endpoints must support being customized on a per-operation basis by the endpoint trait. This will prefix the base endpoint, potentially driven by fields of the operation. Docs Endpoints must support being customized by endpoint discovery . A request, customized by a predefined set of fields from the input operation is dispatched to a specific URI. That operation returns the endpoint that should be used. Endpoints must be cached by a cache key containing: (access_key_id, [all input fields], operation) Endpoints retrieved in this way specify a TTL. Endpoints must be able to customize the signing (and other phases of the operation). For example, requests sent to a global region will have a region set by the endpoint provider.","breadcrumbs":"Smithy » Endpoint Resolution » Requirements","id":"43","title":"Requirements"},"430":{"body":"ConstraintViolationExceptions is not \"tight\" in that there's nothing in the type system that indicates to the user, when writing the custom validation error mapping function, that the iterator will not return a sequence of ConstraintViolationExceptions that is actually impossible to occur in practice. Recall that ConstraintViolationExceptions are enums that model both direct constraint violations as well as transitive ones. For example, given the model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString The corresponding ConstraintViolationException Rust type for the LengthMap shape is: pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolationException, ), }\n} ConstraintViolationExceptions is just a container over this type: pub ConstraintViolationExceptions(pub(crate) Vec); impl IntoIterator for ConstraintViolationExceptions { ... } There might be multiple map values that fail to adhere to the constraints in LengthString, which would make the iterator yield multiple length_map::ConstraintViolationException::Values; however, at most one length_map::ConstraintViolationException::Length can be yielded in practice . This might be obvious to the service owner when inspecting the model and the Rust docs, but it's not expressed in the type system. The above tightness problem has been formulated in terms of ConstraintViolationExceptions, because the fact that ConstraintViolationExceptions contain transitive constraint violations highlights the tightness problem. Note, however, that the tightness problem also afflicts ConstraintViolations . Indeed, consider the following model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield: pub struct ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } pub mod length_pattern_string { pub enum ConstraintViolation { Length(usize), Pattern(String) }\n} impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} Observe how the iterator of an instance of ConstraintViolations, may, a priori, yield e.g. the length_pattern_string::ConstraintViolation::Length variant twice, when it's clear that the iterator should contain at most one of each of length_pattern_string::ConstraintViolation's variants.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"430","title":"Problem"},"431":{"body":"We propose a tighter API design. We substitute enums for structs whose members are all Optional, representing all the constraint violations that can occur. For list shapes and map shapes: we implement IntoIterator on an additional struct Members representing only the violations that can occur on the collection's members. we add a non Option-al field to the struct representing the constraint violations of type Members. Let's walk through an example. Take the last model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield, as per the first substitution: pub mod length_pattern_string { pub struct ConstraintViolations { pub length: Option, pub pattern: Option, } pub mod constraint_violation { pub struct Length(usize); pub struct Pattern(String); }\n} impl std::convert::TryFrom for LengthPatternString { type Error = length_pattern_string::ConstraintViolations; // The error type returned by this constructor, `ConstraintViolations`, // will always have _at least_ one member set. fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} We now expand the model to highlight the second step of the algorithm: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} This gives us: pub mod length_map { pub struct ConstraintViolations { pub length: Option, // Would be `Option` in the case of an aggregate shape that is _not_ a // list shape or a map shape. pub member_violations: constraint_violation::Members, } pub mod constraint_violation { // Note that this could now live outside the `length_map` module and be // reused across all `@length`-constrained shapes, if we expanded it with // another `usize` indicating the _modeled_ value in the `@length` trait; by // keeping it inside `length_map` we can hardcode that value in the // implementation of e.g. error messages. pub struct Length(usize); pub struct Members { pub(crate) Vec } pub struct Member { // If the map's key shape were constrained, we'd have a `key` // field here too. value: Option } pub struct Value( std::string::String, crate::model::length_string::ConstraintViolation, ); impl IntoIterator for Members { ... } }\n} The above examples have featured the tight API design with ConstraintViolations. Of course, we will apply the same design in the case of ConstraintViolationExceptions. For the sake of completeness, let's expand our model yet again with a structure shape: structure A { @required member: String, @required length_map: LengthMap,\n} And this time let's feature both the resulting ConstraintViolationExceptions and ConstraintViolations types: pub mod a { pub struct ConstraintViolationExceptions { // All fields must be `Option`, despite the members being `@required`, // since no violations for their values might have occurred. pub missing_member_exception: Option, pub missing_length_map_exception: Option, pub length_map_exceptions: Option, } pub mod constraint_violation_exception { pub struct MissingMember; pub struct MissingLengthMap; } pub struct ConstraintViolations { pub missing_member: Option, pub missing_length_map: Option, } pub mod constraint_violation { pub struct MissingMember; pub struct MissingLengthMap; }\n} As can be intuited, the only differences are that: ConstraintViolationExceptions hold transitive violations while ConstraintViolations only need to expose direct violations (as explained in the Impossible constraint violations section), ConstraintViolationExceptions have members suffixed with _exception, as is the module name. Note that while the constraint violation (exception) type names are plural, the module names are always singular. We also make a conscious decision of, in this case of structure shapes, making the types of all members Options, for simplicity. Another choice would have been to make length_map_exceptions not Option-al, and, in the case where no violations in LengthMap values occurred, set length_map::ConstraintViolations::length to None and length_map::ConstraintViolations::member_violations eventually reach an empty iterator. However, it's best that we use the expressiveness of Options at the earliest (\"highest\" in the shape hierarchy) opportunity: if a member is Some, it means it (eventually) reaches data.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Final solution proposal","id":"431","title":"Final solution proposal"},"432":{"body":"Unfortunately, while this RFC could be implemented iteratively (i.e. solve each of the problems in turn), it would introduce too much churn and throwaway work: solving the tightness problem requires a more or less complete overhaul of the constraint violations code generator. It's best that all three problems be solved in the same changeset. Generate ConstraintViolations and ConstraintViolationExceptions types so as to not reify impossible constraint violations , add the ability to collect constraint violations , and solve the \"tightness\" problem of constraint violations . Special-case generated request deserialization code for operations using @length and @uniqueItems constrained shapes whose closures reach other constrained shapes so that the validators for these two traits short-circuit upon encountering a number of inner constraint violations above a certain threshold. Write and expose a layer, applied by default to all generated server SDKs, that bounds a request body's size to a reasonable (yet high) default, to prevent trivial DoS attacks .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Checklist","id":"432","title":"Checklist"},"433":{"body":"Status: Implemented in #2129 Applies to: AWS SDK clients At time of writing, customers can retrieve a request ID in one of four ways in the Rust SDK: For error cases where the response parsed successfully, the request ID can be retrieved via accessor method on operation error. This also works for unmodeled errors so long as the response parsing succeeds. For error cases where a response was received but parsing fails, the response headers can be retrieved from the raw response on the error, but customers have to manually extract the request ID from those headers (there's no convenient accessor method). For all error cases where the request ID header was sent in the response, customers can call SdkError::into_service_error to transform the SdkError into an operation error, which has a request_id accessor on it. For success cases, the customer can't retrieve the request ID at all if they use the fluent client. Instead, they must manually make the operation and call the underlying Smithy client so that they have access to SdkSuccess, which provides the raw response where the request ID can be manually extracted from headers. Only one of these mechanisms is convenient and ergonomic. The rest need considerable improvements. Additionally, the request ID should be attached to tracing events where possible so that enabling debug logging reveals the request IDs without any code changes being necessary. This RFC proposes changes to make the request ID easier to access.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » RFC: Improving access to request IDs in SDK clients","id":"433","title":"RFC: Improving access to request IDs in SDK clients"},"434":{"body":"Request ID: A unique identifier assigned to and associated with a request to AWS that is sent back in the response headers. This identifier is useful to customers when requesting support. Operation Error: Operation errors are code generated for each operation in a Smithy model. They are an enum of every possible modeled error that that operation can respond with, as well as an Unhandled variant for any unmodeled or unrecognized errors. Modeled Errors: Any error that is represented in a Smithy model with the @error trait. Unmodeled Errors: Errors that a service responds with that do not appear in the Smithy model. SDK Clients: Clients generated for the AWS SDK, including \"adhoc\" or \"one-off\" clients. Smithy Clients: Any clients not generated for the AWS SDK, excluding \"adhoc\" or \"one-off\" clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Terminology","id":"434","title":"Terminology"},"435":{"body":"Before proposing any changes, the topic of purity needs to be covered. Request IDs are not currently a Smithy concept. However, at time of writing, the request ID concept is leaked into the non-SDK rust runtime crates and generated code via the generic error struct and the request_id functions on generated operation errors (e.g., GetObjectError example in S3 ). This RFC attempts to remove these leaks from Smithy clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » SDK/Smithy Purity","id":"435","title":"SDK/Smithy Purity"},"436":{"body":"First, we'll explore making it easier to retrieve a request ID from errors, and then look at making it possible to retrieve them from successful responses. To see the customer experience of these changes, see the Example Interactions section below.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Proposed Changes","id":"436","title":"Proposed Changes"},"437":{"body":"One could argue that customers being able to convert a SdkError into an operation error that has a request ID on it is sufficient. However, there's no way to write a function that takes an error from any operation and logs a request ID, so it's still not ideal. The aws-http crate needs to have a RequestId trait on it to facilitate generic request ID retrieval: pub trait RequestId { /// Returns the request ID if it's available. fn request_id(&self) -> Option<&str>;\n} This trait will be implemented for SdkError in aws-http where it is declared, complete with logic to pull the request ID header out of the raw HTTP responses (it will always return None for event stream Message responses; an additional trait may need to be added to aws-smithy-http to facilitate access to the headers). This logic will try different request ID header names in order of probability since AWS services have a couple of header name variations. x-amzn-requestid is the most common, with x-amzn-request-id being the second most common. aws-http will also implement RequestId for aws_smithy_types::error::Error, and the request_id method will be removed from aws_smithy_types::error::Error. Places that construct Error will place the request ID into its extras field, where the RequestId trait implementation can retrieve it. A codegen decorator will be added to sdk-codegen to implement RequestId for operation errors, and the existing request_id accessors will be removed from CombinedErrorGenerator in codegen-core. With these changes, customers can directly access request IDs from SdkError and operations errors by importing the RequestId trait. Additionally, the Smithy/SDK purity is improved since both places where request IDs are leaked to Smithy clients will be resolved.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Make request ID retrieval on errors consistent","id":"437","title":"Make request ID retrieval on errors consistent"},"438":{"body":"To make it possible to retrieve request IDs when using the fluent client, the new RequestId trait can be implemented for outputs. Some services (e.g., Transcribe Streaming) model the request ID header in their outputs, while other services (e.g., Directory Service) model a request ID field on errors. In some cases, services take RequestId as a modeled input (e.g., IoT Event Data). It follows that it is possible, but unlikely, that a service could have a field named RequestId that is not the same concept in the future. Thus, name collisions are going to be a concern for putting a request ID accessor on output. However, if it is implemented as a trait, then this concern is partially resolved. In the vast majority of cases, importing RequestId will provide the accessor without any confusion. In cases where it is already modeled and is the same concept, customers will likely just use it and not even realize they didn't import the trait. The only concern is future cases where it is modeled as a separate concept, and as long as customers don't import RequestId for something else in the same file, that confusion can be avoided. In order to implement RequestId for outputs, either the original response needs to be stored on the output, or the request ID needs to be extracted earlier and stored on the output. The latter will lead to a small amount of header lookup code duplication. In either case, the StructureGenerator needs to be customized in sdk-codegen (Appendix B outlines an alternative approach to this and why it was dismissed). This will be done by adding customization hooks to StructureGenerator similar to the ones for ServiceConfigGenerator so that a sdk-codegen decorator can conditionally add fields and functions to any generated structs. A hook will also be needed to additional trait impl blocks. Once the hooks are in place, a decorator will be added to store either the original response or the request ID on outputs, and then the RequestId trait will be implemented for them. The ParseResponse trait implementation will be customized to populate this new field. Note: To avoid name collisions of the request ID or response on the output struct, these fields can be prefixed with an underscore. It shouldn't be possible for SDK fields to code generate with this prefix given the model validation rules in place.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for outputs","id":"438","title":"Implement RequestId for outputs"},"439":{"body":"In the case that a customer wants to ditch the fluent client, it should still be easy to retrieve a request ID. To do this, aws-http will provide RequestId implementations for Operation and operation::Response. These implementations will likely make the other RequestId implementations easier to implement as well.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Operation and operation::Response","id":"439","title":"Implement RequestId for Operation and operation::Response"},"44":{"body":"Configuration objects for services must contain an Endpoint. This endpoint may be set by a user or it will default to the endpointPrefix from the service definition. In the case of endpoint discovery, this is the endpoint that we will start with. During operation construction (see Operation Construction ) an EndpointPrefix may be set on the property bag. The eventual endpoint middleware will search for this in the property bag and (depending on the URI mutability) utilize this prefix when setting the endpoint. In the case of endpoint discovery, we envision a different pattern: // EndpointClient manages the endpoint cache\nlet (tx, rx) = dynamodb::EndpointClient::new();\nlet client = aws_hyper::Client::new();\n// `endpoint_req` is an operation that can be dispatched to retrieve endpoints\n// During operation construction, the endpoint resolver is configured to be `rx` instead static endpoint\n// resolver provided by the service.\nlet (endpoint_req, req) = GetRecord::builder().endpoint_disco(rx).build_with_endpoint();\n// depending on the duration of endpoint expiration, this may be spawned into a separate task to continuously\n// refresh endpoints.\nif tx.needs(endpoint_req) { let new_endpoint = client. call(endpoint_req) .await; tx.send(new_endpoint)\n}\nlet rsp = client.call(req).await?; We believe that this design results in an SDK that both offers customers more control & reduces the likelihood of bugs from nested operation dispatch. Endpoint resolution is currently extremely rare in AWS services so this design may remain a prototype while we solidify other behaviors.","breadcrumbs":"Smithy » Endpoint Resolution » Design","id":"44","title":"Design"},"440":{"body":"The Result returned by the SDK should directly implement RequestId when both its Ok and Err variants implement RequestId. This will make it possible for a customer to feed the return value from send() directly to a request ID logger.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Result","id":"440","title":"Implement RequestId for Result"},"441":{"body":"","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Example Interactions","id":"441","title":"Example Interactions"},"442":{"body":"// A re-export of the RequestId trait\nuse aws_sdk_service::primitives::RequestId; fn my_request_id_logging_fn(request_id: &dyn RequestId) { println!(\"request ID: {:?}\", request_id.request_id());\n} let result = client.some_operation().send().await?;\nmy_request_id_logging_fn(&result);","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Generic Handling Case","id":"442","title":"Generic Handling Case"},"443":{"body":"use aws_sdk_service::primitives::RequestId; let output = client.some_operation().send().await?;\nprintln!(\"request ID: {:?}\", output.request_id());","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Success Case","id":"443","title":"Success Case"},"444":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => { println!(\"request ID: {:?}\", output.request_id()); }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with SdkError","id":"444","title":"Error Case with SdkError"},"445":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => match err.into_service_err() { err @ SomeOperationError::SomeError(_) => { println!(\"request ID: {:?}\", err.request_id()); } _ => { /* don't care */ } }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with operation error","id":"445","title":"Error Case with operation error"},"446":{"body":"Create the RequestId trait in aws-http Implement for errors Implement RequestId for SdkError in aws-http Remove request_id from aws_smithy_types::error::Error, and store request IDs in its extras instead Implement RequestId for aws_smithy_types::error::Error in aws-http Remove generation of request_id accessors from CombinedErrorGenerator in codegen-core Implement for outputs Add customization hooks to StructureGenerator Add customization hook to ParseResponse Add customization hook to HttpBoundProtocolGenerator Customize output structure code gen in sdk-codegen to add either a request ID or a response field Customize ParseResponse in sdk-codegen to populate the outputs Implement RequestId for Operation and operation::Response Implement RequestId for Result where O and E both implement RequestId Re-export RequestId in generated crates Add integration tests for each request ID access point","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Changes Checklist","id":"446","title":"Changes Checklist"},"447":{"body":"Alternatively, for successful responses, a second send method (that is difficult to name)w be added to the fluent client that has a return value that includes both the output and the request ID (or entire response). This solution was dismissed due to difficulty naming, and the risk of name collision.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix A: Alternate solution for access on successful responses","id":"447","title":"Appendix A: Alternate solution for access on successful responses"},"448":{"body":"The request ID could be stored on outputs by doing a model transform in sdk-codegen to add a RequestId member field. However, this causes problems when an output already has a RequestId field, and requires the addition of a synthetic trait to skip binding the field in the generated serializers/deserializers.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix B: Adding RequestId as a string to outputs via model transform","id":"448","title":"Appendix B: Adding RequestId as a string to outputs via model transform"},"449":{"body":"status: implemented applies-to: The smithy client This RFC proposes a new process for constructing client requests and handling service responses. This new process is intended to: Improve the user experience by Simplifying several aspects of sending a request Adding more extension points to the request/response lifecycle Improve the maintainer experience by Making our SDK more similar in structure to other AWS SDKs Simplifying many aspects of the request/response lifecycle Making room for future changes Additionally, functionality that the SDKs currently provide like retries, logging, and auth with be incorporated into this new process in such a way as to make it more configurable and understandable. This RFC references but is not the source of truth on: Interceptors: To be described in depth in a future RFC. Runtime Plugins: To be described in depth in a future RFC.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Smithy Orchestrator","id":"449","title":"Smithy Orchestrator"},"45":{"body":"AWS SDKs require that clients can evolve in a backwards compatible way as new fields and operations are added. The types generated by smithy-rs are specifically designed to meet these requirements. Specifically, the following transformations must not break compilation when upgrading to a new version: New operation added New member added to structure New union variant added New error added (todo) New enum variant added (todo) However, the following changes are not backwards compatible: Error removed from operation. In general, the best tool in Rust to solve these issues in the #[non_exhaustive] attribute which will be explored in detail below.","breadcrumbs":"Smithy » Backwards Compatibility » Backwards Compatibility","id":"45","title":"Backwards Compatibility"},"450":{"body":"When a smithy client communicates with a smithy service, messages are handled by an \"orchestrator.\" The orchestrator runs in two main phases: Constructing configuration. This process is user-configurable with \"runtime plugins.\" Configuration is stored in a typemap. Transforming a client request into a server response. This process is user-configurable with \"interceptors.\" Interceptors are functions that are run by \"hooks\" in the request/response lifecycle.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » TLDR;","id":"450","title":"TLDR;"},"451":{"body":"SDK Client : A high-level abstraction allowing users to make requests to remote services. Remote Service : A remote API that a user wants to use. Communication with a remote service usually happens over HTTP. The remote service is usually, but not necessarily, an AWS service. Operation : A high-level abstraction representing an interaction between an *SDK Client and a remote service . Input Message : A modeled request passed into an SDK client . For example, S3’s ListObjectsRequest. Transport Request Message : A message that can be transmitted to a remote service . For example, an HTTP request. Transport Response Message : A message that can be received from a remote service . For example, an HTTP response. Output Message : A modeled response or exception returned to an SDK client caller. For example, S3’s ListObjectsResponse or NoSuchBucketException. The request/response lifecycle : The process by which an SDK client makes requests and receives responses from a remote service . This process is enacted and managed by the orchestrator . Orchestrator : The code within an SDK client that handles the process of making requests and receiving responses from remote services . The orchestrator is configurable by modifying the runtime plugins it's built from. The orchestrator is responsible for calling interceptors at the appropriate times in the request/response lifecycle . Interceptor / Hook : A generic extension point within the orchestrator . Supports \"anything that someone should be able to do\", NOT \"anything anyone might want to do\". These hooks are: Either read-only or read/write . Able to read and modify the Input , Transport Request , Transport Response , or Output messages. Runtime Plugin : Runtime plugins are similar to interceptors, but they act on configuration instead of requests and response. Both users and services may define runtime plugins. Smithy also defines several default runtime plugins used by most clients. See the F.A.Q. for a list of plugins with descriptions. ConfigBag : A typemap that's equivalent to http::Extensions . Used to store configuration for the orchestrator.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Terminology","id":"451","title":"Terminology"},"452":{"body":"For many users, the changes described by this RFC will be invisible. Making a request with an orchestrator-based SDK client looks very similar to the way requests were made pre-RFC: let sdk_config = aws_config::load_from_env().await;\nlet client = aws_sdk_s3::Client::new(&sdk_config);\nlet res = client.get_object() .bucket(\"a-bucket\") .key(\"a-file.txt\") .send() .await?; match res { Ok(res) => println!(\"success: {:?}\"), Err(err) => eprintln!(\"failure: {:?}\")\n}; Users may further configure clients and operations with runtime plugins , and they can modify requests and responses with interceptors . We'll examine each of these concepts in the following sections.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The user experience if this RFC is implemented","id":"452","title":"The user experience if this RFC is implemented"},"453":{"body":"The exact implementation of runtime plugins is left for another RFC. That other RFC will be linked here once it's written. To get an idea of what they may look like, see the \"Layered configuration, stored in type maps\" section of this RFC. Runtime plugins construct and modify client configuration. Plugin initialization is the first step of sending a request, and plugins set in later steps can override the actions of earlier plugins. Plugin ordering is deterministic and non-customizable. While AWS services define a default set of plugins, users may define their own plugins, and set them by calling the appropriate methods on a service's config, client, or operation. Plugins are specifically meant for constructing service and operation configuration. If a user wants to define behavior that should occur at specific points in the request/response lifecycle , then they should instead consider defining an interceptor .","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Service clients and operations are configured with runtime plugins","id":"453","title":"Service clients and operations are configured with runtime plugins"},"454":{"body":"Interceptors are similar to middlewares, in that they are functions that can read and modify request and response state. However, they are more restrictive than middlewares in that they can't modify the \"control flow\" of the request/response lifecycle. This is intentional. Interceptors can be registered on a client or operation, and the orchestrator is responsible for calling interceptors at the appropriate time. Users MUST NOT perform blocking IO within an interceptor. Interceptors are sync, and are not intended to perform large amounts of work. This makes them easier to reason about and use. Depending on when they are called, interceptors may read and modify input messages , transport request messages , transport response messages , and output messages . Additionally, all interceptors may write to a context object that is shared between all interceptors. Currently supported hooks Read Before Execution (Read-Only) : Before anything happens. This is the first thing the SDK calls during operation execution. Modify Before Serialization (Read/Write) : Before the input message given by the customer is marshalled into a transport request message. Allows modifying the input message. Read Before Serialization (Read-Only) : The last thing the SDK calls before marshaling the input message into a transport message. Read After Serialization (Read-Only) : The first thing the SDK calls after marshaling the input message into a transport message. (Retry Loop) Modify Before Retry Loop (Read/Write) : The last thing the SDK calls before entering the retry look. Allows modifying the transport message. Read Before Attempt (Read-Only) : The first thing the SDK calls “inside” of the retry loop. Modify Before Signing (Read/Write) : Before the transport request message is signed. Allows modifying the transport message. Read Before Signing (Read-Only) : The last thing the SDK calls before signing the transport request message. **Read After Signing (Read-Only)****: The first thing the SDK calls after signing the transport request message. Modify Before Transmit (Read/Write) : Before the transport request message is sent to the service. Allows modifying the transport message. Read Before Transmit (Read-Only) : The last thing the SDK calls before sending the transport request message. Read After Transmit (Read-Only) : The last thing the SDK calls after receiving the transport response message. Modify Before Deserialization (Read/Write) : Before the transport response message is unmarshaled. Allows modifying the transport response message. Read Before Deserialization (Read-Only) : The last thing the SDK calls before unmarshalling the transport response message into an output message. Read After Deserialization (Read-Only) : The last thing the SDK calls after unmarshaling the transport response message into an output message. Modify Before Attempt Completion (Read/Write) : Before the retry loop ends. Allows modifying the unmarshaled response (output message or error). Read After Attempt (Read-Only) : The last thing the SDK calls “inside” of the retry loop. Modify Before Execution Completion (Read/Write) : Before the execution ends. Allows modifying the unmarshaled response (output message or error). Read After Execution (Read-Only) : After everything has happened. This is the last thing the SDK calls during operation execution.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Requests and responses are modified by interceptors","id":"454","title":"Requests and responses are modified by interceptors"},"455":{"body":"As mentioned above, interceptors may read/write a context object that is shared between all interceptors: pub struct InterceptorContext { // a.k.a. the input message modeled_request: ModReq, // a.k.a. the transport request message tx_request: Option, // a.k.a. the output message modeled_response: Option, // a.k.a. the transport response message tx_response: Option, // A type-keyed map properties: SharedPropertyBag,\n} The optional request and response types in the interceptor context can only be accessed by interceptors that are run after specific points in the request/response lifecycle . Rather than go into depth in this RFC, I leave that to a future \"Interceptors RFC.\"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Interceptor context","id":"455","title":"Interceptor context"},"456":{"body":"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » How to implement this RFC","id":"456","title":"How to implement this RFC"},"457":{"body":"Imagine we have some sort of request signer. This signer doesn't refer to any orchestrator types. All it needs is a HeaderMap along with two strings, and will return a signature in string form. struct Signer; impl Signer { fn sign(headers: &http::HeaderMap, signing_name: &str, signing_region: &str) -> String { todo!() }\n} Now imagine things from the orchestrator's point of view. It requires something that implements an AuthOrchestrator which will be responsible for resolving the correct auth scheme, identity, and signer for an operation, as well as signing the request pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} // And it calls that `AuthOrchestrator` like so:\nfn invoke() { // code omitted for brevity // Get the request to be signed let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); // Fetch the auth orchestrator from the bag let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; // Auth the request auth_orchestrator.auth_request(tx_req_mut, cfg)?; // code omitted for brevity\n} The specific implementation of the AuthOrchestrator is what brings these two things together: struct Sigv4AuthOrchestrator; impl AuthOrchestrator for Sigv4AuthOrchestrator { fn auth_request(&self, req: &mut http::Request, cfg: &ConfigBag) -> Result<(), BoxError> { let signer = Signer; let signing_name = cfg.get::().ok_or(Error::MissingSigningName)?; let signing_region = cfg.get::().ok_or(Error::MissingSigningRegion)?; let headers = req.headers_mut(); let signature = signer.sign(headers, signing_name, signing_region); match cfg.get::() { Some(SignatureLocation::Query) => req.query.set(\"sig\", signature), Some(SignatureLocation::Header) => req.headers_mut().insert(\"sig\", signature), None => return Err(Error::MissingSignatureLocation), }; Ok(()) }\n} This intermediate code should be free from as much logic as possible. Whenever possible, we must maintain this encapsulation. Doing so will make the Orchestrator more flexible, maintainable, and understandable.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Integrating with the orchestrator","id":"457","title":"Integrating with the orchestrator"},"458":{"body":"Type map : A data structure where stored values are keyed by their type. Hence, only one value can be stored for a given type. See typemap , type-map , http::Extensions , and actix_http::Extensions for examples. let conf: ConfigBag = aws_config::from_env() // Configuration can be common to all smithy clients .with(RetryConfig::builder().disable_retries().build()) // Or, protocol-specific .with(HttpClient::builder().build()) // Or, AWS-specific .with(Region::from(\"us-east-1\")) // Or, service-specific .with(S3Config::builder().force_path_style(false).build()) .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() // Configuration can be set on operations as well as clients .with(HttpConfig::builder().conn(some_other_conn).build()) .send() .await; Setting configuration that will not be used wastes memory and can make debugging more difficult. Therefore, configuration defaults are only set when they're relevant. For example, if a smithy service doesn't support HTTP, then no HTTP client will be set. What is \"layered\" configuration? Configuration has precedence. Configuration set on an operation will override configuration set on a client, and configuration set on a client will override default configuration. However, configuration with a higher precedence can also augment configuration with a lower precedence. For example: let conf: ConfigBag = aws_config::from_env() .with( SomeConfig::builder() .option_a(1) .option_b(2) .option_c(3) ) .build() .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() .with( SomeConfig::builder() .option_a(0) .option_b(Value::Inherit) .option_c(Value::Unset) ) .build() .send() .await; In the above example, when the option_a, option_b, option_c, values of SomeConfig are accessed, they'll return: option_a: 0 option_b: 2 option_c: No value Config values are wrapped in a special enum called Value with three variants: Value::Set: A set value that will override values from lower layers. Value::Unset: An explicitly unset value that will override values from lower layers. Value::Inherit: An explicitly unset value that will inherit a value from a lower layer. Builders are defined like this: struct SomeBuilder { value: Value,\n} impl struct SomeBuilder { fn new() -> Self { // By default, config values inherit from lower-layer configs Self { value: Value::Inherit } } fn some_field(&mut self, value: impl Into>) -> &mut self { self.value = value.into(); self }\n} Because of impl Into>, users don't need to reference the Value enum unless they want to \"unset\" a value. Layer separation and precedence Codegen defines default sets of interceptors and runtime plugins at various \"levels\": AWS-wide defaults set by codegen. Service-wide defaults set by codegen. Operation-specific defaults set by codegen. Likewise, users may mount their own interceptors and runtime plugins: The AWS config level, e.g. aws_types::Config. The service config level, e.g. aws_sdk_s3::Config. The operation config level, e.g. aws_sdk_s3::Client::get_object. Configuration is resolved in a fixed manner by reading the \"lowest level\" of config available, falling back to \"higher levels\" only when no value has been set. Therefore, at least 3 separate ConfigBags are necessary, and user configuration has precedence over codegen-defined default configuration. With that in mind, resolution of configuration would look like this: Check user-set operation config. Check codegen-defined operation config. Check user-set service config. Check codegen-defined service config. Check user-set AWS config. Check codegen-defined AWS config.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Layered configuration, stored in type maps","id":"458","title":"Layered configuration, stored in type maps"},"459":{"body":"I've omitted some of the error conversion to shorten this example and make it easier to understand. The real version will be messier. /// `In`: The input message e.g. `ListObjectsRequest`\n/// `Req`: The transport request message e.g. `http::Request`\n/// `Res`: The transport response message e.g. `http::Response`\n/// `Out`: The output message. A `Result` containing either:\n/// - The 'success' output message e.g. `ListObjectsResponse`\n/// - The 'failure' output message e.g. `NoSuchBucketException`\npub async fn invoke( input: In, interceptors: &mut Interceptors>, runtime_plugins: &RuntimePlugins, cfg: &mut ConfigBag,\n) -> Result where // The input must be Clone in case of retries In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ let mut ctx: InterceptorContext> = InterceptorContext::new(input); runtime_plugins.apply_client_configuration(cfg)?; interceptors.client_read_before_execution(&ctx, cfg)?; runtime_plugins.apply_operation_configuration(cfg)?; interceptors.operation_read_before_execution(&ctx, cfg)?; interceptors.read_before_serialization(&ctx, cfg)?; interceptors.modify_before_serialization(&mut ctx, cfg)?; let request_serializer = cfg .get::>>() .ok_or(\"missing serializer\")?; let req = request_serializer.serialize_request(ctx.modeled_request_mut(), cfg)?; ctx.set_tx_request(req); interceptors.read_after_serialization(&ctx, cfg)?; interceptors.modify_before_retry_loop(&mut ctx, cfg)?; loop { make_an_attempt(&mut ctx, cfg, interceptors).await?; interceptors.read_after_attempt(&ctx, cfg)?; interceptors.modify_before_attempt_completion(&mut ctx, cfg)?; let retry_strategy = cfg .get::>>>() .ok_or(\"missing retry strategy\")?; let mod_res = ctx .modeled_response() .expect(\"it's set during 'make_an_attempt'\"); if retry_strategy.should_retry(mod_res, cfg)? { continue; } interceptors.modify_before_completion(&mut ctx, cfg)?; let trace_probe = cfg .get::>() .ok_or(\"missing trace probes\")?; trace_probe.dispatch_events(cfg); interceptors.read_after_execution(&ctx, cfg)?; break; } let (modeled_response, _) = ctx.into_responses()?; modeled_response\n} // Making an HTTP request can fail for several reasons, but we still need to\n// call lifecycle events when that happens. Therefore, we define this\n// `make_an_attempt` function to make error handling simpler.\nasync fn make_an_attempt( ctx: &mut InterceptorContext>, cfg: &mut ConfigBag, interceptors: &mut Interceptors>,\n) -> Result<(), BoxError> where In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ interceptors.read_before_attempt(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let endpoint_orchestrator = cfg .get::>>() .ok_or(\"missing endpoint orchestrator\")?; endpoint_orchestrator.resolve_and_apply_endpoint(tx_req_mut, cfg)?; interceptors.modify_before_signing(ctx, cfg)?; interceptors.read_before_signing(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; auth_orchestrator.auth_request(tx_req_mut, cfg)?; interceptors.read_after_signing(ctx, cfg)?; interceptors.modify_before_transmit(ctx, cfg)?; interceptors.read_before_transmit(ctx, cfg)?; // The connection consumes the request but we need to keep a copy of it // within the interceptor context, so we clone it here. let res = { let tx_req = ctx.tx_request_mut().expect(\"tx_request has been set\"); let connection = cfg .get::>>() .ok_or(\"missing connector\")?; connection.call(tx_req, cfg).await? }; ctx.set_tx_response(res); interceptors.read_after_transmit(ctx, cfg)?; interceptors.modify_before_deserialization(ctx, cfg)?; interceptors.read_before_deserialization(ctx, cfg)?; let tx_res = ctx.tx_response_mut().expect(\"tx_response has been set\"); let response_deserializer = cfg .get::>>>() .ok_or(\"missing response deserializer\")?; let res = response_deserializer.deserialize_response(tx_res, cfg)?; ctx.set_modeled_response(res); interceptors.read_after_deserialization(ctx, cfg)?; Ok(())\n} Traits At various points in the execution of invoke, trait objects are fetched from the ConfigBag. These are preliminary definitions of those traits: pub trait TraceProbe: Send + Sync + Debug { fn dispatch_events(&self, cfg: &ConfigBag) -> BoxFallibleFut<()>;\n} pub trait RequestSerializer: Send + Sync + Debug { fn serialize_request(&self, req: &mut In, cfg: &ConfigBag) -> Result;\n} pub trait ResponseDeserializer: Send + Sync + Debug { fn deserialize_response(&self, res: &mut TxRes, cfg: &ConfigBag) -> Result;\n} pub trait Connection: Send + Sync + Debug { fn call(&self, req: &mut TxReq, cfg: &ConfigBag) -> BoxFallibleFut;\n} pub trait RetryStrategy: Send + Sync + Debug { fn should_retry(&self, res: &Out, cfg: &ConfigBag) -> Result;\n} pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} pub trait EndpointOrchestrator: Send + Sync + Debug { fn resolve_and_apply_endpoint(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>; fn resolve_auth_schemes(&self) -> Result, BoxError>;\n}","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The aws-smithy-orchestrator crate","id":"459","title":"The aws-smithy-orchestrator crate"},"46":{"body":"Before $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject]\n} After $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject, PutObject]\n} Adding support for a new operation is backwards compatible because SDKs to not expose any sort of \"service trait\" that provides an interface over an entire service. This prevents clients from inheriting or implementing an interface that would be broken by the addition of a new operation.","breadcrumbs":"Smithy » Backwards Compatibility » New Operation Added","id":"46","title":"New Operation Added"},"460":{"body":"The orchestrator is a large and complex feature, with many moving parts. How can we ensure that multiple people can contribute in parallel? By defining the entire orchestrator and agreeing on its structure, we can then move on to working on individual runtime plugins and interceptors. What is the precedence of interceptors? The precedence of interceptors is as follows: Interceptors registered via Smithy default plugins. (AWS Services only) Interceptors registered via AWS default plugins. Interceptors registered via service-customization plugins. Interceptors registered via client-level plugins. Interceptors registered via client-level configuration. Interceptors registered via operation-level plugins. Interceptors registered via operation-level configuration. What runtime plugins will be defined in smithy-rs? RetryStrategy: Configures how requests are retried. TraceProbes: Configures locations to which SDK metrics are published. EndpointProviders: Configures which hostname an SDK will call when making a request. HTTPClients: Configures how remote services are called. IdentityProviders: Configures how customers identify themselves to remote services. HTTPAuthSchemes & AuthSchemeResolvers: Configures how customers authenticate themselves to remote services. Checksum Algorithms: Configures how an SDK calculates request and response checksums.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » F.A.Q.","id":"460","title":"F.A.Q."},"461":{"body":"Create a new aws-smithy-runtime crate. Add orchestrator implementation Define the orchestrator/runtime plugin interface traits TraceProbe RequestSerializer ResponseDeserializer Connection RetryStrategy AuthOrchestrator EndpointOrchestrator Create a new aws-smithy-runtime-api crate. Add ConfigBag module Add retries module Add rate_limiting sub-module Add interceptors module Interceptor trait InterceptorContext impl Add runtime_plugins module Create a new integration test that ensures the orchestrator works.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Changes checklist","id":"461","title":"Changes checklist"},"462":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a breaking change to how generated clients automatically provide default values for collections. Currently the SDK generated fields for List generate optional values: ///

    Container for elements related to a particular part. pub fn parts(&self) -> Option<&[crate::types::Part]> { self.parts.as_deref() } This is almost never what users want and leads to code noise when using collections: async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project .ids() .unwrap_or_default(); // ^^^^^^^^^^^^^^^^^^ this is pure noise\n} This RFC proposes unwrapping into default values in our accessor methods.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » RFC: Collection Defaults","id":"462","title":"RFC: Collection Defaults"},"463":{"body":"Accessor : The Rust SDK defines accessor methods on modeled structures for fields to make them more convenient for users Struct field : The accessors point to concrete fields on the struct itself.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Terminology","id":"463","title":"Terminology"},"464":{"body":"In the current version of the SDK, users must call .unwrap_or_default() frequently. Once this RFC is implemented, users will be able to use these accessors directly. In the rare case where users need to distinguish be None and [], we will direct users towards model..is_some(). async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project.ids(); // Goodbye to this line: // .unwrap_or_default();\n}","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » The user experience if this RFC is implemented","id":"464","title":"The user experience if this RFC is implemented"},"465":{"body":"In order to implement this feature, we need update the code generate accessors for lists and maps to add .unwrap_or_default(). Because we are returning slices unwrap_or_default() does not produce any additional allocations for empty collection.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » How to actually implement this RFC","id":"465","title":"How to actually implement this RFC"},"466":{"body":"This works for lists because we are returning a slice (allowing a statically owned &[] to be returned.) If we want to support HashMaps in the future this is possible by using OnceCell to create empty HashMaps for requisite types. This would allow us to return references to those empty maps.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Could this be implemented for HashMap?","id":"466","title":"Could this be implemented for HashMap?"},"467":{"body":"No, many existing APIs don't have the default trait.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Isn't this handled by the default trait?","id":"467","title":"Isn't this handled by the default trait?"},"468":{"body":"Estimated total work: 2 days Update accessor method generation to auto flatten lists Update docs for accessors to guide users to .field.is_some() if they MUST determine if the field was set.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Changes checklist","id":"468","title":"Changes checklist"},"469":{"body":"Status: Accepted Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how we plan to refactor the SDK to allow the SDK to consume a 1.0 version of hyper, http-body, and http at a later date. Currently, hyper is 0.14.x and a 1.0 release candidate series is in progress. However, there are open questions that may significantly delay the launch of these three crates. We do not want to tie the 1.0 of the Rust SDK to these crates.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » RFC: Eliminating Public http dependencies","id":"469","title":"RFC: Eliminating Public http dependencies"},"47":{"body":"","breadcrumbs":"Smithy » Backwards Compatibility » New member added to structure","id":"47","title":"New member added to structure"},"470":{"body":"http-body : A crate (and trait) defining how HTTP bodies work. Notably, the change from 0.* to 1.0 changes http-body to operate on frames instead of having separate methods. http (crate): a low level crate of http primitives (no logic, just requests and responses) ossified dependency: An ossified dependency describes a dependency that, when a new version is released, cannot be utilized without breaking changes. For example, if the mutate_request function on every operation operates on &mut http::Request where http = 0.2, that dependency is \"ossified.\" Compare this to a function that offers the ability to convert something into an http = 0.2 request—since http=1 and http=0.2 are largely equivalent, the existence of this function does not prevent us from using http = 1 in the future. In general terms, functions that operate on references are much more likely to ossify —There is no practical way for someone to mutate an http = 0.2 request if you have an http = 1 request other than a time-consuming clone, and reconversion process.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Terminology","id":"470","title":"Terminology"},"471":{"body":"Performance : At some point in the Future, hyper = 1, http = 1 and http-body = 1 will be released. It takes ~1-2 microseconds to rebuild an HTTP request. If we assume that hyper = 1 will only operate on http = 1 requests, then if we can't use http = 1 requests internally, our only way of supporting hyper = 1 will be to convert the HTTP request at dispatch time. Besides pinning us to a potentially unsupported version of the HTTP crate, this will prevent us from directly dispatching requests in an efficient manner. With a total overhead of 20µs for the SDK, 1µs is not insignificant. Furthermore, it grows as the number of request headers grow. A benchmark should be run for a realistic HTTP request e.g. one that we send to S3. Hyper Upgrade : Hyper 1 is significantly more flexible than Hyper 0.14.x, especially WRT to connection management & pooling. If we don't make these changes, the upgrade to Hyper 1.x could be significantly more challenging. Security Fixes : If we're still on http = 0.* and a vulnerability is identified, we may end up needing to manually contribute the patch. The http crate is not trivial and contains parsing logic and optimized code (including a non-trivial amount of unsafe). See this GitHub issue . Notable is that one issue may be unsound and result in changing the public API. API Friendliness If we ship with an API that public exposes customers to http = 0.*, we have the API forever. We have to consider that we aren't shipping the Rust SDK for this month or even this year but probably the Rust SDK for the next 5-10 years. Future CRT Usage If we make this change, we enable a future where we can use the CRT HTTP request type natively without needing a last minute conversion to the CRT HTTP Request type. struct HttpRequest { inner: Inner\n} enum Inner { Httpv0(http_0::Request), Httpv1(http_1::Request), Crt(aws_crt_http::Request)\n}","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Why is this important?","id":"471","title":"Why is this important?"},"472":{"body":"Customers are impacted in 3 main locations: HTTP types in Interceptors HTTP types in customize(...) HTTP types in Connectors In all three of these cases, users would interact with our http wrapper types instead. In the current version of the SDK, we expose public dependencies on the http crate in several key places: The sigv4 crate. The sigv4 crate currently operates directly on many types from the http crate. This is unnecessary and actually makes the crate more difficult to use. Although http may be used internally, http will be removed from the public API of this crate. Interceptor Context: interceptors can mutate the HTTP request through an unshielded interface. This requires creating a wrapper layer around http::Request and updating already written interceptors. aws-config: http::Response and uri A long tail of exposed requests and responses in the runtime crates. Many of these crates will be removed post-orchestrator so this can be temporarily delayed.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » The user experience if this RFC is implemented","id":"472","title":"The user experience if this RFC is implemented"},"473":{"body":"","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » How to actually implement this RFC","id":"473","title":"How to actually implement this RFC"},"474":{"body":"One key mechanism that we SHOULD use for allowing our APIs to evolve in the future is usage of ~ version bounds for the runtime crates after releasing 1.0.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Enabling API evolution","id":"474","title":"Enabling API evolution"},"475":{"body":"In order to enable HTTP evolution, we will create a set of wrapper structures around http::Request and http::Response. These will use http = 0 internally. Since the HTTP crate itself is quite small, including private dependencies on both versions of the crate is a workable solution. In general, we will aim for an API that is close to drop-in compatible to the HTTP crate while ensuring that a different crate could be used as the backing storage. // since it's our type, we can default `SdkBody`\npub struct Request { // this uses the http = 0.2 request. In the future, we can make an internal enum to allow storing an http = 1 http_0: http::Request\n} Conversion to/from http::Request One key property here is that although converting to/from an http::Request can be expensive, this is not ossification of the API. This is because the API can support converting from/to both http = 0 and http = 1 in the future—because it offers mutation of the request via a unified interface, the request would only need to be converted once for dispatch if there was a mismatch (instead of repeatedly). At some point in the future, the http = 0 representation could be deprecated and removed or feature gated. Challenges Creating an HTTP API which is forwards compatible, idiomatic and \"truthful\" without relying on existing types from Hyper—e.g. when adding a header, we need to account for the possibility that a header is invalid. Allow for future forwards-compatible evolution in the API—A lot of thought went into the http crate API w.r.t method parameters, types, and generics. Although we can aim for a simpler solution in some cases (e.g. accepting &str instead of HeaderName), we need to be careful that we do so while allowing API evolution.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Http Request Wrapper","id":"475","title":"Http Request Wrapper"},"476":{"body":"The SigV4 crate signs a number of HTTP types directly. We should change it to accept strings, and when appropriate, iterators of strings for headers.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the SigV4 HTTP dependency","id":"476","title":"Removing the SigV4 HTTP dependency"},"477":{"body":"Generated clients currently include a public HTTP dependency in customize. This should be changed to accept our HTTP wrapper type instead or be restricted to a subset of operations (e.g. add_header) while forcing users to add an interceptor if they need full control.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the HTTP dependency from generated clients","id":"477","title":"Removing the HTTP dependency from generated clients"},"478":{"body":"Create the http::Request wrapper. Carefully audit for compatibility without breaking changes. 5 Days. Refactor currently written interceptors to use the wrapper: 2 days. Refactor the SigV4 crate to remove the HTTP dependency from the public interface: 2 days. Add / validate support for SdkBody http-body = 1.0rc.2 either in a PR or behind a feature gate. Test this to ensure it works with Hyper. Some previous work here exists: 1 week Remove http::Response and Uri from the public exposed types in aws-config: 1-4 days. Long tail of other usages: 1 week Implement ~ versions for SDK Crate => runtime crate dependencies: 1 week","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Changes checklist","id":"478","title":"Changes checklist"},"479":{"body":"Status: RFC Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the API of our wrapper types around http::Request and http::Response. For more information about why we are wrapping these types, see RFC 0036: The HTTP Dependency .","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » RFC: The HTTP Wrapper Type","id":"479","title":"RFC: The HTTP Wrapper Type"},"48":{"body":"Structures are marked #[non_exhaustive] Structures must be instantiated using builders Structures must not derive Default in the event that required fields are added in the future. In general, adding a new public member to a structure in Rust is not backwards compatible. However, by applying the #[non_exhaustive] to the structures generated by the Rust SDK, the Rust compiler will prevent users from using our structs in ways that prevent new fields from being added in the future. Note : in this context, the optionality of the fields is irrelevant. Specifically, #[non_exhaustive] prohibits the following patterns: Direct structure instantiation: # fn foo() {\nlet ip_addr = IpAddress { addr: \"192.168.1.1\" };\n# } If a new member is_local: boolean was added to the IpAddress structure, this code would not compile. To enable users to still construct our structures while maintaining backwards compatibility, all structures expose a builder, accessible at SomeStruct::Builder: # fn foo() {\nlet ip_addr = IpAddress::builder().addr(\"192.168.1.1\").build();\n# } Structure destructuring: # fn foo() {\nlet IpAddress { addr } = some_ip_addr();\n# } This will also fail to compile if a new member is added, however, by adding #[non_exhaustive], the .. multifield wildcard MUST be added to support new fields being added in the future: # fn foo() {\nlet IpAddress { addr, .. } = some_ip_addr();\n# }","breadcrumbs":"Smithy » Backwards Compatibility » Summary","id":"48","title":"Summary"},"480":{"body":"Extensions / \"Request Extensions\": The http crate Request/Response types include a typed property bag to store additional metadata along with the request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Terminology","id":"480","title":"Terminology"},"481":{"body":"In the current version of the SDK, external customers and internal code interacts directly with the http crate. Once this RFC is implemented, interactions at the public API level will occur with our own http types instead. Our types aim to be nearly drop-in-compatible for types in the http crate, however: We will not expose existing HTTP types in public APIs in ways that are ossified. When possible, we aim to simplify the APIs to make them easier to use. We will add SDK specific helper functionality when appropriate, e.g. first-level support for applying an endpoint to a request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » The user experience if this RFC is implemented","id":"481","title":"The user experience if this RFC is implemented"},"482":{"body":"We will need to add two types, HttpRequest and HttpResponse. To string or not to String Our header library restricts header names and values to Strings (UTF-8). Although the http library is very precise in its representation—it allows for HeaderValues that are both a super and subset of String—a superset because headers support arbitrary binary data but a subset because headers cannot contain control characters like \\n. Although technically allowed, headers containing arbitrary binary data are not widely supported. Generally, Smithy protocols will use base-64 encoding when storing binary data in headers. Finally, it's nicer for users if they can stay in \"string land\". Because of this, HttpRequest and Response expose header names and values as strings. Internally, the current design uses HeaderName and HeaderValue, however, there is a gate on construction that enforces that values are valid UTF-8. This is a one way door because .as_str() would panic in the future if we allow non-string values into headers. Where should these types live? These types will be used by all orchestrator functionality, so they will be housed in aws-smithy-runtime-api What's in and what's out? At the onset, these types focus on supporting the most ossified usages: &mut modification of HTTP types. They do not support construction of HTTP types, other than impl From and From. We will also make it possible to use http::HeaderName / http::HeaderValue in a zero-cost way. The AsHeaderComponent trait All header insertion methods accept impl AsHeaderComponent. This allows us to provide a nice user experience while taking advantage of zero-cost usage of 'static str. We will seal this trait to prevent external usage. We will have separate implementation for: &'static str String http02x::HeaderName Additional Functionality Our wrapper type will add the following additional functionality: Support for self.try_clone() Support for &mut self.apply_endpoint(...) Handling failure There is no stdlib type that cleanly defines what may be placed into headers—String is too broad (even if we restrict to ASCII). This RFC proposes moving fallibility to the APIs: impl HeadersMut<'_> { pub fn try_insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result, BoxError> { // ... }\n} This allows us to offer user-friendly types while still avoiding runtime panics. We also offer insert and append which panic on invalid values. Request Extensions There is ongoing work which MAY restrict HTTP extensions to clone types. We will preempt that by: Preventing Extensions from being present when initially constructing our HTTP request wrapper. Forbidding non-clone extensions from being inserted into the wrapped request. This also enables supporting request extensions for different downstream providers by allowing cloning into different extension types. Proposed Implementation Proposed Implementation of `request` /* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ //! Http Request Types use aws_smithy_types::body::SdkBody;\nuse http as http0;\nuse http::header::{InvalidHeaderName, InvalidHeaderValue};\nuse http::uri::InvalidUri;\nuse http0::header::Iter;\nuse http0::uri::PathAndQuery;\nuse http0::{Extensions, HeaderMap, Method};\nuse std::borrow::Cow;\nuse std::error::Error;\nuse std::fmt::{Debug, Display, Formatter};\nuse std::str::{FromStr, Utf8Error}; #[derive(Debug)]\n/// An HTTP Request Type\npub struct Request { body: B, uri: Uri, method: Method, extensions: Extensions, headers: Headers,\n} /// A Request URI\n#[derive(Debug, Clone)]\npub struct Uri { as_string: String, parsed: http0::Uri,\n} impl Uri { /// Sets `endpoint` as the endpoint for a URL. /// /// An `endpoint` MUST contain a scheme and authority. /// An `endpoint` MAY contain a port and path. /// /// An `endpoint` MUST NOT contain a query pub fn set_endpoint(&mut self, endpoint: &str) -> Result<(), HttpError> { let endpoint: http0::Uri = endpoint.parse().map_err(HttpError::invalid_uri)?; let endpoint = endpoint.into_parts(); let authority = endpoint .authority .ok_or_else(|| HttpError::new(\"endpoint must contain authority\"))?; let scheme = endpoint .scheme .ok_or_else(|| HttpError::new(\"endpoint must have scheme\"))?; let new_uri = http0::Uri::builder() .authority(authority) .scheme(scheme) .path_and_query(merge_paths(endpoint.path_and_query, &self.parsed).as_ref()) .build() .map_err(HttpError::new)?; self.as_string = new_uri.to_string(); self.parsed = new_uri; Ok(()) }\n} fn merge_paths(endpoint_path: Option, uri: &http0::Uri) -> Cow<'_, str> { let uri_path_and_query = uri.path_and_query().map(|pq| pq.as_str()).unwrap_or(\"\"); let endpoint_path = match endpoint_path { None => return Cow::Borrowed(uri_path_and_query), Some(path) => path, }; if let Some(query) = endpoint_path.query() { tracing::warn!(query = %query, \"query specified in endpoint will be ignored during endpoint resolution\"); } let endpoint_path = endpoint_path.path(); if endpoint_path.is_empty() { Cow::Borrowed(uri_path_and_query) } else { let ep_no_slash = endpoint_path.strip_suffix('/').unwrap_or(endpoint_path); let uri_path_no_slash = uri_path_and_query .strip_prefix('/') .unwrap_or(uri_path_and_query); Cow::Owned(format!(\"{}/{}\", ep_no_slash, uri_path_no_slash)) }\n} impl TryFrom for Uri { type Error = HttpError; fn try_from(value: String) -> Result { let parsed = value.parse().map_err(HttpError::invalid_uri)?; Ok(Uri { as_string: value, parsed, }) }\n} impl<'a> TryFrom<&'a str> for Uri { type Error = HttpError; fn try_from(value: &'a str) -> Result { Self::try_from(value.to_string()) }\n} impl From for Uri { fn from(value: http::Uri) -> Self { Self { as_string: value.to_string(), parsed: value, } }\n} impl TryInto> for Request { type Error = HttpError; fn try_into(self) -> Result, Self::Error> { self.into_http02x() }\n} impl Request { /// Converts this request into an http 0.x request. /// /// Depending on the internal storage type, this operation may be free or it may have an internal /// cost. pub fn into_http02x(self) -> Result, HttpError> { let mut req = http::Request::builder() .uri(self.uri.parsed) .method(self.method) .body(self.body) .expect(\"known valid\"); let mut headers = HeaderMap::new(); headers.extend( self.headers .headers .into_iter() .map(|(k, v)| (k, v.into_http02x())), ); *req.headers_mut() = headers; *req.extensions_mut() = self.extensions; Ok(req) } /// Update the body of this request to be a new body. pub fn map(self, f: impl Fn(B) -> U) -> Request { Request { body: f(self.body), uri: self.uri, method: self.method, extensions: self.extensions, headers: self.headers, } } /// Returns a GET request with no URI pub fn new(body: B) -> Self { Self { body, uri: Uri::from(http0::Uri::from_static(\"/\")), method: Method::GET, extensions: Default::default(), headers: Default::default(), } } /// Returns a reference to the header map pub fn headers(&self) -> &Headers { &self.headers } /// Returns a mutable reference to the header map pub fn headers_mut(&mut self) -> &mut Headers { &mut self.headers } /// Returns the body associated with the request pub fn body(&self) -> &B { &self.body } /// Returns a mutable reference to the body pub fn body_mut(&mut self) -> &mut B { &mut self.body } /// Returns the method associated with this request pub fn method(&self) -> &str { self.method.as_str() } /// Returns the URI associated with this request pub fn uri(&self) -> &str { &self.uri.as_string } /// Returns a mutable reference the the URI of this http::Request pub fn uri_mut(&mut self) -> &mut Uri { &mut self.uri } /// Sets the URI of this request pub fn set_uri(&mut self, uri: U) -> Result<(), U::Error> where U: TryInto, { let uri = uri.try_into()?; self.uri = uri; Ok(()) } /// Adds an extension to the request extensions pub fn add_extension(&mut self, extension: T) { self.extensions.insert(extension); }\n} impl Request { /// Attempts to clone this request /// /// If the body is cloneable, this will clone the request. Otherwise `None` will be returned pub fn try_clone(&self) -> Option { let body = self.body().try_clone()?; Some(Self { body, uri: self.uri.clone(), method: self.method.clone(), extensions: Extensions::new(), headers: self.headers.clone(), }) } /// Replaces this requests body with [`SdkBody::taken()`] pub fn take_body(&mut self) -> SdkBody { std::mem::replace(self.body_mut(), SdkBody::taken()) } /// Create a GET request to `/` with an empty body pub fn empty() -> Self { Self::new(SdkBody::empty()) } /// Creates a GET request to `uri` with an empty body pub fn get(uri: impl AsRef) -> Result { let mut req = Self::new(SdkBody::empty()); req.set_uri(uri.as_ref())?; Ok(req) }\n} impl TryFrom> for Request { type Error = HttpError; fn try_from(value: http::Request) -> Result { if let Some(e) = value .headers() .values() .filter_map(|value| std::str::from_utf8(value.as_bytes()).err()) .next() { Err(HttpError::header_was_not_a_string(e)) } else { let (parts, body) = value.into_parts(); let mut string_safe_headers: HeaderMap = Default::default(); string_safe_headers.extend( parts .headers .into_iter() .map(|(k, v)| (k, HeaderValue::from_http02x(v).expect(\"validated above\"))), ); Ok(Self { body, uri: parts.uri.into(), method: parts.method.clone(), extensions: parts.extensions, headers: Headers { headers: string_safe_headers, }, }) } }\n} /// An immutable view of request headers\n#[derive(Clone, Default, Debug)]\npub struct Headers { headers: HeaderMap,\n} impl<'a> IntoIterator for &'a Headers { type Item = (&'a str, &'a str); type IntoIter = HeadersIter<'a>; fn into_iter(self) -> Self::IntoIter { HeadersIter { inner: self.headers.iter(), } }\n} /// An Iterator over headers\npub struct HeadersIter<'a> { inner: Iter<'a, HeaderValue>,\n} impl<'a> Iterator for HeadersIter<'a> { type Item = (&'a str, &'a str); fn next(&mut self) -> Option { self.inner.next().map(|(k, v)| (k.as_str(), v.as_ref())) }\n} impl Headers { /// Create an empty header map pub fn new() -> Self { Self::default() } /// Returns the value for a given key /// /// If multiple values are associated, the first value is returned /// See [HeaderMap::get] pub fn get(&self, key: impl AsRef) -> Option<&str> { self.headers.get(key.as_ref()).map(|v| v.as_ref()) } /// Returns all values for a given key pub fn get_all(&self, key: impl AsRef) -> impl Iterator { self.headers .get_all(key.as_ref()) .iter() .map(|v| v.as_ref()) } /// Returns an iterator over the headers pub fn iter(&self) -> HeadersIter<'_> { HeadersIter { inner: self.headers.iter(), } } /// Returns the total number of **values** stored in the map pub fn len(&self) -> usize { self.headers.len() } /// Returns true if there are no headers pub fn is_empty(&self) -> bool { self.len() == 0 } /// Returns true if this header is present pub fn contains_key(&self, key: &str) -> bool { self.headers.contains_key(key) } /// Insert a value into the headers structure. /// /// This will *replace* any existing value for this key. Returns the previous associated value if any. /// /// # Panics /// If the key or value are not valid ascii, this function will panic. pub fn insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Option { self.try_insert(key, value) .expect(\"HeaderName or HeaderValue was invalid\") } /// Insert a value into the headers structure. /// /// This will *replace* any existing value for this key. Returns the previous associated value if any. /// /// If the key or value are not valid ascii, an error is returned pub fn try_insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result, HttpError> { let key = header_name(key)?; let value = header_value(value.into_maybe_static()?)?; Ok(self .headers .insert(key, value) .map(|old_value| old_value.into())) } /// Appends a value to a given key /// /// If the key or value are NOT valid ascii, an error is returned pub fn try_append( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result { let key = header_name(key.into_maybe_static()?)?; let value = header_value(value.into_maybe_static()?)?; Ok(self.headers.append(key, value)) } /// Removes all headers with a given key /// /// If there are multiple entries for this key, the first entry is returned pub fn remove(&mut self, key: impl AsRef) -> Option { self.headers .remove(key.as_ref()) .map(|h| h.as_str().to_string()) } /// Appends a value to a given key /// /// # Panics /// If the key or value are NOT valid ascii, this function will panic pub fn append(&mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent) -> bool { self.try_append(key, value) .expect(\"HeaderName or HeaderValue was invalid\") }\n} use sealed::AsHeaderComponent; mod sealed { use super::*; /// Trait defining things that may be converted into a header component (name or value) pub trait AsHeaderComponent { /// If the component can be represented as a Cow<'static, str>, return it fn into_maybe_static(self) -> Result; /// Return a string reference to this header fn as_str(&self) -> Result<&str, HttpError>; /// If a component is already internally represented as a `http02x::HeaderName`, return it fn repr_as_http02x_header_name(self) -> Result where Self: Sized, { Err(self) } } impl AsHeaderComponent for &'static str { fn into_maybe_static(self) -> Result { Ok(Cow::Borrowed(self)) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self) } } impl AsHeaderComponent for String { fn into_maybe_static(self) -> Result { Ok(Cow::Owned(self)) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self) } } impl AsHeaderComponent for Cow<'static, str> { fn into_maybe_static(self) -> Result { Ok(self) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self.as_ref()) } } impl AsHeaderComponent for http0::HeaderValue { fn into_maybe_static(self) -> Result { Ok(Cow::Owned( std::str::from_utf8(self.as_bytes()) .map_err(HttpError::header_was_not_a_string)? .to_string(), )) } fn as_str(&self) -> Result<&str, HttpError> { std::str::from_utf8(self.as_bytes()).map_err(HttpError::header_was_not_a_string) } } impl AsHeaderComponent for http0::HeaderName { fn into_maybe_static(self) -> Result { Ok(self.to_string().into()) } fn as_str(&self) -> Result<&str, HttpError> { Ok(self.as_ref()) } fn repr_as_http02x_header_name(self) -> Result where Self: Sized, { Ok(self) } }\n} mod header_value { use super::http0; use std::str::Utf8Error; /// HeaderValue type /// /// **Note**: Unlike `HeaderValue` in `http`, this only supports UTF-8 header values #[derive(Debug, Clone)] pub struct HeaderValue { _private: http0::HeaderValue, } impl HeaderValue { pub(crate) fn from_http02x(value: http0::HeaderValue) -> Result { let _ = std::str::from_utf8(value.as_bytes())?; Ok(Self { _private: value }) } pub(crate) fn into_http02x(self) -> http0::HeaderValue { self._private } } impl AsRef for HeaderValue { fn as_ref(&self) -> &str { std::str::from_utf8(self._private.as_bytes()) .expect(\"unreachable—only strings may be stored\") } } impl From for String { fn from(value: HeaderValue) -> Self { value.as_ref().to_string() } }\n} use crate::box_error::BoxError;\npub use header_value::HeaderValue; impl HeaderValue { /// Returns the string representation of this header value pub fn as_str(&self) -> &str { self.as_ref() }\n} impl FromStr for HeaderValue { type Err = HttpError; fn from_str(s: &str) -> Result { HeaderValue::try_from(s.to_string()) }\n} impl TryFrom for HeaderValue { type Error = HttpError; fn try_from(value: String) -> Result { Ok(HeaderValue::from_http02x( http0::HeaderValue::try_from(value).map_err(HttpError::invalid_header_value)?, ) .expect(\"input was a string\")) }\n} type MaybeStatic = Cow<'static, str>; #[derive(Debug)]\n/// An error occurred constructing an Http Request.\n///\n/// This is normally due to configuration issues, internal SDK bugs, or other user error.\npub struct HttpError(BoxError); impl HttpError { // TODO(httpRefactor): Add better error internals fn new>>(err: E) -> Self { HttpError(err.into()) } fn invalid_header_value(err: InvalidHeaderValue) -> Self { Self(err.into()) } fn header_was_not_a_string(err: Utf8Error) -> Self { Self(err.into()) } fn invalid_header_name(err: InvalidHeaderName) -> Self { Self(err.into()) } fn invalid_uri(err: InvalidUri) -> Self { Self(err.into()) }\n} impl Display for HttpError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { write!(f, \"an error occurred creating an HTTP Request\") }\n} impl Error for HttpError { fn source(&self) -> Option<&(dyn Error + 'static)> { Some(self.0.as_ref()) }\n} fn header_name(name: impl AsHeaderComponent) -> Result { name.repr_as_http02x_header_name().or_else(|name| { name.into_maybe_static().and_then(|cow| { if cow.chars().any(|c| c.is_uppercase()) { return Err(HttpError::new(\"Header names must be all lower case\")); } match cow { Cow::Borrowed(staticc) => Ok(http0::HeaderName::from_static(staticc)), Cow::Owned(s) => { http0::HeaderName::try_from(s).map_err(HttpError::invalid_header_name) } } }) })\n} fn header_value(value: MaybeStatic) -> Result { let header = match value { Cow::Borrowed(b) => http0::HeaderValue::from_static(b), Cow::Owned(s) => { http0::HeaderValue::try_from(s).map_err(HttpError::invalid_header_value)? } }; HeaderValue::from_http02x(header).map_err(HttpError::new)\n} #[cfg(test)]\nmod test { use crate::client::orchestrator::HttpRequest; use aws_smithy_types::body::SdkBody; use http::header::{AUTHORIZATION, CONTENT_LENGTH}; use http::{HeaderValue, Uri}; #[test] fn headers_can_be_any_string() { let _: HeaderValue = \"😹\".parse().expect(\"can be any string\"); let _: HeaderValue = \"abcd\".parse().expect(\"can be any string\"); let _ = \"a\\nb\" .parse::() .expect_err(\"cannot contain control characters\"); } #[test] fn non_ascii_requests() { let request = http::Request::builder() .header(\"k\", \"😹\") .body(SdkBody::empty()) .unwrap(); let request: HttpRequest = request .try_into() .expect(\"failed to convert a non-string header\"); assert_eq!(request.headers().get(\"k\"), Some(\"😹\")) } #[test] fn request_can_be_created() { let req = http::Request::builder() .uri(\"http://foo.com\") .body(SdkBody::from(\"hello\")) .unwrap(); let mut req = super::Request::try_from(req).unwrap(); req.headers_mut().insert(\"a\", \"b\"); assert_eq!(req.headers().get(\"a\").unwrap(), \"b\"); req.headers_mut().append(\"a\", \"c\"); assert_eq!(req.headers().get(\"a\").unwrap(), \"b\"); let http0 = req.into_http02x().unwrap(); assert_eq!(http0.uri(), \"http://foo.com\"); } #[test] fn uri_mutations() { let req = http::Request::builder() .uri(\"http://foo.com\") .body(SdkBody::from(\"hello\")) .unwrap(); let mut req = super::Request::try_from(req).unwrap(); assert_eq!(req.uri(), \"http://foo.com/\"); req.set_uri(\"http://bar.com\").unwrap(); assert_eq!(req.uri(), \"http://bar.com\"); let http0 = req.into_http02x().unwrap(); assert_eq!(http0.uri(), \"http://bar.com\"); } #[test] #[should_panic] fn header_panics() { let req = http::Request::builder() .uri(\"http://foo.com\") .body(SdkBody::from(\"hello\")) .unwrap(); let mut req = super::Request::try_from(req).unwrap(); let _ = req .headers_mut() .try_insert(\"a\\nb\", \"a\\nb\") .expect_err(\"invalid header\"); let _ = req.headers_mut().insert(\"a\\nb\", \"a\\nb\"); } #[test] fn try_clone_clones_all_data() { let request = ::http::Request::builder() .uri(Uri::from_static(\"https://www.amazon.com\")) .method(\"POST\") .header(CONTENT_LENGTH, 456) .header(AUTHORIZATION, \"Token: hello\") .body(SdkBody::from(\"hello world!\")) .expect(\"valid request\"); let request: super::Request = request.try_into().unwrap(); let cloned = request.try_clone().expect(\"request is cloneable\"); assert_eq!(\"https://www.amazon.com/\", cloned.uri()); assert_eq!(\"POST\", cloned.method()); assert_eq!(2, cloned.headers().len()); assert_eq!(\"Token: hello\", cloned.headers().get(AUTHORIZATION).unwrap(),); assert_eq!(\"456\", cloned.headers().get(CONTENT_LENGTH).unwrap()); assert_eq!(\"hello world!\".as_bytes(), cloned.body().bytes().unwrap()); }\n}","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » How to actually implement this RFC","id":"482","title":"How to actually implement this RFC"},"483":{"body":"Currently, the only way to construct Request is from a compatible type (e.g. http02x::Request)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Future Work","id":"483","title":"Future Work"},"484":{"body":"Implement initial implementation and test it against the SDK as written Add test suite of HTTP wrapper External design review Update the SigV4 crate to remove http API dependency Update the SDK to use the new type (breaking change)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Changes checklist","id":"484","title":"Changes checklist"},"485":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the user experience and implementation of user-configurable retry classification. Custom retry classifiers enable users to change what responses are retried while still allowing them to rely on defaults set by SDK authors when desired.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » RFC: User-configurable retry classification","id":"485","title":"RFC: User-configurable retry classification"},"486":{"body":"Smithy Service : An HTTP service, whose API is modeled with the Smithy IDL . Smithy Client : An HTTP client generated by smithy-rs from a .smithy model file. AWS SDK : A smithy client that's specifically configured to work with an AWS service. Operation : A modeled interaction with a service, defining the proper input and expected output shapes, as well as important metadata related to request construction. \"Sending\" an operation implies sending one or more HTTP requests to a Smithy service , and then receiving an output or error in response. Orchestrator : The client code which manages the request/response pipeline. The orchestrator is responsible for: Constructing, serializing, and sending requests. Receiving, deserializing, and (optionally) retrying requests. Running interceptors (not covered in this RFC) and handling errors. Runtime Component : A part of the orchestrator responsible for a specific function. Runtime components are used by the orchestrator itself, may depend on specific configuration, and must not be changed by interceptors. Examples include the endpoint resolver, retry strategy, and request signer. Runtime Plugin : Code responsible for setting and runtime components and related configuration. Runtime plugins defined by codegen are responsible for setting default configuration and altering the behavior of Smithy clients including the AWS SDKs .","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Terminology","id":"486","title":"Terminology"},"487":{"body":"A Retry Strategy is the process by which the orchestrator determines when and how to retry failed requests. Only one retry strategy may be set at any given time. During its operation, the retry strategy relies on a series of Retry Classifiers to determine if and how a failed request should be retried. Retry classifiers each have a Retry Classifier Priority so that regardless of whether they are set during config or operation construction, they'll always run in a consistent order. Classifiers are each run in turn by the retry strategy: pub fn run_classifiers_on_ctx( classifiers: impl Iterator, ctx: &InterceptorContext,\n) -> RetryAction { // By default, don't retry let mut result = RetryAction::NoActionIndicated; for classifier in classifiers { let new_result = classifier.classify_retry(ctx); // If the result is `NoActionIndicated`, continue to the next classifier // without overriding any previously-set result. if new_result == RetryAction::NoActionIndicated { continue; } // Otherwise, set the result to the new result. tracing::trace!( \"Classifier '{}' set the result of classification to '{}'\", classifier.name(), new_result ); result = new_result; // If the result is `RetryForbidden`, stop running classifiers. if result == RetryAction::RetryForbidden { tracing::trace!(\"retry classification ending early because a `RetryAction::RetryForbidden` was emitted\",); break; } } result\n} NOTE: User-defined retry strategies are responsible for calling run_classifiers_on_ctx. Lower-priority classifiers run first, but the retry actions they return may be overridden by higher-priority classifiers. Classification stops immediately if any classifier returns RetryAction::RetryForbidden.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How the orchestrator should model retries","id":"487","title":"How the orchestrator should model retries"},"488":{"body":"In the current version of the SDK, users are unable to configure retry classification, except by defining a custom retry strategy. Once this RFC is implemented, users will be able to define and set their own classifiers.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The user experience if this RFC is implemented","id":"488","title":"The user experience if this RFC is implemented"},"489":{"body":"#[derive(Debug)]\nstruct CustomRetryClassifier; impl ClassifyRetry for CustomRetryClassifier { fn classify_retry( &self, ctx: &InterceptorContext, ) -> Option { // Check for a result let output_or_error = ctx.output_or_error(); // Check for an error let error = match output_or_error { // Typically, when the response is OK or unset // then `RetryAction::NoActionIndicated` is returned. Some(Ok(_)) | None => return RetryAction::NoActionIndicated, Some(Err(err)) => err, }; todo!(\"inspect the error to determine if a retry attempt should be made.\") } fn name(&self) -> &'static str { \"my custom retry classifier\" } fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n} Choosing a retry classifier priority Sticking with the default priority is often the best choice. Classifiers should restrict the number of cases they can handle in order to avoid having to compete with other classifiers. When two classifiers would classify a response in two different ways, the priority system gives us the ability to decide which classifier should be respected. Internally, priority is implemented with a simple numeric system. In order to give the smithy-rs team the flexibility to make future changes, this numeric system is private and inaccessible to users. Instead, users may set the priority of classifiers relative to one another with the with_lower_priority_than and with_higher_priority_than methods: impl RetryClassifierPriority { /// Create a new `RetryClassifierPriority` with lower priority than the given priority. pub fn with_lower_priority_than(other: Self) -> Self { ... } /// Create a new `RetryClassifierPriority` with higher priority than the given priority. pub fn with_higher_priority_than(other: Self) -> Self { ... }\n} For example, if it was important for our CustomRetryClassifier in the previous example to run before the default HttpStatusCodeClassifier, a user would define the CustomRetryClassifier priority like this: impl ClassifyRetry for CustomRetryClassifier { fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::run_before(RetryClassifierPriority::http_status_code_classifier()) }\n} The priorities of the three default retry classifiers (HttpStatusCodeClassifier, ModeledAsRetryableClassifier, and TransientErrorClassifier) are all public for this purpose. Users may ONLY set a retry priority relative to an existing retry priority. RetryAction and RetryReason Retry classifiers communicate to the retry strategy by emitting RetryActions: /// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug, Default)]\npub enum RetryAction { /// When a classifier can't run or has no opinion, this action is returned. /// /// For example, if a classifier requires a parsed response and response parsing failed, /// this action is returned. If all classifiers return this action, no retry should be /// attempted. #[default] NoActionIndicated, /// When a classifier runs and thinks a response should be retried, this action is returned. RetryIndicated(RetryReason), /// When a classifier runs and decides a response must not be retried, this action is returned. /// /// This action stops retry classification immediately, skipping any following classifiers. RetryForbidden,\n} When a retry is indicated by a classifier, the action will contain a RetryReason: /// The reason for a retry.\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryReason { /// When an error is received that should be retried, this reason is returned. RetryableError { /// The kind of error. kind: ErrorKind, /// A server may tell us to retry only after a specific time has elapsed. retry_after: Option, },\n} NOTE: RetryReason currently only has a single variant, but it's defined as an enum for forward compatibility purposes. RetryAction's impl defines several convenience methods: impl RetryAction { /// Create a new `RetryAction` indicating that a retry is necessary. pub fn retryable_error(kind: ErrorKind) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: None, }) } /// Create a new `RetryAction` indicating that a retry is necessary after an explicit delay. pub fn retryable_error_with_explicit_delay(kind: ErrorKind, retry_after: Duration) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: Some(retry_after), }) } /// Create a new `RetryAction` indicating that a retry is necessary because of a transient error. pub fn transient_error() -> Self { Self::retryable_error(ErrorKind::TransientError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a throttling error. pub fn throttling_error() -> Self { Self::retryable_error(ErrorKind::ThrottlingError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a server error. pub fn server_error() -> Self { Self::retryable_error(ErrorKind::ServerError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a client error. pub fn client_error() -> Self { Self::retryable_error(ErrorKind::ClientError) }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Defining a custom classifier","id":"489","title":"Defining a custom classifier"},"49":{"body":"Adding a required member to a structure is not considered backwards compatible. When a required member is added to a structure: The builder will change to become fallible, meaning that instead of returning T it will return Result. Previous builder invocations that did not set the new field will still stop compiling if this was the first required field. Previous builder invocations will now return a BuildError because the required field is unset.","breadcrumbs":"Smithy » Backwards Compatibility » Validation & Required Members","id":"49","title":"Validation & Required Members"},"490":{"body":"The interface for setting classifiers is very similar to the interface of settings interceptors: // All service configs support these setters. Operations support a nearly identical API.\nimpl ServiceConfigBuilder { /// Add type implementing ClassifyRetry that will be used by the RetryStrategy /// to determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn retry_classifier(mut self, retry_classifier: impl ClassifyRetry + 'static) -> Self { self.push_retry_classifier(SharedRetryClassifier::new(retry_classifier)); self } /// Add a SharedRetryClassifier that will be used by the RetryStrategy to /// determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn push_retry_classifier(&mut self, retry_classifier: SharedRetryClassifier) -> &mut Self { self.runtime_components.push_retry_classifier(retry_classifier); self } /// Set SharedRetryClassifiers for the builder, replacing any that were /// previously set. pub fn set_retry_classifiers(&mut self, retry_classifiers: impl IntoIterator) -> &mut Self { self.runtime_components.set_retry_classifiers(retry_classifiers.into_iter()); self }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Setting classifiers","id":"490","title":"Setting classifiers"},"491":{"body":"Smithy clients have three classifiers enabled by default: ModeledAsRetryableClassifier: Checks for errors that are marked as retryable in the smithy model. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. TransientErrorClassifier: Checks for timeout, IO, and connector errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. HttpStatusCodeClassifier: Checks the HTTP response's status code. By default, this classifies 500, 502, 503, and 504 errors as RetryAction::RetryIndicated. The list of retryable status codes may be customized when creating this classifier with the HttpStatusCodeClassifier::new_from_codes method. AWS clients enable the three smithy classifiers as well as one more by default: AwsErrorCodeClassifier: Checks for errors with AWS error codes marking them as either transient or throttling errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. This classifier will also check the HTTP response for an x-amz-retry-after header. If one is set, then the returned RetryAction will include the explicit delay. The priority order of these classifiers is as follows: (highest priority) TransientErrorClassifier ModeledAsRetryableClassifier AwsErrorCodeClassifier (lowest priority) HttpStatusCodeClassifier The priority order of the default classifiers is not configurable. However, it's possible to wrap a default classifier in a newtype and set your desired priority when implementing the ClassifyRetry trait, delegating the classify_retry and name fields to the inner classifier. Disable default classifiers Disabling the default classifiers is possible, but not easy. They are set at different points during config and operation construction, and must be unset at each of those places. A far simpler solution is to implement your own classifier that has the highest priority. Still, if completely removing the other classifiers is desired, use the set_retry_classifiers method on the config to replace the config-level defaults and then set a config override on the operation that does the same.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Default classifiers","id":"491","title":"Default classifiers"},"492":{"body":"In order to implement this feature, we must: Update the current retry classification system so that individual classifiers as well as collections of classifiers can be easily composed together. Create two new configuration mechanisms for users that allow them to customize retry classification at the service level and at the operation level. Update retry classifiers so that they may 'short-circuit' the chain, ending retry classification immediately.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How to actually implement this RFC","id":"492","title":"How to actually implement this RFC"},"493":{"body":"/// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryAction { /// When an error is received that should be retried, this action is returned. Retry(ErrorKind), /// When the server tells us to retry after a specific time has elapsed, this action is returned. RetryAfter(Duration), /// When a response should not be retried, this action is returned. NoRetry,\n} /// Classifies what kind of retry is needed for a given [`InterceptorContext`].\npub trait ClassifyRetry: Send + Sync + fmt::Debug { /// Run this classifier on the [`InterceptorContext`] to determine if the previous request /// should be retried. If the classifier makes a decision, `Some(RetryAction)` is returned. /// Classifiers may also return `None`, signifying that they have no opinion of whether or /// not a request should be retried. fn classify_retry( &self, ctx: &InterceptorContext, preceding_action: Option, ) -> Option; /// The name of this retry classifier. /// /// Used for debugging purposes. fn name(&self) -> &'static str; /// The priority of this retry classifier. Classifiers with a higher priority will run before /// classifiers with a lower priority. Classifiers with equal priorities make no guarantees /// about which will run first. fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The RetryClassifier trait","id":"493","title":"The RetryClassifier trait"},"494":{"body":"Because each classifier has a defined priority, and because RetryClassifierPriority implements PartialOrd and Ord, the standard library's sort method may be used to correctly arrange classifiers. The RuntimeComponents struct is responsible for storing classifiers, so it's also responsible for sorting them whenever a new classifier is added. Thus, when a retry strategy fetches the list of classifiers, they'll already be in the expected order.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Resolving the correct order of multiple retry classifiers","id":"494","title":"Resolving the correct order of multiple retry classifiers"},"495":{"body":"Q: Should retry classifiers be fallible? A: I think no, because of the added complexity. If we make them fallible then we'll have to decide what happens when classifiers fail. Do we skip them or does classification end? The retry strategy is responsible for calling the classifiers, so it be responsible for deciding how to handle a classifier error. I don't foresee a use case where an error returned by a classifier would be interpreted either by classifiers following the failed classifier or the retry strategy.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Questions and answers","id":"495","title":"Questions and answers"},"496":{"body":"Add retry classifiers field and setters to RuntimeComponents and RuntimeComponentsBuilder. Add unit tests ensuring that classifier priority is respected by RuntimeComponents::retry_classifiers, especially when multiple layers of config are in play. Add codegen customization allowing users to set retry classifiers on service configs. Add codegen for setting default classifiers at the service level. Add integration tests for setting classifiers at the service level. Add codegen for settings default classifiers that require knowledge of operation error types at the operation level. Add integration tests for setting classifiers at the operation level. Implement retry classifier priority. Add unit tests for retry classifier priority. Update existing tests that would fail for lack of a retry classifier.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Changes checklist","id":"496","title":"Changes checklist"},"497":{"body":"This is a collection of written resources for smithy-rs and SDK contributors. Writing and debugging a low-level feature that relies on HTTP","breadcrumbs":"Contributing » Contributing","id":"497","title":"Contributing"},"498":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Writing and debugging a low-level feature that relies on HTTP","id":"498","title":"Writing and debugging a low-level feature that relies on HTTP"},"499":{"body":"This article came about as a result of all the difficulties I encountered while developing the request checksums feature laid out in the internal-only Flexible Checksums spec (the feature is also highlighted in this public blog post .) I spent much more time developing the feature than I had anticipated. In this article, I'll talk about: How the SDK sends requests with a body How the SDK sends requests with a streaming body The various issues I encountered and how I addressed them Key takeaways for contributors developing similar low-level features","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Background","id":"499","title":"Background"},"5":{"body":"Unless you know better ones! These are our tenets today, but we'd love your thoughts. Do you wish we had different priorities? Let us know by opening and issue or starting a discussion. Batteries included, but replaceable. The AWS SDK for Rust should provide a best-in-class experience for many use cases, but , customers will use the SDK in unique and unexpected ways. Meet customers where they are; strive to be compatible with their tools. Provide mechanisms to allow customers make different choices. Make common problems easy to solve. The AWS SDK for Rust should make common problems solvable. Guide customers to patterns that set them up for long-term success. Design for the Future. The AWS SDK for Rust should evolve with AWS without breaking existing customers. APIs will evolve in unpredictable directions, new protocols will gain adoption, and new services will be created that we never could have imagined. Don’t simplify or unify code today that prevents evolution tomorrow.","breadcrumbs":"Tenets » Rust SDK Design Tenets","id":"5","title":"Rust SDK Design Tenets"},"50":{"body":"Similar to structures, #[non_exhaustive] also applies to unions. In order to allow new union variants to be added in the future, all unions (enum in Rust) generated by the Rust SDK must be marked with #[non_exhaustive]. Note : because new fields cannot be added to union variants, the union variants themselves do not need to be #[non_exhaustive]. To support new variants from services, each union contains an Unknown variant. By marking Unknown as non_exhaustive, we prevent customers from instantiating it directly. #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { B(aws_smithy_types::Blob), Bool(bool), Bs(std::vec::Vec), L(std::vec::Vec), M(std::collections::HashMap), N(std::string::String), Ns(std::vec::Vec), Null(bool), S(std::string::String), Ss(std::vec::Vec), // By marking `Unknown` as non_exhaustive, we prevent client code from instantiating it directly. #[non_exhaustive] Unknown,\n}","breadcrumbs":"Smithy » Backwards Compatibility » New union variant added","id":"50","title":"New union variant added"},"500":{"body":"All interactions between the SDK and a service are modeled as \"operations\" . Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler Users create operations piecemeal with a fluent builder. The options set in the builder are then used to create the inner HTTP request, becoming headers or triggering specific request-building functionality (In this case, calculating a checksum and attaching it either as a header or a trailer.) Here's an example from the QLDB SDK of creating a body from inputs and inserting it into the request to be sent: let body = aws_smithy_http::body::SdkBody::from( crate::operation_ser::serialize_operation_crate_operation_send_command(&self)?,\n); if let Some(content_length) = body.content_length() { request = aws_smithy_http::header::set_request_header_if_absent( request, http::header::CONTENT_LENGTH, content_length, );\n}\nlet request = request.body(body).expect(\"should be valid request\"); Most all request body creation in the SDKs looks like that. Note how it automatically sets the Content-Length header whenever the size of the body is known; It'll be relevant later. The body is read into memory and can be inspected before the request is sent. This allows for things like calculating a checksum and then inserting it into the request as a header.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a body","id":"500","title":"How the SDK sends requests with a body"},"501":{"body":"Often, sending a request with a streaming body looks much the same. However, it's not possible to read a streaming body until you've sent the request. Any metadata that needs to be calculated by inspecting the body must be sent as trailers. Additionally, some metadata, like Content-Length, can't be sent as a trailer at all. MDN maintains a helpful list of metadata that can only be sent as a header. // When trailers are set, we must send an AWS-specific header that lists them named `x-amz-trailer`.\n// For example, when sending a SHA256 checksum as a trailer,\n// we have to send an `x-amz-trailer` header telling the service to watch out for it:\nrequest .headers_mut() .insert( http::header::HeaderName::from_static(\"x-amz-trailer\"), http::header::HeaderValue::from_static(\"x-amz-checksum-sha256\"), );","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a streaming body","id":"501","title":"How the SDK sends requests with a streaming body"},"502":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » The issues I encountered while implementing checksums for streaming request bodies","id":"502","title":"The issues I encountered while implementing checksums for streaming request bodies"},"503":{"body":"When sending a request body with trailers, we must use an AWS-specific content encoding called aws-chunked. To encode a request body for aws-chunked requires us to know the length of each chunk we're going to send before we send it. We have to prefix each chunk with its size in bytes, represented by one or more hexadecimal digits. To close the body, we send a final chunk with a zero. For example, the body \"Hello world\" would look like this when encoded: B\\r\\n\nHello world\\r\\n\n0\\r\\n When sending a request body encoded in this way, we need to set two length headers: Content-Length is the length of the entire request body, including the chunk size prefix and zero terminator. In the example above, this would be 19. x-amz-decoded-content-length is the length of the decoded request body. In the example above, this would be 11. NOTE: Content-Encoding is distinct from Transfer-Encoding . It's possible to construct a request with both Content-Encoding: chunked AND Transfer-Encoding: chunked, although we don't ever need to do that for SDK requests.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Content-Encoding: aws-chunked","id":"503","title":"Content-Encoding: aws-chunked"},"504":{"body":"S3 does not require you to send a Content-Length header if you set the Transfer-Encoding: chunked header. That's very helpful because it's not always possible to know the total length of a stream of bytes if that's what you're constructing your request body from. However, when sending trailers, this part of the spec can be misleading. When sending a streaming request, we must send metadata like checksums as trailers To send a request body with trailers, we must set the Content-Encoding: aws-chunked header When using aws-chunked encoding for a request body, we must set the x-amz-decoded-content-length header with the pre-encoding length of the request body. This means that we can't actually avoid having to know and specify the length of the request body when sending a request to S3. This turns out to not be much of a problem for common use of the SDKs because most streaming request bodies are constructed from files. In these cases we can ask the operating system for the file size before sending the request. So long as that size doesn't change during sending of the request, all is well. In any other case, the request will fail.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » S3 requires a Content-Length unless you also set Transfer-Encoding: chunked","id":"504","title":"S3 requires a Content-Length unless you also set Transfer-Encoding: chunked"},"505":{"body":"Headers don't count towards the size of a request body, but trailers do. That means we need to take trailers (which aren't sent until after the body) into account when setting the Content-Length header (which are sent before the body.) This means that without setting Transfer-Encoding: chunked, the SDKs only support trailers of known length. In the case of checksums, we're lucky because they're always going to be the same size. We must also take into account the fact that checksum values are base64 encoded before being set (this lengthens them.)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Adding trailers to a request changes the size of that request","id":"505","title":"Adding trailers to a request changes the size of that request"},"506":{"body":"This was a big source of confusion for me, and I only figured out what was happening with the help of @seanmonstar . When using aws-chunked encoding, the trailers have to be appended to the body as part of poll_data instead of relying on the poll_trailers method. The working http_body::Body implementation of an aws-chunked encoded body looked like this: impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); if *this.already_wrote_trailers { return Poll::Ready(None); } if *this.already_wrote_chunk_terminator { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.already_wrote_trailers = true; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().sum(); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(err) => Poll::Ready(Some(err)), }; }; match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let bytes = if *this.already_wrote_chunk_size_prefix { data.copy_to_bytes(data.len()) } else { // A chunk must be prefixed by chunk size in hexadecimal *this.already_wrote_chunk_size_prefix = true; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); prefix_with_total_chunk_size(data, total_chunk_size) }; Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => { *this.already_wrote_chunk_terminator = true; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // When using aws-chunked content encoding, trailers have to be appended to the body Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.already_wrote_trailers } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked","id":"506","title":"hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked"},"507":{"body":"In my early implementation of http_body::Body for an aws-chunked encoded body, the body wasn't being completely read out. The problem turned out to be that I was delegating to the is_end_stream trait method of the inner body. Because the innermost body had no knowledge of the trailers I needed to send, it was reporting that the stream had ended. The fix was to instead rely on the outermost body's knowledge of its own state in order to determine if all data had been read.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » \"The stream is closing early, and I don't know why\"","id":"507","title":"\"The stream is closing early, and I don't know why\""},"508":{"body":"Reaching out to others that had specific knowledge of a problem: Talking to a developer that had tackled this feature for another SDK was a big help. Special thanks is due to @jasdel and the Go v2 SDK team. Their implementation of an aws-chunked encoded body was the basis for my own implementation. Avoiding codegen : The process of updating codegen code and then running codegen for each new change you make is slow compared to running codegen once at the beginning of development and then just manually editing the generated SDK as necessary. I still needed to run ./gradlew :aws:sdk:relocateAwsRuntime :aws:sdk:relocateRuntime whenever I made changes to a runtime crate but that was quick because it's just copying the files. Keep as much code out of codegen as possible. It's much easier to modify/debug Rust than it is to write a working codegen module that does the same thing. Whenever possible, write the codegen modules later, once the design has settled. Using the Display impl for errors: The Display impl for an error can ofter contain helpful info that might not be visible when printing with the Debug impl. Case in point was an error I was getting because of the is_end_stream issue. When Debug printed, the error looked like this: DispatchFailure(ConnectorError { err: hyper::Error(User(Body), hyper::Error(BodyWriteAborted)), kind: User }) That wasn't too helpful for me on its own. I looked into the hyper source code and found that the Display impl contained a helpful message, so I matched into the error and printed the hyper::Error with the Display impl: user body write aborted: early end, expected 2 more bytes' This helped me understand that I wasn't encoding things correctly and was missing a CRLF. Echo Server : I first used netcat and then later a small echo server written in Rust to see the raw HTTP request being sent out by the SDK as I was working on it. The Rust SDK supports setting endpoints for request. This is often used to send requests to something like LocalStack , but I used it to send request to localhost instead: #[tokio::test]\nasync fn test_checksum_on_streaming_request_against_s3() { let sdk_config = aws_config::from_env() .endpoint_resolver(Endpoint::immutable(\"http://localhost:8080\".parse().expect(\"valid URI\"))) .load().await; let s3_client = aws_sdk_s3::Client::new(&sdk_config); let input_text = b\"Hello world\"; let _res = s3_client .put_object() .bucket(\"some-real-bucket\") .key(\"test.txt\") .body(aws_sdk_s3::types::ByteStream::from_static(input_text)) .checksum_algorithm(ChecksumAlgorithm::Sha256) .send() .await .unwrap();\n} The echo server was based off of an axum example and looked like this: use axum::{ body::{Body, Bytes}, http::{request::Parts, Request, StatusCode}, middleware::{self, Next}, response::IntoResponse, routing::put, Router,\n};\nuse std::net::SocketAddr;\nuse tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; #[tokio::main]\nasync fn main() { tracing_subscriber::registry().with(tracing_subscriber::EnvFilter::new( std::env::var(\"RUST_LOG\").unwrap_or_else(|_| \"trace\".into()), )) .with(tracing_subscriber::fmt::layer()) .init(); let app = Router::new() .route(\"/\", put(|| async move { \"200 OK\" })) .layer(middleware::from_fn(print_request_response)); let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); tracing::debug!(\"listening on {}\", addr); axum::Server::bind(&addr) .serve(app.into_make_service()) .await .unwrap();\n} async fn print_request_response( req: Request, next: Next,\n) -> Result { let (parts, body) = req.into_parts(); print_parts(&parts).await; let bytes = buffer_and_print(\"request\", body).await?; let req = Request::from_parts(parts, Body::from(bytes)); let res = next.run(req).await; Ok(res)\n} async fn print_parts(parts: &Parts) { tracing::debug!(\"{:#?}\", parts);\n} async fn buffer_and_print(direction: &str, body: B) -> Result\nwhere B: axum::body::HttpBody, B::Error: std::fmt::Display,\n{ let bytes = match hyper::body::to_bytes(body).await { Ok(bytes) => bytes, Err(err) => { return Err(( StatusCode::BAD_REQUEST, format!(\"failed to read {} body: {}\", direction, err), )); } }; if let Ok(body) = std::str::from_utf8(&bytes) { tracing::debug!(\"{} body = {:?}\", direction, body); } Ok(bytes)\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » What helped me to understand the problems and their solutions","id":"508","title":"What helped me to understand the problems and their solutions"},"509":{"body":"](writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.md)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP »","id":"509","title":"Contributing"},"51":{"body":"smithy-rs provides the ability to generate a client whose operations defined by a smithy model. The documents referenced here explain aspects of the client in greater detail. What is the 'orchestrator' and why does it exist? Identity and Auth","breadcrumbs":"Client » Smithy Client","id":"51","title":"Smithy Client"},"52":{"body":"At a very high level, an orchestrator is a process for transforming requests into responses. Please enjoy this fancy chart: flowchart TB A(Orchestrate)-->|Input|B(Request serialization) B-->|Transmit Request|C(Connection) C-->|Transmit Response|D(Response deserialization) D-->|Success|E(\"Ok(Output)\") D-->|Unretryable Failure|F(\"Err(SdkError)\") D-->|Retryable Failure|C This process is also referred to as the \"request/response lifecycle.\" In this example, the types of \"transmit request\" and \"transmit response\" are protocol-dependent. Typical operations use HTTP , but we plan to support other protocols like MQTT in the future. In addition to the above steps, the orchestrator must also handle: Endpoint resolution: figuring out which URL to send a request to. Authentication, identity resolution, and request signing: Figuring out who is sending the request, their credentials, and how we should insert the credentials into a request. Interceptors : Running lifecycle hooks at each point in the request/response lifecycle. Runtime Plugins: Resolving configuration from config builders. Retries: Categorizing responses from services and deciding whether to retry and how long to wait before doing so. Trace Probes: A sink for events that occur during the request/response lifecycle.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What is the orchestrator?","id":"52","title":"What is the orchestrator?"},"53":{"body":"While the structure of an orchestrator is fixed, the actions it takes during its lifecycle are highly configurable. Users have two ways to configure this process: Runtime Plugins : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? In two batches, at the very beginning of orchestrate. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can set interceptors. Are they user-definable? No. At present, only smithy-rs maintainers may define these. Interceptors : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? At each step in the request-response lifecycle. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can log information. Depending on when they're run, they can modify the input, transmit request, transmit response, and the output/error. Are they user-definable? Yes. Configuration for a request is constructed by runtime plugins just after calling orchestrate. Configuration is stored in a ConfigBag: a hash map that's keyed on type's TypeId (an opaque object, managed by the Rust compiler, which references some type.)","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is an orchestrator configured?","id":"53","title":"How is an orchestrator configured?"},"54":{"body":"The orchestrator's work is divided into four phases: NOTE: If an interceptor fails, then the other interceptors for that lifecycle event are still run. All resulting errors are collected and emitted together. Building the ConfigBag and mounting interceptors . This phase is fallible. An interceptor context is created. This will hold request and response objects, making them available to interceptors. All runtime plugins set at the client-level are run. These plugins can set config and mount interceptors. Any \"read before execution\" interceptors that have been set get run. All runtime plugins set at the operation-level are run. These plugins can also set config and mount interceptors. Any new \"read before execution\" interceptors that have been set get run. Request Construction This phase is fallible. The \"read before serialization\" and \"modify before serialization\" interceptors are called. The input is serialized into a transmit request. The \"read after serialization\" and \"modify before retry loop\" interceptors are called. Before making an attempt, the retry handler is called to check if an attempt should be made. The retry handler makes this decision for an initial attempt as well as for the retry attempts. If an initial attempt should be made, then the orchestrator enters the Dispatch phase. Otherwise, a throttling error is returned. Request Dispatch This phase is fallible. This phase's tasks are performed in a loop. Retryable request failures will be retried, and unretryable failures will end the loop. The \"read before attempt\" interceptors are run. An endpoint is resolved according to an endpoint resolver. The resolved endpoint is then applied to the transmit request. The \"read before signing\" and \"modify before signing\" interceptors are run. An identity and a signer are resolved according to an authentication resolver. The signer then signs the transmit request with the identity. The \"read after signing\" , \"read before transmit\" , and \"modify before transmit\" interceptors are run. The transmit request is passed into the connection, and a transmit response is received. The \"read after transmit\" , \"read before deserialization\" , and \"modify before deserialization\" interceptors are run. The transmit response is deserialized. The \"read after attempt\" and \"modify before attempt completion\" interceptors are run. The retry strategy is called to check if a retry is necessary. If a retry is required, the Dispatch phase restarts. Otherwise, the orchestrator enters the Response Handling phase. Response Handling This phase is fallible. The \"read after deserialization\" and \"modify before completion\" interceptors are run. Events are dispatched to any trace probes that the user has set. The \"read after execution\" interceptors are run. At the end of all this, the response is returned. If an error occurred at any point, then the response will contain one or more errors, depending on what failed. Otherwise, the output will be returned.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What does the orchestrator do?","id":"54","title":"What does the orchestrator do?"},"55":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is the orchestrator implemented in Rust?","id":"55","title":"How is the orchestrator implemented in Rust?"},"56":{"body":"In designing the orchestrator, we sought to solve the problems we had with the original smithy client. The client made heavy use of generics, allowing for increased performance, but at the cost of increased maintenance burden and increased compile times . The Rust compiler, usually very helpful, isn't well-equipped to explain trait errors when bounds are this complex, and so the resulting client was difficult to extend. Trait aliases would have helped, but they're not (at the time of writing) available. The type signatures for the old client and its call method: impl Client\nwhere C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ pub async fn call(&self, op: Operation) -> Result> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { self.call_raw(op).await.map(|res| res.parsed) } pub async fn call_raw( &self, op: Operation, ) -> Result, SdkError> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, // This bound is not _technically_ inferred by all the previous bounds, but in practice it // is because _we_ know that there is only implementation of Service for Parsed // (ParsedResponseService), and it will apply as long as the bounds on C, M, and R hold, // and will produce (as expected) Response = SdkSuccess, Error = SdkError. But Rust // doesn't know that -- there _could_ theoretically be other implementations of Service for // Parsed that don't return those same types. So, we must give the bound. bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { // The request/response lifecycle }\n} The type signature for the new orchestrate method: pub async fn orchestrate( input: Input, runtime_plugins: &RuntimePlugins, // Currently, SdkError is HTTP-only. We currently use it for backwards-compatibility purposes. // The `HttpResponse` generic will likely be removed in the future.\n) -> Result> { // The request/response lifecycle\n} Wait a second, I hear you ask. \"I see an Input and Output there, but you're not declaring any generic type arguments. What gives?\" I'm glad you asked. Generally, when you need traits, but you aren't willing to use generic type arguments, then you must Box . Polymorphism is achieved through dynamic dispatch instead of static dispatch , and this comes with a small runtime cost. So, what are Input and Output? They're our own special flavor of a boxed trait object. pub type Input = TypeErasedBox;\npub type Output = TypeErasedBox;\npub type Error = TypeErasedBox; /// A new-type around `Box`\n#[derive(Debug)]\npub struct TypeErasedBox { inner: Box,\n} The orchestrator itself doesn't know about any concrete types. Instead, it passes boxed data between the various components of the request/response lifecycle. Individual components access data in two ways: From the ConfigBag: (with an accessor) let retry_strategy = cfg.retry_strategy(); (with the get method) let retry_strategy = cfg.get::>() From the InterceptorContext: (owned) let put_object_input: PutObjectInput = ctx.take_input().unwrap().downcast().unwrap()?; (by reference) let put_object_input = ctx.input().unwrap().downcast_ref::().unwrap(); Users can only call ConfigBag::get or downcast a TypeErasedBox to types they have access to, which allows maintainers to ensure encapsulation. For example: a plugin writer may declare a private type, place it in the config bag, and then later retrieve it. Because the type is private, only code in the same crate/module can ever insert or retrieve it. Therefore, there's less worry that someone will depend on a hidden, internal detail and no worry they'll accidentally overwrite a type in the bag. NOTE: When inserting values into a config bag, using one of the set_ methods is always preferred, as this prevents mistakes related to inserting similar, but incorrect types.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Avoiding generics at all costs","id":"56","title":"Avoiding generics at all costs"},"57":{"body":"The current implementation of orchestrate is defined here , in the aws-smithy-runtime crate . Related code can be found in the aws-smithy-runtime-api crate .","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » The actual code","id":"57","title":"The actual code"},"58":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Frequently asked questions","id":"58","title":"Frequently asked questions"},"59":{"body":"We chose to hide the runtime plugin API from users because we are concerned that exposing it will cause more problems than it solves. Instead, we encourage users to use interceptors. This is because, when setting a runtime plugin, any existing runtime plugin with the same type will be replaced. For example, there can only be one retry strategy or response deserializer. Errors resulting from unintentionally overriding a plugin would be difficult for users to diagnose, and would consume valuable development time.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why can't users create and use their own runtime plugins?","id":"59","title":"Why can't users create and use their own runtime plugins?"},"6":{"body":"","breadcrumbs":"Tenets » Details, Justifications, and Ramifications","id":"6","title":"Details, Justifications, and Ramifications"},"60":{"body":"The orchestrator exists because there is an AWS-internal initiative to bring the architecture of all AWS SDKs closer to one another.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does the orchestrator exist?","id":"60","title":"Why does the orchestrator exist?"},"61":{"body":"Because RFCs become outdated as designs evolve. It is our intention to keep this document up to date with our current implementation.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does this document exist when there's already an orchestrator RFC?","id":"61","title":"Why does this document exist when there's already an orchestrator RFC?"},"62":{"body":"The Smithy specification establishes several auth related modeling traits that can be applied to operation and service shapes. To briefly summarize: The auth schemes that are supported by a service are declared on the service shape Operation shapes MAY specify the subset of service-defined auth schemes they support. If none are specified, then all service-defined auth schemes are supported. A smithy code generator MUST support at least one auth scheme for every modeled operation, but it need not support ALL modeled auth schemes. This design document establishes how smithy-rs implements this specification.","breadcrumbs":"Client » Identity and Auth » Identity and Auth in Clients","id":"62","title":"Identity and Auth in Clients"},"63":{"body":"Auth: Either a shorthand that represents both of the authentication and authorization terms below, or an ambiguous representation of one of them. In this doc, this term will always refer to both. Authentication: The process of proving an entity is who they claim they are, sometimes referred to as AuthN. Authorization: The process of granting an authenticated entity the permission to do something, sometimes referred to as AuthZ. Identity: The information required for authentication. Signing: The process of attaching metadata to a request that allows a server to authenticate that request.","breadcrumbs":"Client » Identity and Auth » Terminology","id":"63","title":"Terminology"},"64":{"body":"There are two stages to identity and auth: Configuration Execution","breadcrumbs":"Client » Identity and Auth » Overview of Smithy Client Auth","id":"64","title":"Overview of Smithy Client Auth"},"65":{"body":"First, let's establish the aspects of auth that can be configured from the model at codegen time. Data AuthSchemeOptionResolverParams: parameters required to resolve auth scheme options. These parameters are allowed to come from both the client config and the operation input structs. AuthSchemes: a list of auth schemes that can be used to sign HTTP requests. This information comes directly from the service model. AuthSchemeProperties: configuration from the auth scheme for the signer. IdentityResolvers: list of available identity resolvers. Implementations IdentityResolver: resolves an identity for use in authentication. There can be multiple identity resolvers that need to be selected from. Signer: a signing implementation that signs a HTTP request. ResolveAuthSchemeOptions: resolves a list of auth scheme options for a given operation and its inputs. As it is undocumented (at time of writing), this document assumes that the code generator creates one service-level runtime plugin, and an operation-level runtime plugin per operation, hence referred to as the service runtime plugin and operation runtime plugin. The code generator emits code to add identity resolvers and HTTP auth schemes to the config bag in the service runtime plugin. It then emits code to register an interceptor in the operation runtime plugin that reads the operation input to generate the auth scheme option resolver params (which also get added to the config bag).","breadcrumbs":"Client » Identity and Auth » The configuration stage","id":"65","title":"The configuration stage"},"66":{"body":"At a high-level, the process of resolving an identity and signing a request looks as follows: Retrieve the AuthSchemeOptionResolverParams from the config bag. The AuthSchemeOptionResolverParams allow client config and operation inputs to play a role in which auth scheme option is selected. Retrieve the ResolveAuthSchemeOptions impl from the config bag, and use it to resolve the auth scheme options available with the AuthSchemeOptionResolverParams. The returned auth scheme options are in priority order. Retrieve the IdentityResolvers list from the config bag. For each auth scheme option: Attempt to find an HTTP auth scheme for that auth scheme option in the config bag (from the AuthSchemes list). If an auth scheme is found: Use the auth scheme to extract the correct identity resolver from the IdentityResolvers list. Retrieve the Signer implementation from the auth scheme. Use the IdentityResolver to resolve the identity needed for signing. Sign the request with the identity, and break out of the loop from step #4. In general, it is assumed that if an HTTP auth scheme exists for an auth scheme option, then an identity resolver also exists for that auth scheme option. Otherwise, the auth option was configured incorrectly during codegen.","breadcrumbs":"Client » Identity and Auth » The execution stage","id":"66","title":"The execution stage"},"67":{"body":"The client will use trait objects and dynamic dispatch for the IdentityResolver, Signer, and AuthSchemeOptionResolver implementations. Generics could potentially be used, but the number of generic arguments and trait bounds in the orchestrator would balloon to unmaintainable levels if each configurable implementation in it was made generic. These traits look like this: #[derive(Clone, Debug)]\npub struct AuthSchemeId { scheme_id: &'static str,\n} pub trait ResolveAuthSchemeOptions: Send + Sync + Debug { fn resolve_auth_scheme_options<'a>( &'a self, params: &AuthSchemeOptionResolverParams, ) -> Result, BoxError>;\n} pub trait IdentityResolver: Send + Sync + Debug { fn resolve_identity(&self, config: &ConfigBag) -> BoxFallibleFut;\n} pub trait Signer: Send + Sync + Debug { /// Return a signed version of the given request using the given identity. /// /// If the provided identity is incompatible with this signer, an error must be returned. fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag, ) -> Result<(), BoxError>;\n} IdentityResolver and Signer implementations are both given an Identity, but will need to understand what the concrete data type underlying that identity is. The Identity struct uses a Arc to represent the actual identity data so that generics are not needed in the traits: #[derive(Clone, Debug)]\npub struct Identity { data: Arc, expiration: Option,\n} Identities can often be cached and reused across several requests, which is why the Identity uses Arc rather than Box. This also reduces the allocations required. The signer implementations will use downcasting to access the identity data types they understand. For example, with AWS SigV4, it might look like the following: fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag,\n) -> Result<(), BoxError> { let aws_credentials = identity.data::() .ok_or_else(|| \"The SigV4 signer requires AWS credentials\")?; let access_key = &aws_credentials.secret_access_key; // -- snip --\n} Also note that identity data structs are expected to censor their own sensitive fields, as Identity implements the automatically derived Debug trait.","breadcrumbs":"Client » Identity and Auth » How this looks in Rust","id":"67","title":"How this looks in Rust"},"68":{"body":"A keen observer would note that there is an expiration field on Identity, and may ask, \"what about non-expiring identities?\" This is the result of a limitation on Box, where it can only be downcasted to concrete types. There is no way to downcast to a dyn Trait since the information required to verify that that type is that trait is lost at compile time (a std::any::TypeId only encodes information about the concrete type). In an ideal world, it would be possible to extract the expiration like this: pub trait ExpiringIdentity { fn expiration(&self) -> SystemTime;\n} let identity: Identity = some_identity();\nif let Some(expiration) = identity.data::<&dyn ExpiringIdentity>().map(ExpiringIdentity::expiration) { // make a decision based on that expiration\n} Theoretically, you should be able to save off additional type information alongside the Box and use unsafe code to transmute to known traits, but it is difficult to implement in practice, and adds unsafe code in a security critical piece of code that could otherwise be avoided. The expiration field is a special case that is allowed onto the Identity struct directly since identity cache implementations will always need to be aware of this piece of information, and having it as an Option still allows for non-expiring identities. Ultimately, this design constrains Signer implementations to concrete types. There is no world where an Signer can operate across multiple unknown identity data types via trait, and that should be OK since the signer implementation can always be wrapped with an implementation that is aware of the concrete type provided by the identity resolver, and can do any necessary conversions.","breadcrumbs":"Client » Identity and Auth » Challenges with this Identity design","id":"68","title":"Challenges with this Identity design"},"69":{"body":"Smithy Rust provides the ability to generate a server whose operations are provided by the customer. Middleware Instrumentation Accessing Un-modelled Data The Anatomy of a Service Generating Common Service Code","breadcrumbs":"Server » Smithy Server","id":"69","title":"Smithy Server"},"7":{"body":"Some customers will use the Rust SDK as their first experience with async Rust, potentially any Rust. They may not be familiar with Tokio or the concept of an async executor. We are not afraid to have an opinion about the best solution for most customers. Other customers will come to the SDK with specific requirements. Perhaps they're integrating the SDK into a much larger project that uses async_std. Maybe they need to set custom headers, modify the user agent, or audit every request. They should be able to use the Rust SDK without forking it to meet their needs.","breadcrumbs":"Tenets » Batteries included, but replaceable.","id":"7","title":"Batteries included, but replaceable."},"70":{"body":"The following document provides a brief survey of the various positions middleware can be inserted in Smithy Rust. We use the Pokémon service as a reference model throughout. /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n}","breadcrumbs":"Server » Middleware » Middleware","id":"70","title":"Middleware"},"71":{"body":"Smithy Rust is built on top of tower . Tower is a library of modular and reusable components for building robust networking clients and servers. The tower library is centered around two main interfaces, the Service trait and the Layer trait. The Service trait can be thought of as an asynchronous function from a request to a response, async fn(Request) -> Result, coupled with a mechanism to handle back pressure , while the Layer trait can be thought of as a way of decorating a Service, transforming either the request or response. Middleware in tower typically conforms to the following pattern, a Service implementation of the form pub struct NewService { inner: S, /* auxillary data */\n} and a complementary # extern crate tower;\n# pub struct NewService { inner: S }\nuse tower::{Layer, Service}; pub struct NewLayer { /* auxiliary data */\n} impl Layer for NewLayer { type Service = NewService; fn layer(&self, inner: S) -> Self::Service { NewService { inner, /* auxiliary fields */ } }\n} The NewService modifies the behavior of the inner Service S while the NewLayer takes auxiliary data and constructs NewService from S. Customers are then able to stack middleware by composing Layers using combinators such as ServiceBuilder::layer and Stack .","breadcrumbs":"Server » Middleware » Introduction to Tower","id":"71","title":"Introduction to Tower"},"72":{"body":"One of the primary goals is to provide configurability and extensibility through the application of middleware. The customer is able to apply Layers in a variety of key places during the request/response lifecycle. The following schematic labels each configurable middleware position from A to D: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradeLayer --> [*]: HTTP Response state A { state PokemonService { state RoutingService { in --> UpgradeLayer: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state B { state C1 { state C { state UpgradeLayer { direction LR [*] --> Handler: Model Input Handler --> [*] : Model Output state D { Handler } } } } C2 C3 C4 } } } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response where UpgradeLayer is the Layer converting Smithy model structures to HTTP structures and the RoutingService is responsible for routing requests to the appropriate operation.","breadcrumbs":"Server » Middleware » Applying Middleware","id":"72","title":"Applying Middleware"},"73":{"body":"The output of the Smithy service builder provides the user with a Service implementation. A Layer can be applied around the entire Service. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# extern crate tower;\n# use std::time::Duration;\n# struct TimeoutLayer;\n# impl TimeoutLayer { fn new(t: Duration) -> Self { Self }}\n# impl Layer for TimeoutLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService};\nuse tower::Layer; let config = PokemonServiceConfig::builder().build(); // This is a HTTP `Service`.\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; // Construct `TimeoutLayer`.\nlet timeout_layer = TimeoutLayer::new(Duration::from_secs(3)); // Apply a 3 second timeout to all responses.\nlet app = timeout_layer.layer(app);","breadcrumbs":"Server » Middleware » A. Outer Middleware","id":"73","title":"A. Outer Middleware"},"74":{"body":"A single layer can be applied to all routes inside the Router. This exists as a method on the PokemonServiceConfig builder object, which is passed into the service builder. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct MetricsLayer;\n# impl MetricsLayer { pub fn new() -> Self { Self } }\n# impl Layer for MetricsLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; // Construct `MetricsLayer`.\nlet metrics_layer = MetricsLayer::new(); let config = PokemonServiceConfig::builder().layer(metrics_layer).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; Note that requests pass through this middleware immediately after routing succeeds and therefore will not be encountered if routing fails. This means that the TraceLayer in the example above does not provide logs unless routing has completed. This contrasts to middleware A , which all requests/responses pass through when entering/leaving the service.","breadcrumbs":"Server » Middleware » B. Route Middleware","id":"74","title":"B. Route Middleware"},"75":{"body":"A \"HTTP layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use aws_smithy_http_server::{operation::OperationShapeExt, plugin::*, operation::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct LoggingLayer;\n# impl LoggingLayer { pub fn new() -> Self { Self } }\n# impl Layer for LoggingLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only log on `GetPokemonSpecies` and `GetStorage` struct LoggingScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `LoggingLayer`.\nlet logging_plugin = LayerPlugin(LoggingLayer::new());\nlet logging_plugin = Scoped::new::(logging_plugin);\nlet http_plugins = HttpPlugins::new().push(logging_plugin); let config = PokemonServiceConfig::builder().http_plugin(http_plugins).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; This middleware transforms the operations HTTP requests and responses.","breadcrumbs":"Server » Middleware » C. Operation Specific HTTP Middleware","id":"75","title":"C. Operation Specific HTTP Middleware"},"76":{"body":"A \"model layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::{operation::*, plugin::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# struct BufferLayer;\n# impl BufferLayer { pub fn new(size: usize) -> Self { Self } }\n# impl Layer for BufferLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only buffer on `GetPokemonSpecies` and `GetStorage` struct BufferScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `BufferLayer`.\nlet buffer_plugin = LayerPlugin(BufferLayer::new(3));\nlet buffer_plugin = Scoped::new::(buffer_plugin);\nlet config = PokemonServiceConfig::builder().model_plugin(buffer_plugin).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; In contrast to position C , this middleware transforms the operations modelled inputs to modelled outputs.","breadcrumbs":"Server » Middleware » D. Operation Specific Model Middleware","id":"76","title":"D. Operation Specific Model Middleware"},"77":{"body":"Suppose we want to apply a different Layer to every operation. In this case, position B (PokemonService::layer) will not suffice because it applies a single Layer to all routes and while position C (Operation::layer) would work, it'd require the customer constructs the Layer by hand for every operation. Consider the following middleware: # extern crate aws_smithy_http_server;\n# extern crate tower;\nuse aws_smithy_http_server::shape_id::ShapeId;\nuse std::task::{Context, Poll};\nuse tower::Service; /// A [`Service`] that adds a print log.\npub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId\n} impl Service for PrintService\nwhere S: Service,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, req: R) -> Self::Future { println!(\"Hi {} in {}\", self.operation_id.name(), self.service_id.name()); self.inner.call(req) }\n} The plugin system provides a way to construct then apply Layers in position C and D , using the protocol and operation shape as parameters. An example of a PrintPlugin which prints the operation name: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\n# pub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId }\nuse aws_smithy_http_server::{plugin::Plugin, operation::OperationShape, service::ServiceShape}; /// A [`Plugin`] for a service builder to add a [`PrintService`] over operations.\n#[derive(Debug)]\npub struct PrintPlugin; impl Plugin for PrintPlugin\nwhere Ser: ServiceShape, Op: OperationShape,\n{ type Output = PrintService; fn apply(&self, inner: T) -> Self::Output { PrintService { inner, operation_id: Op::ID, service_id: Ser::ID, } }\n} You can provide a custom method to add your plugin to a collection of HttpPlugins or ModelPlugins via an extension trait. For example, for HttpPlugins: # extern crate aws_smithy_http_server;\n# pub struct PrintPlugin;\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack}; /// This provides a [`print`](PrintExt::print) method on [`HttpPlugins`].\npub trait PrintExt { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> HttpPlugins>;\n} impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }\n} This allows for: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::plugin::{PluginStack, Plugin};\n# struct PrintPlugin;\n# impl Plugin for PrintPlugin { type Output = T; fn apply(&self, svc: T) -> Self::Output { svc }}\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\n# trait PrintExt { fn print(self) -> HttpPlugins>; }\n# impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }}\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse aws_smithy_http_server::plugin::{IdentityPlugin, HttpPlugins};\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; let http_plugins = HttpPlugins::new() // [..other plugins..] // The custom method! .print();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app /* : PokemonService> */ = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; The custom print method hides the details of the Plugin trait from the average consumer. They interact with the utility methods on HttpPlugins and enjoy the self-contained documentation.","breadcrumbs":"Server » Middleware » Plugin System","id":"77","title":"Plugin System"},"78":{"body":"A Smithy Rust server uses the tracing crate to provide instrumentation. The customer is responsible for setting up a Subscriber in order to ingest and process events - Smithy Rust makes no prescription on the choice of Subscriber. Common choices might include: tracing_subscriber::fmt for printing to stdout. tracing-log to providing compatibility with the log . Events are emitted and spans are opened by the aws-smithy-http-server, aws-smithy-http-server-python, and generated crate. The default target is always used The tracing macros default to using the module path where the span or event originated as the target, but it may be overridden. and therefore spans and events be filtered using the EnvFilter and/or Targets filters with crate and module paths. For example, RUST_LOG=aws_smithy_http_server=warn,aws_smithy_http_server_python=error and # extern crate tracing_subscriber;\n# extern crate tracing;\n# use tracing_subscriber::filter;\n# use tracing::Level;\nlet filter = filter::Targets::new().with_target(\"aws_smithy_http_server\", Level::DEBUG); In general, Smithy Rust is conservative when using high-priority log levels: ERROR Fatal errors, resulting in the termination of the service. Requires immediate remediation. WARN Non-fatal errors, resulting in incomplete operation. Indicates service misconfiguration, transient errors, or future changes in behavior. Requires inspection and remediation. INFO Informative events, which occur inside normal operating limits. Used for large state transitions, e.g. startup/shutdown. DEBUG Informative and sparse events, which occur inside normal operating limits. Used to debug coarse-grained progress of service. TRACE Informative and frequent events, which occur inside normal operating limits. Used to debug fine-grained progress of service.","breadcrumbs":"Server » Instrumentation » Instrumentation","id":"78","title":"Instrumentation"},"79":{"body":"Smithy Rust is built on top of tower , which means that middleware can be used to encompass different periods of the lifecycle of the request and response and identify them with a span. An open-source example of such a middleware is TraceLayer provided by the tower-http crate. Smithy provides an out-the-box middleware which: Opens a DEBUG level span, prior to request handling, including the operation name and request URI and headers. Emits a DEBUG level event, after to request handling, including the response headers and status code. This is enabled via the instrument method provided by the aws_smithy_http_server::instrumentation::InstrumentExt trait. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\nuse aws_smithy_http_server::{ instrumentation::InstrumentExt, plugin::{IdentityPlugin, HttpPlugins}\n};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService}; let http_plugins = HttpPlugins::new().instrument();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app;","breadcrumbs":"Server » Instrumentation » Spans over the Request/Response lifecycle","id":"79","title":"Spans over the Request/Response lifecycle"},"8":{"body":"If solving a common problem isn’t obvious from the API, it should be obvious from the documentation. The SDK should guide users towards the best solutions for common tasks, first with well named methods, second with documentation, and third with real -world usage examples. Provide misuse resistant APIs. Async Rust has the potential to introduce subtle bugs; the Rust SDK should help customers avoid them.","breadcrumbs":"Tenets » Make common problems easy to solve","id":"8","title":"Make common problems easy to solve"},"80":{"body":"The Pokémon service example, located at /examples/pokemon-service, sets up a tracing Subscriber as follows: # extern crate tracing_subscriber;\nuse tracing_subscriber::{prelude::*, EnvFilter}; /// Setup `tracing::subscriber` to read the log level from RUST_LOG environment variable.\npub fn setup_tracing() { let format = tracing_subscriber::fmt::layer().pretty(); let filter = EnvFilter::try_from_default_env() .or_else(|_| EnvFilter::try_new(\"info\")) .unwrap(); tracing_subscriber::registry().with(format).with(filter).init();\n} Running the Pokémon service example using RUST_LOG=aws_smithy_http_server=debug,pokemon_service=debug cargo r and then using cargo t to run integration tests against the server, yields the following logs: 2022-09-27T09:13:35.372517Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"content-length\": \"17\"}, status_code: 200 OK at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_server_statistics, method: GET, uri: /stats, headers: {\"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374104Z DEBUG pokemon_service: attempting to authenticate storage user at pokemon-service/src/lib.rs:184 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374152Z DEBUG pokemon_service: authentication failed at pokemon-service/src/lib.rs:188 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374230Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"x-amzn-errortype\": \"NotAuthorized\", \"content-length\": \"2\"}, status_code: 401 Unauthorized at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"}","breadcrumbs":"Server » Instrumentation » Example","id":"80","title":"Example"},"81":{"body":"Instrumentation interacts with Smithy's sensitive trait . Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). For this reason, Smithy runtime will never use tracing to emit events or open spans that include any sensitive data. This means that the customer can ingest all logs from aws-smithy-http-server and aws-smithy-http-server-* without fear of violating the sensitive trait. The Smithy runtime will not, and cannot, prevent the customer violating the sensitive trait within the operation handlers and custom middleware. It is the responsibility of the customer to not violate the sensitive contract of their own model, care must be taken. Smithy shapes can be sensitive while being coupled to the HTTP request/responses via the HTTP binding traits . This poses a risk when ingesting events which naively capture request/response information. The instrumentation middleware provided by Smithy Rust respects the sensitive trait and will replace sensitive data in its span and event with {redacted}. This feature can be seen in the Example above. For debugging purposes these redactions can be prevented using the aws-smithy-http-server feature flag, unredacted-logging. Some examples of inadvertently leaking sensitive information: Ingesting tracing events and spans from third-party crates which do not respect sensitivity. An concrete example of this would be enabling events from hyper or tokio. Applying middleware which ingests events including HTTP payloads or any other part of the HTTP request/response which can be bound.","breadcrumbs":"Server » Instrumentation » Interactions with Sensitivity","id":"81","title":"Interactions with Sensitivity"},"82":{"body":"For every Smithy Operation an input, output, and optional error are specified. This in turn constrains the function signature of the handler provided to the service builder - the input to the handler must be the input specified by the operation etc. But what if we, the customer, want to access data in the handler which is not modelled by our Smithy model? Smithy Rust provides an escape hatch in the form of the FromParts trait. In axum these are referred to as \"extractors\" . /// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n} Here Parts is the struct containing all items in a http::Request except for the HTTP body. A prolific example of a FromParts implementation is Extension: /// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n} impl FromParts for Extension\nwhere T: Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} This allows the service builder to accept the following handler async fn handler(input: ModelInput, extension: Extension) -> ModelOutput { /* ... */\n} where ModelInput and ModelOutput are specified by the Smithy Operation and SomeStruct is a struct which has been inserted, by middleware, into the http::Request::extensions . Up to 32 structures implementing FromParts can be provided to the handler with the constraint that they must be provided after the ModelInput: async fn handler(input: ModelInput, ext1: Extension, ext2: Extension, other: Other /* : FromParts */, /* ... */) -> ModelOutput { /* ... */\n} Note that the parts.extensions.remove::() in Extensions::from_parts will cause multiple Extension arguments in the handler to fail. The first extraction failure to occur is serialized via the IntoResponse trait (notice type Error: IntoResponse) and returned. The FromParts trait is public so customers have the ability specify their own implementations: struct CustomerDefined { /* ... */\n} impl

    FromParts

    for CustomerDefined { type Error = /* ... */; fn from_parts(parts: &mut Parts) -> Result { // Construct `CustomerDefined` using the request headers. let header_value = parts.headers.get(\"header-name\").ok_or(/* ... */)?; Ok(CustomerDefined { /* ... */ }) }\n} async fn handler(input: ModelInput, arg: CustomerDefined) -> ModelOutput { /* ... */\n}","breadcrumbs":"Server » Accessing Un-modelled Data » Accessing Un-modelled Data","id":"82","title":"Accessing Un-modelled Data"},"83":{"body":"What is Smithy ? At a high-level, it's a grammar for specifying services while leaving the business logic undefined. A Smithy Service specifies a collection of function signatures in the form of Operations , their purpose is to encapsulate business logic. A Smithy implementation should, for each Smithy Service, provide a builder, which accepts functions conforming to said signatures, and returns a service subject to the semantics specified by the model. This survey is disinterested in the actual Kotlin implementation of the code generator, and instead focuses on the structure of the generated Rust code and how it relates to the Smithy model. The intended audience is new contributors and users interested in internal details. During the survey we will use the pokemon.smithy model as a reference: /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n} Smithy Rust will use this model to produce the following API: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*, operation_shape::*, PokemonServiceConfig, PokemonService};\n// A handler for the `GetPokemonSpecies` operation (the `PokemonSpecies` resource).\nasync fn get_pokemon_species(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let config = PokemonServiceConfig::builder().build(); // Use the service builder to create `PokemonService`.\nlet pokemon_service = PokemonService::builder(config) // Pass the handler directly to the service builder... .get_pokemon_species(get_pokemon_species) /* other operation setters */ .build() .expect(\"failed to create an instance of the Pokémon service\");\n# let pokemon_service: PokemonService, RestJson1>> = pokemon_service;","breadcrumbs":"Server » The Anatomy of a Service » The Anatomy of a Service","id":"83","title":"The Anatomy of a Service"},"84":{"body":"A Smithy Operation specifies the input, output, and possible errors of an API operation. One might characterize a Smithy Operation as syntax for specifying a function type. We represent this in Rust using the OperationShape trait: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\npub trait OperationShape { /// The name of the operation. const ID: ShapeId; /// The operation input. type Input; /// The operation output. type Output; /// The operation error. [`Infallible`](std::convert::Infallible) in the case where no error /// exists. type Error;\n}\n# use aws_smithy_http_server::operation::OperationShape as OpS;\n# impl OperationShape for T {\n# const ID: ShapeId = ::ID;\n# type Input = ::Input;\n# type Output = ::Output;\n# type Error = ::Error;\n# } For each Smithy Operation shape, /// Retrieve information about a Pokémon species.\n@readonly\n@http(uri: \"/pokemon-species/{name}\", method: \"GET\")\noperation GetPokemonSpecies { input: GetPokemonSpeciesInput, output: GetPokemonSpeciesOutput, errors: [ResourceNotFoundException],\n} the following implementation is generated # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{operation::OperationShape, shape_id::ShapeId};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n/// Retrieve information about a Pokémon species.\npub struct GetPokemonSpecies; impl OperationShape for GetPokemonSpecies { const ID: ShapeId = ShapeId::new(\"com.aws.example#GetPokemonSpecies\", \"com.aws.example\", \"GetPokemonSpecies\"); type Input = GetPokemonSpeciesInput; type Output = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError;\n} where GetPokemonSpeciesInput, GetPokemonSpeciesOutput are both generated from the Smithy structures and GetPokemonSpeciesError is an enum generated from the errors: [ResourceNotFoundException]. Note that the GetPokemonSpecies marker structure is a zero-sized type (ZST), and therefore does not exist at runtime - it is a way to attach operation-specific data on an entity within the type system. The following nomenclature will aid us in our survey. We describe a tower::Service as a \"model service\" if its request and response are Smithy structures, as defined by the OperationShape trait - the GetPokemonSpeciesInput, GetPokemonSpeciesOutput, and GetPokemonSpeciesError described above. Similarly, we describe a tower::Service as a \"HTTP service\" if its request and response are http structures - http::Request and http::Response. The constructors exist on the marker ZSTs as an extension trait to OperationShape, namely OperationShapeExt : # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::operation::*;\n/// An extension trait over [`OperationShape`].\npub trait OperationShapeExt: OperationShape { /// Creates a new [`Service`] for well-formed [`Handler`]s. fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized; /// Creates a new [`Service`] for well-formed [`Service`](tower::Service)s. fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized;\n}\n# use aws_smithy_http_server::operation::OperationShapeExt as OpS;\n# impl OperationShapeExt for T {\n# fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized { ::from_handler(handler) }\n# fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized { ::from_service(svc) }\n# } Observe that there are two constructors provided: from_handler which takes a H: Handler and from_service which takes a S: OperationService. In both cases Self is passed as a parameter to the traits - this constrains handler: H and svc: S to the signature given by the implementation of OperationShape on Self. The Handler and OperationService both serve a similar purpose - they provide a common interface for converting to a model service S. The Handler trait covers all async functions taking GetPokemonSpeciesInput and asynchronously returning a Result. The OperationService trait covers all tower::Services with request GetPokemonSpeciesInput, response GetPokemonSpeciesOutput and error GetPokemonSpeciesOutput. The from_handler constructor is used in the following way: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt; async fn get_pokemon_service(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let operation = GetPokemonSpecies::from_handler(get_pokemon_service); Alternatively, from_service constructor: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# extern crate tower;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt;\nuse std::task::{Context, Poll};\nuse tower::Service; struct Svc { /* ... */\n} impl Service for Svc { type Response = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError; type Future = /* Future> */ # std::future::Ready>; fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll> { todo!() } fn call(&mut self, input: GetPokemonSpeciesInput) -> Self::Future { todo!() }\n} let svc: Svc = Svc { /* ... */ };\nlet operation = GetPokemonSpecies::from_service(svc); To summarize a model service constructed can be constructed from a Handler or a OperationService subject to the constraints of an OperationShape. More detailed information on these conversions is provided in the Handler and OperationService section Rust docs.","breadcrumbs":"Server » The Anatomy of a Service » Operations","id":"84","title":"Operations"},"85":{"body":"A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use aws_smithy_http_server::body::BoxBody;\n# use std::future::Future;\n/// Provides a protocol aware extraction from a [`Request`]. This consumes the\n/// [`Request`], in contrast to [`FromParts`].\npub trait FromRequest: Sized { type Rejection: IntoResponse; type Future: Future>; /// Extracts `self` from a [`Request`] asynchronously. fn from_request(request: http::Request) -> Self::Future;\n} /// A protocol aware function taking `self` to [`http::Response`].\npub trait IntoResponse { /// Performs a conversion into a [`http::Response`]. fn into_response(self) -> http::Response;\n}\n# use aws_smithy_http_server::request::FromRequest as FR;\n# impl> FromRequest for T {\n# type Rejection = >::Rejection;\n# type Future = >::Future;\n# fn from_request(request: http::Request) -> Self::Future {\n# >::from_request(request)\n# }\n# }\n# use aws_smithy_http_server::response::IntoResponse as IR;\n# impl> IntoResponse

    for T {\n# fn into_response(self) -> http::Response { >::into_response(self) }\n# } Note that both traits are parameterized by Protocol. These protocols exist as ZST marker structs: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::{\n# aws_json_10::AwsJson1_0 as _,\n# aws_json_11::AwsJson1_1 as _,\n# rest_json_1::RestJson1 as _,\n# rest_xml::RestXml as _,\n# };\n/// [AWS REST JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restjson1-protocol.html).\npub struct RestJson1; /// [AWS REST XML Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restxml-protocol.html).\npub struct RestXml; /// [AWS JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_0-protocol.html).\npub struct AwsJson1_0; /// [AWS JSON 1.1 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_1-protocol.html).\npub struct AwsJson1_1;","breadcrumbs":"Server » The Anatomy of a Service » Serialization and Deserialization","id":"85","title":"Serialization and Deserialization"},"86":{"body":"We can \"upgrade\" a model service to a HTTP service using FromRequest and IntoResponse described in the prior section: stateDiagram-v2 direction LR HttpService: HTTP Service [*] --> from_request: HTTP Request state HttpService { direction LR ModelService: Model Service from_request --> ModelService: Model Input ModelService --> into_response: Model Output } into_response --> [*]: HTTP Response This is formalized by the Upgrade HTTP service. The tower::Service implementation is approximately: impl Service for Upgrade\nwhere Input: FromRequest, S: Service, S::Response: IntoResponse

    , S::Error: IntoResponse

    ,\n{ async fn call(&mut self, request: http::Request) -> http::Response { let model_request = match ::from_request(request).await { Ok(ok) => ok, Err(err) => return err.into_response() }; let model_response = self.model_service.call(model_request).await; model_response.into_response() }\n} When we GetPokemonSpecies::from_handler or GetPokemonSpecies::from_service, the model service produced, S, will meet the constraints above. There is an associated Plugin, UpgradePlugin which constructs Upgrade from a service. The upgrade procedure is finalized by the application of the Layer L, referenced in Operation. In this way the entire upgrade procedure takes an Operation and returns a HTTP service. stateDiagram-v2 direction LR [*] --> UpgradePlugin: HTTP Request state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } UpgradePlugin --> [*]: HTTP Response Note that the S is specified by logic written, in Rust, by the customer, whereas UpgradePlugin is specified entirely by Smithy model via the protocol, HTTP bindings , etc.","breadcrumbs":"Server » The Anatomy of a Service » Upgrading a Model Service","id":"86","title":"Upgrading a Model Service"},"87":{"body":"Different protocols supported by Smithy enjoy different routing mechanisms, for example, AWS JSON 1.0 uses the X-Amz-Target header to select an operation, whereas AWS REST XML uses the HTTP label trait . Despite their differences, all routing mechanisms satisfy a common interface. This is formalized using the Router trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n/// An interface for retrieving an inner [`Service`] given a [`http::Request`].\npub trait Router { type Service; type Error; /// Matches a [`http::Request`] to a target [`Service`]. fn match_route(&self, request: &http::Request) -> Result;\n} which provides the ability to determine an inner HTTP service from a collection using a &http::Request. Types which implement the Router trait are converted to a HTTP service via the RoutingService struct: /// A [`Service`] using a [`Router`] `R` to redirect messages to specific routes.\n///\n/// The `Protocol` parameter is used to determine the serialization of errors.\npub struct RoutingService { router: R, _protocol: PhantomData,\n} impl Service for RoutingService\nwhere R: Router, R::Service: Service, R::Error: IntoResponse

    + Error,\n{ type Response = http::Response; type Error = /* implementation detail */; async fn call(&mut self, req: http::Request) -> Result { match self.router.match_route(&req) { // Successfully routed, use the routes `Service::call`. Ok(ok) => ok.oneshot(req).await, // Failed to route, use the `R::Error`s `IntoResponse

    `. Err(error) => { debug!(%error, \"failed to route\"); Err(Box::new(error.into_response())) } } }\n} The RouterService is the final piece necessary to form a functioning composition - it is used to aggregate together the HTTP services, created via the upgrade procedure, into a single HTTP service which can be presented to the customer. stateDiagram\nstate in <<fork>> direction LR [*] --> in state RouterService { direction LR in --> ServiceA in --> ServiceB in --> ServiceC } ServiceA --> [*] ServiceB --> [*] ServiceC --> [*]","breadcrumbs":"Server » The Anatomy of a Service » Routers","id":"87","title":"Routers"},"88":{"body":"A Plugin is a [tower::Layer] with two extra type parameters, Service and Operation, corresponding to Smithy Service and Smithy Operation . This allows the middleware to be parameterized them and change behavior depending on the context in which it's applied. # extern crate aws_smithy_http_server;\npub trait Plugin { type Output; fn apply(&self, input: T) -> Self::Output;\n}\n# use aws_smithy_http_server::plugin::Plugin as Pl;\n# impl> Plugin for U {\n# type Output = >::Output;\n# fn apply(&self, input: T) -> Self::Output { >::apply(self, input) }\n# } An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs . Plugins can be applied in two places: HTTP plugins, which are applied pre-deserialization/post-serialization, acting on HTTP requests/responses. Model plugins, which are applied post-deserialization/pre-serialization, acting on model inputs/outputs/errors. stateDiagram-v2 direction LR [*] --> S: HTTP Request state HttpPlugin { state UpgradePlugin { state ModelPlugin { S } } } S --> [*]: HTTP Response The service builder API requires plugins to be specified upfront - they must be registered in the config object, which is passed as an argument to builder. Plugins cannot be modified afterwards. You might find yourself wanting to apply multiple plugins to your service. This can be accommodated via [HttpPlugins] and [ModelPlugins]. # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::HttpPlugins;\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as MetricsPlugin; let http_plugins = HttpPlugins::new().push(LoggingPlugin).push(MetricsPlugin); The plugins' runtime logic is executed in registration order. In the example above, LoggingPlugin would run first, while MetricsPlugin is executed last. If you are vending a plugin, you can leverage HttpPlugins or ModelPlugins as an extension point: you can add custom methods to it using an extension trait. For example: # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack};\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as AuthPlugin; pub trait AuthPluginExt { fn with_auth(self) -> HttpPlugins>;\n} impl AuthPluginExt for HttpPlugins { fn with_auth(self) -> HttpPlugins> { self.push(AuthPlugin) }\n} let http_plugins = HttpPlugins::new() .push(LoggingPlugin) // Our custom method! .with_auth();","breadcrumbs":"Server » The Anatomy of a Service » Plugins","id":"88","title":"Plugins"},"89":{"body":"The service builder is the primary public API, generated for every Smithy Service . At a high-level, the service builder takes as input a function for each Smithy Operation and returns a single HTTP service. The signature of each function, also known as handlers , must match the constraints of the corresponding Smithy model. You can create an instance of a service builder by calling builder on the corresponding service struct. # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::routing::Route;\n/// The service builder for [`PokemonService`].\n///\n/// Constructed via [`PokemonService::builder`].\npub struct PokemonServiceBuilder { capture_pokemon_operation: Option>, empty_operation: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, get_storage: Option>, health_check_operation: Option>, http_plugin: HttpPl, model_plugin: ModelPl,\n} The builder has two setter methods for each Smithy Operation in the Smithy Service : pub fn get_pokemon_species(self, handler: HandlerType) -> Self where HandlerType:Handler, ModelPl: Plugin< PokemonService, GetPokemonSpecies, IntoService >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_handler(handler); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new() .apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_service(self, service: S) -> Self where S: OperationService, ModelPl: Plugin< PokemonService, GetPokemonSpecies, Normalize >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_service(service); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new().apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_custom(mut self, svc: S) -> Self where S: Service, Response = Response, Error = Infallible>, { self.get_pokemon_species = Some(Route::new(svc)); self } Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise. You can transform a builder instance into a complete service (PokemonService) using one of the following methods: build. The transformation fails if one or more operations do not have a registered handler; build_unchecked. The transformation never fails, but we return 500s for all operations that do not have a registered handler. Both builder methods take care of: Pair each handler with the routing information for the corresponding operation; Collect all (routing_info, handler) pairs into a Router; Transform the Router implementation into a HTTP service via RouterService; Wrap the RouterService in a newtype given by the service name, PokemonService. The final outcome, an instance of PokemonService, looks roughly like this: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{routing::RoutingService, protocol::rest_json_1::{router::RestRouter, RestJson1}};\n/// The Pokémon Service allows you to retrieve information about Pokémon species.\n#[derive(Clone)]\npub struct PokemonService { router: RoutingService, RestJson1>,\n} The following schematic summarizes the composition: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradePlugin --> [*]: HTTP Response state PokemonService { state RoutingService { in --> UpgradePlugin: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state C1 { state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } } C2 C3 C4 } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response","breadcrumbs":"Server » The Anatomy of a Service » Builders","id":"89","title":"Builders"},"9":{"body":"APIs evolve in unpredictable ways, and it's crucial that the SDK can evolve without breaking existing customers. This means designing the SDK so that fundamental changes to the internals can be made without altering the external interface we surface to customers: Keeping the shared core as small & opaque as possible. Don’t leak our internal dependencies to customers With every design choice, consider, \"Can I reverse this choice in the future?\" This may not result in DRY code, and that’s OK! Code that is auto generated has different goals and tradeoffs than code that has been written by hand.","breadcrumbs":"Tenets » Design for the Future","id":"9","title":"Design for the Future"},"90":{"body":"An additional omitted detail is that we provide an \"escape hatch\" allowing Handlers and OperationServices to accept data that isn't modelled. In addition to accepting Op::Input they can accept additional arguments which implement the FromParts trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use http::request::Parts;\n# use aws_smithy_http_server::response::IntoResponse;\n/// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n}\n# use aws_smithy_http_server::request::FromParts as FP;\n# impl> FromParts

    for T {\n# type Rejection = >::Rejection;\n# fn from_parts(parts: &mut Parts) -> Result { >::from_parts(parts) }\n# } This differs from FromRequest trait, introduced in Serialization and Deserialization , as it's synchronous and has non-consuming access to Parts , rather than the entire Request . pub struct Parts { pub method: Method, pub uri: Uri, pub version: Version, pub headers: HeaderMap, pub extensions: Extensions, /* private fields */\n} This is commonly used to access types stored within Extensions which have been inserted by a middleware. An Extension struct implements FromParts to support this use case: # extern crate aws_smithy_http_server;\n# extern crate http;\n# extern crate thiserror;\n# use aws_smithy_http_server::{body::BoxBody, request::FromParts, response::IntoResponse};\n# use http::status::StatusCode;\n# use thiserror::Error;\n# fn empty() -> BoxBody { todo!() }\n/// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); impl FromParts for Extension\nwhere T: Clone + Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n}","breadcrumbs":"Server » The Anatomy of a Service » Accessing Unmodelled Data","id":"90","title":"Accessing Unmodelled Data"},"91":{"body":"This document introduces the project and how code is being generated. It is written for developers who want to start contributing to smithy-rs.","breadcrumbs":"Server » Generating Common Service Code » Generating Common Service Code","id":"91","title":"Generating Common Service Code"},"92":{"body":"The project is divided in: /codegen-core: contains common code to be used for both client and server code generation /codegen-client: client code generation. Depends on codegen-core /codegen-server: server code generation. Depends on codegen-core /aws: the AWS Rust SDK, it deals with AWS services specifically. The folder structure reflects the project's, with the rust-runtime and the codegen /rust-runtime: the generated client and server crates may depend on crates in this folder. Crates here are not code generated. The only crate that is not published is inlineable, which contains common functions used by other crates, copied into the source crate Crates in /rust-runtime (informally referred to as \"runtime crates\") are added to a crate's dependency only when used. For example, if a model uses event streams, the generated crates will depend on aws-smithy-eventstream .","breadcrumbs":"Server » Generating Common Service Code » Folder structure","id":"92","title":"Folder structure"},"93":{"body":"smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and inherits from SmithyBuildPlugin in smithy-build . Code generation is in Kotlin and shared common, non-Rust specific code with the smithy Java repository . They plug into the Smithy gradle plugin, which is a gradle plugin. The comment at the beginning of execute describes what a Decorator is and uses the following terms: Context: contains the model being generated, projection and settings for the build Decorator: (also referred to as customizations) customizes how code is being generated. AWS services are required to sign with the SigV4 protocol, and a decorator adds Rust code to sign requests and responses. Decorators are applied in reverse order of being added and have a priority order. Writer: creates files and adds content; it supports templating, using # for substitutions Location: the file where a symbol will be written to The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method. CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor . CodegenVisitor, RustCodegenPlugin, and wherever there are different implementations between client and server, such as in generating error types, have corresponding server versions. Objects used throughout code generation are: Symbol: a node in a graph, an abstraction that represents the qualified name of a type; symbols reference and depend on other symbols, and have some common properties among languages (such as a namespace or a definition file). For Rust, we add properties to include more metadata about a symbol, such as its type RustType : Option, HashMap, ... along with their namespaces of origin such as std::collections RuntimeType : the information to locate a type, plus the crates it depends on ShapeId : an immutable object that identifies a Shape Useful conversions are: SymbolProvider.toSymbol(shape) where SymbolProvider constructs symbols for shapes. Some symbols require to create other symbols and types; event streams and other streaming shapes are an example. Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider , and all other providers will work with this new symbol. Model.expectShape(shapeId) Each model has a shapeId to shape map; this method returns the shape associated with this shapeId. Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape. CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust ; here is how a service is constructed, here a structure and so on. Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis . The complete result is a Rust crate , in which all dependencies are written into their modules and lib.rs is generated ( here ). execute() ends by running cargo fmt , to avoid having to format correctly Rust in Writers and to be sure the generated code follows the styling rules.","breadcrumbs":"Server » Generating Common Service Code » Generating code","id":"93","title":"Generating code"},"94":{"body":"What is an RFC?: An RFC is a document that proposes a change to smithy-rs or the AWS Rust SDK. Request for Comments means a request for discussion and oversight about the future of the project from maintainers, contributors and users. When should I write an RFC?: The AWS Rust SDK team proactively decides to write RFCs for major features or complex changes that we feel require extra scrutiny. However, the process can be used to request feedback on any change. Even changes that seem obvious and simple at first glance can be improved once a group of interested and experienced people have a chance to weigh in. Who can submit an RFC?: An RFC can be submitted by anyone. In most cases, RFCs are authored by SDK maintainers, but everyone is welcome to submit RFCs. Where do I start?: If you're ready to write and submit an RFC, please start a GitHub discussion with a summary of what you're trying to accomplish first. That way, the AWS Rust SDK team can ensure they have the bandwidth to review and shepherd the RFC through the whole process before you've expended effort in writing it. Once you've gotten the go-ahead, start with the RFC template .","breadcrumbs":"RFCs » RFCs","id":"94","title":"RFCs"},"95":{"body":"RFC-0001: AWS Configuration RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream RFC-0003: API for Presigned URLs RFC-0004: Retry Behavior RFC-0005: Service Generation RFC-0006: Service-specific middleware RFC-0007: Split Release Process RFC-0008: Paginators RFC-0009: Example Consolidation RFC-0010: Waiters RFC-0011: Publishing Alpha to Crates.io RFC-0012: Independent Crate Versioning RFC-0013: Body Callback APIs RFC-0014: Fine-grained timeout configuration RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates RFC-0016: Supporting Flexible Checksums RFC-0017: Customizable Client Operations RFC-0018: Logging in the Presence of Sensitive Data RFC-0019: Event Streams Errors RFC-0020: Service Builder Improvements RFC-0021: Dependency Versions RFC-0022: Error Context and Compatibility RFC-0023: Evolving the new service builder API RFC-0024: RequestID RFC-0025: Constraint traits RFC-0026: Client Crate Organization RFC-0027: Endpoints 2.0 RFC-0028: SDK Credential Cache Type Safety RFC-0029: Finding New Home for Credential Types RFC-0030: Serialization And Deserialization RFC-0031: Providing Fallback Credentials on Timeout RFC-0032: Better Constraint Violations RFC-0033: Improving access to request IDs in SDK clients RFC-0034: The Orchestrator Architecture RFC-0035: Sensible Defaults for Collection Values RFC-0036: Enabling HTTP crate upgrades in the future RFC-0037: The HTTP wrapper type","breadcrumbs":"RFCs » Previously Submitted RFCs","id":"95","title":"Previously Submitted RFCs"},"96":{"body":"Status: Implemented. For an ordered list of proposed changes see: Proposed changes . An AWS SDK loads configuration from multiple locations. Some of these locations can be loaded synchronously. Some are async. Others may actually use AWS services such as STS or SSO. This document proposes an overhaul to the configuration design to facilitate three things: Future-proof: It should be easy to add additional sources of region and credentials, sync and async, from many sources, including code-generated AWS services. Ergonomic: There should be one obvious way to create an AWS service client. Customers should be able to easily customize the client to make common changes. It should encourage sharing of things that are expensive to create. Shareable: A config object should be usable to configure multiple AWS services.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » AWS Configuration RFC","id":"96","title":"AWS Configuration RFC"},"97":{"body":"The following is an imagined usage guide if this RFC where implemented.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Usage Guide","id":"97","title":"Usage Guide"},"98":{"body":"Using the SDK requires two crates: aws-sdk-: The service you want to use (e.g. dynamodb, s3, sesv2) aws-config: AWS metaconfiguration. This crate contains all the of logic to load configuration for the SDK (regions, credentials, retry configuration, etc.) Add the following to your Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Let's write a small example project to list tables: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let config = aws_config::load_from_env().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n} Tip: Every AWS service exports a top level Error type (e.g. aws_sdk_dynamodb::Error ). Individual operations return specific error types that contain only the error variants returned by the operation . Because all the individual errors implement Into, you can use dynamodb::Error as the return type along with ?. Next, we'll explore some other ways to configure the SDK. Perhaps you want to override the region loaded from the environment with your region. In this case, we'll want more control over how we load config, using aws_config::from_env() directly: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let region_provider = RegionProviderChain::default_provider().or_else(\"us-west-2\"); let config = aws_config::from_env().region(region_provider).load().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Getting Started","id":"98","title":"Getting Started"},"99":{"body":"The Config produced by aws-config can be used with any AWS service. If we wanted to read our Dynamodb DB tables aloud with Polly, we could create a Polly client as well. First, we'll need to add Polly to our Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-sdk-polly = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Then, we can use the shared configuration to build both service clients. The region override will apply to both clients: use aws_sdk_dynamodb as dynamodb;\nuse aws_sdk_polly as polly; #[tokio::main]\nasync fn main() -> Result<(), Box> { // error type changed to `Box` because we now have dynamo and polly errors let config = aws_config::env_loader().with_region(Region::new(\"us-west-2\")).load().await; let dynamodb = dynamodb::Client::new(&config); let polly = polly::Client::new(&config); let resp = dynamodb.list_tables().send().await; let tables = resp.tables.unwrap_or_default(); let table_sentence = format!(\"my dynamo DB tables are: {}\", tables.join(\", \")); let audio = polly.synthesize_speech() .output_format(OutputFormat::Mp3) .text(table_sentence) .voice_id(VoiceId::Joanna) .send() .await?; // Get MP3 data from the response and save it let mut blob = resp .audio_stream .collect() .await .expect(\"failed to read data\"); let mut file = tokio::fs::File::create(\"tables.mp3\") .await .expect(\"failed to create file\"); file.write_all_buf(&mut blob) .await .expect(\"failed to write to file\"); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sharing configuration between multiple services","id":"99","title":"Sharing configuration between multiple services"}},"length":510,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":2,"docs":{"294":{"tf":1.0},"482":{"tf":1.0}}}},"0":{"0":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":2,"docs":{"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"482":{"tf":1.0},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.4142135623730951},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":7,"docs":{"346":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"426":{"tf":1.0},"482":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.7320508075688772}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":18,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":2.449489742783178},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"c":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":44,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":28,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"505":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"264":{"tf":1.0},"34":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":2.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":77,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.449489742783178},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.0},"292":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":4.358898943540674}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"4":{"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"482":{"tf":1.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":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{".":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"482":{"tf":2.449489742783178},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.0}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"66":{"tf":3.605551275463989}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":11,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"482":{"tf":2.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"169":{"tf":3.605551275463989},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.0},"504":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.449489742783178},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.605551275463989},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"df":20,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.0},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"14":{"tf":3.3166247903554},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":27,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.0},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.0},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":34,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.7320508075688772},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":3.872983346207417},"499":{"tf":1.4142135623730951},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":12,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"482":{"tf":1.7320508075688772},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":7,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"482":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":66,"docs":{"1":{"tf":1.0},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":3.0},"276":{"tf":1.4142135623730951},"278":{"tf":2.449489742783178},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"312":{"tf":2.449489742783178},"313":{"tf":4.242640687119285},"314":{"tf":2.23606797749979},"316":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":2.8284271247461903},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"366":{"tf":3.1622776601683795},"367":{"tf":2.449489742783178},"368":{"tf":4.123105625617661},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":4.47213595499958},"200":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":81,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.0},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":14,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":3.872983346207417},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":7.54983443527075},"227":{"tf":4.242640687119285},"228":{"tf":5.385164807134504},"229":{"tf":3.1622776601683795},"230":{"tf":2.0},"231":{"tf":4.47213595499958},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":2.6457513110645907},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.7320508075688772},"495":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.242640687119285},"490":{"tf":2.0},"491":{"tf":3.7416573867739413},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.449489742783178},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":120,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.4641016151377544},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.449489742783178},"234":{"tf":2.23606797749979},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.6457513110645907},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":3.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.6457513110645907},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":3.1622776601683795},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.0}}}}}}},"t":{"df":37,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.23606797749979},"290":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.6457513110645907},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.0},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":4.123105625617661},"460":{"tf":3.0},"482":{"tf":1.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"488":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.6457513110645907},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.4142135623730951},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.0},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":31,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":3.7416573867739413},"324":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":3.3166247903554},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":2.23606797749979},"432":{"tf":2.23606797749979},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":2.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":2.6457513110645907},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":2,"docs":{"482":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.7320508075688772},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.0},"509":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.4142135623730951},"412":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"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":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"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":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"351":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"482":{"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":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":128,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.6457513110645907},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.449489742783178},"188":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":3.872983346207417},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":2.23606797749979},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"337":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":14,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":94,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":2.6457513110645907},"369":{"tf":2.0},"371":{"tf":1.0},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"410":{"tf":2.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":3.3166247903554},"415":{"tf":3.605551275463989},"416":{"tf":2.0},"418":{"tf":4.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.6457513110645907},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":76,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":28,"docs":{"240":{"tf":1.0},"248":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":2,"docs":{"261":{"tf":1.0},"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":66,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.0},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.0},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.0},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":70,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.0},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":25,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.449489742783178},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"405":{"tf":2.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":48,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.4142135623730951},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.0},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":38,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":10,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"482":{"tf":1.0},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"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":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":2.0},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"'":{"/":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"482":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":33,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":2.6457513110645907},"347":{"tf":2.8284271247461903},"349":{"tf":3.4641016151377544},"350":{"tf":4.795831523312719},"351":{"tf":4.47213595499958},"352":{"tf":2.6457513110645907},"353":{"tf":2.0},"354":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":2.449489742783178},"359":{"tf":3.0},"361":{"tf":2.6457513110645907},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":3.7416573867739413},"459":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":3.4641016151377544},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.0},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"313":{"tf":3.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"41":{"tf":2.0},"482":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":124,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":4.795831523312719},"262":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"280":{"tf":1.0},"287":{"tf":3.605551275463989},"289":{"tf":3.872983346207417},"290":{"tf":3.1622776601683795},"291":{"tf":3.0},"293":{"tf":3.0},"294":{"tf":2.6457513110645907},"295":{"tf":3.605551275463989},"296":{"tf":2.8284271247461903},"297":{"tf":4.69041575982343},"298":{"tf":3.0},"299":{"tf":2.6457513110645907},"300":{"tf":1.7320508075688772},"301":{"tf":3.605551275463989},"303":{"tf":1.4142135623730951},"305":{"tf":2.23606797749979},"306":{"tf":2.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"482":{"tf":3.7416573867739413},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.0},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.449489742783178},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":133,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":3.0},"165":{"tf":2.23606797749979},"166":{"tf":3.1622776601683795},"167":{"tf":2.6457513110645907},"169":{"tf":3.605551275463989},"170":{"tf":3.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":57,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"482":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.0},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":3.872983346207417},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.23606797749979},"398":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":2.23606797749979},"418":{"tf":2.449489742783178},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":2,"docs":{"10":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":14,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":3.3166247903554},"217":{"tf":2.449489742783178},"218":{"tf":2.6457513110645907},"219":{"tf":2.6457513110645907},"220":{"tf":2.6457513110645907},"221":{"tf":4.47213595499958},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":2.8284271247461903},"381":{"tf":2.6457513110645907},"382":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"508":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.8284271247461903},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":15,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":9,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"204":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.0},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":8.602325267042627},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":5,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":4,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":12,"docs":{"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"382":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.7320508075688772},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":1.7320508075688772},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":45,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"201":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.6457513110645907},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":1.7320508075688772},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":6.855654600401044},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979},"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":7,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"226":{"tf":2.449489742783178},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"236":{"tf":1.0},"482":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":4.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"369":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{"483":{"tf":1.0}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"297":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":111,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.23606797749979},"111":{"tf":2.449489742783178},"112":{"tf":2.449489742783178},"113":{"tf":2.6457513110645907},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":2.0},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":3.1622776601683795},"471":{"tf":3.605551275463989},"472":{"tf":3.0},"475":{"tf":3.4641016151377544},"476":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":2.0},"482":{"tf":3.4641016151377544},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"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":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":5.291502622129181}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.0},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":25,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.1622776601683795},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.23606797749979},"67":{"tf":4.0},"68":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}},"i":{"df":13,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"274":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"361":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":2,"docs":{"112":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0},"482":{"tf":1.7320508075688772}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.449489742783178},"439":{"tf":2.23606797749979},"440":{"tf":1.7320508075688772},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"482":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":54,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":1.7320508075688772},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.23606797749979},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":1,"docs":{"482":{"tf":1.0}}}}}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":2.449489742783178},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":2.449489742783178},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"431":{"tf":1.0},"482":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.23606797749979}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"289":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"482":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":4.795831523312719},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.6457513110645907},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":46,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":38,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.6457513110645907},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":7,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":8,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.23606797749979},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"423":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":1,"docs":{"482":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"<":{"df":0,"docs":{},"u":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.0},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":2.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":44,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":3.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.23606797749979},"141":{"tf":2.8284271247461903},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.1622776601683795},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":3.3166247903554},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.6457513110645907},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.123105625617661},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":1.7320508075688772},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":11,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.242640687119285},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":36,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"482":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":4.47213595499958},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.23606797749979},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"<":{"df":1,"docs":{"482":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":98,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.0},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"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":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":24,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.0},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}},"q":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"236":{"tf":1.7320508075688772},"482":{"tf":2.6457513110645907}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":144,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":2.0},"235":{"tf":1.0},"236":{"tf":2.0},"239":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.4641016151377544},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.1622776601683795},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"445":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.605551275463989},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"482":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"310":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":2.23606797749979},"459":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":3.1622776601683795},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"112":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.0},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":15,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"408":{"tf":1.0},"438":{"tf":3.0},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":37,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"482":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":3.872983346207417},"156":{"tf":3.4641016151377544},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":2.0},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.6457513110645907},"356":{"tf":2.8284271247461903},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":1.7320508075688772},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"482":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.0},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.0},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.449489742783178},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.1622776601683795},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0},"88":{"tf":3.3166247903554},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.0},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"q":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":1.7320508075688772},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.0},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"240":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.4142135623730951},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.605551275463989},"118":{"tf":2.0},"119":{"tf":2.8284271247461903},"120":{"tf":2.23606797749979},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":20,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":38,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.23606797749979},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":2.23606797749979},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.7320508075688772},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.449489742783178},"277":{"tf":3.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":122,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":2.0},"415":{"tf":3.3166247903554},"416":{"tf":2.8284271247461903},"418":{"tf":3.3166247903554},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":21,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"150":{"tf":2.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.0},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":31,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"152":{"tf":2.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.0},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":51,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.0},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":18,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":27,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"a":{"df":1,"docs":{"482":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"457":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":19,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"482":{"tf":3.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"482":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":6,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":2.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"482":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":154,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":3.3166247903554},"213":{"tf":1.0},"214":{"tf":2.6457513110645907},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.1622776601683795},"434":{"tf":1.7320508075688772},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.656854249492381},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.4641016151377544},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"317":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"437":{"tf":2.6457513110645907},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"482":{"tf":2.449489742783178}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"459":{"tf":1.0},"482":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"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":{"<":{"b":{"df":1,"docs":{"482":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":3.1622776601683795},"125":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":3.605551275463989},"131":{"tf":2.8284271247461903},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.4142135623730951},"487":{"tf":3.605551275463989},"488":{"tf":1.4142135623730951},"489":{"tf":4.69041575982343},"490":{"tf":2.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":2.8284271247461903},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":80,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"482":{"tf":5.196152422706632},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":114,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":2.0},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":2.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":3.4641016151377544},"95":{"tf":6.164414002968976},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":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":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"482":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.0},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.0},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.23606797749979},"274":{"tf":2.23606797749979},"275":{"tf":2.0},"276":{"tf":2.8284271247461903},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.6457513110645907},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":80,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.449489742783178},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":5,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":123,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"5":{"tf":2.0},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":1.7320508075688772},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"17":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":162,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.7320508075688772},"169":{"tf":3.872983346207417},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"d":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":54,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.7320508075688772},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"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":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"y":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":5.477225575051661},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":65,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"247":{"tf":2.449489742783178},"248":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":2.23606797749979},"252":{"tf":1.4142135623730951},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":3.1622776601683795},"257":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":3.4641016151377544},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":39,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"386":{"tf":2.23606797749979},"387":{"tf":2.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"402":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772},"409":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":46,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":160,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":3.0},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":1.0},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":3.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"274":{"tf":4.242640687119285},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":3.1622776601683795},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.3166247903554},"84":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":2.8284271247461903},"88":{"tf":2.0},"89":{"tf":3.7416573867739413},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"<":{"df":0,"docs":{},"u":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":113,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"351":{"tf":1.0},"40":{"tf":1.4142135623730951},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":3.1622776601683795},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":22,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"482":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":175,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":4.0},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":2.0},"36":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"447":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"482":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":89,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":35,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"482":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"119":{"tf":1.0},"145":{"tf":1.4142135623730951},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"482":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"{":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"475":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.7320508075688772},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.7320508075688772},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":4.58257569495584},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":2.6457513110645907},"261":{"tf":3.1622776601683795},"262":{"tf":1.4142135623730951},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"504":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":4.358898943540674},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.0},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"482":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.0},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.8284271247461903},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":30,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":25,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"482":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":35,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.6457513110645907},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":17,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":3.872983346207417},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":25,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.0},"205":{"tf":3.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"209":{"tf":2.449489742783178},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.6457513110645907},"213":{"tf":1.0},"214":{"tf":3.1622776601683795},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":2.6457513110645907},"412":{"tf":1.4142135623730951},"413":{"tf":2.8284271247461903},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":3.605551275463989},"418":{"tf":1.4142135623730951},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.0}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.23606797749979},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.0},"506":{"tf":2.0},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":118,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":3.7416573867739413},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.23606797749979},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"363":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"135":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":1.0},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"&":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":171,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.3166247903554},"310":{"tf":3.872983346207417},"312":{"tf":1.0},"313":{"tf":5.477225575051661},"319":{"tf":2.8284271247461903},"32":{"tf":2.23606797749979},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"390":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.0},"397":{"tf":2.6457513110645907},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.23606797749979},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":5.0},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":2,"docs":{"482":{"tf":1.7320508075688772},"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0},"482":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":2.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":54,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":4.795831523312719},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":11,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":247,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":2.8284271247461903},"222":{"tf":1.0},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":101,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.23606797749979},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.0},"485":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":2.0},"492":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":5,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}}}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.449489742783178},"49":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":6.48074069840786},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.449489742783178},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":71,"docs":{"105":{"tf":2.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":2.6457513110645907},"188":{"tf":3.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":3.4641016151377544},"193":{"tf":3.7416573867739413},"194":{"tf":4.47213595499958},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":2.6457513110645907},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":3.1622776601683795},"432":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":6,"docs":{"171":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"!":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":5,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":2.8284271247461903},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"195":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":2,"docs":{"294":{"tf":1.0},"482":{"tf":1.0}}}},"0":{"0":{"1":{"df":13,"docs":{"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},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"2":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":10,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":10,"docs":{"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},"130":{"tf":1.0},"131":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":10,"docs":{"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},"140":{"tf":1.0},"95":{"tf":1.0}}},"6":{"df":5,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":11,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":9,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"95":{"tf":1.0}}},"9":{"df":9,"docs":{"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},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"2":{"df":14,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":15,"docs":{"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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.0},"233":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":20,"docs":{"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},"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},"95":{"tf":1.0}}},"9":{"df":5,"docs":{"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":19,"docs":{"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},"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},"280":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":7,"docs":{"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":16,"docs":{"287":{"tf":1.0},"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},"300":{"tf":1.0},"301":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":16,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":6,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":11,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"7":{"df":17,"docs":{"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},"95":{"tf":1.0}}},"8":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"9":{"df":7,"docs":{"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":36,"docs":{"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},"408":{"tf":1.0},"409":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":10,"docs":{"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},"418":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":17,"docs":{"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":14,"docs":{"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},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":12,"docs":{"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"482":{"tf":1.0},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.7320508075688772},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":19,"docs":{"346":{"tf":2.449489742783178},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"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},"426":{"tf":1.0},"482":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.7320508075688772}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":18,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":2.449489742783178},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"c":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":44,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":40,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"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},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":2.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"415":{"tf":1.4142135623730951},"430":{"tf":1.0},"465":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"504":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":2.0},"505":{"tf":1.4142135623730951},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"264":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":10,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"331":{"tf":2.0},"350":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":2.0},"368":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.7320508075688772},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":9,"docs":{"69":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":87,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.6457513110645907},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":2.23606797749979}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":4.358898943540674}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"\"":{"4":{"5":{"6":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"2":{"df":1,"docs":{"482":{"tf":1.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":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{".":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":11,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"482":{"tf":2.449489742783178},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.4142135623730951}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":29,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.7416573867739413},"67":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":11,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"482":{"tf":2.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"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":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"169":{"tf":3.7416573867739413},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.23606797749979},"504":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}}},"df":20,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.4142135623730951},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":35,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.23606797749979},"14":{"tf":3.4641016151377544},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":2.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.7320508075688772},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.7320508075688772},"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},"482":{"tf":1.0},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":38,"docs":{"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},"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.4142135623730951},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":3.872983346207417},"499":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":12,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"482":{"tf":1.7320508075688772},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":7,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"482":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":66,"docs":{"1":{"tf":1.0},"104":{"tf":2.0},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":111,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.6457513110645907},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":2.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":2.23606797749979},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.0},"303":{"tf":2.0},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.6457513110645907},"311":{"tf":2.23606797749979},"312":{"tf":2.8284271247461903},"313":{"tf":4.358898943540674},"314":{"tf":2.6457513110645907},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":3.0},"336":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.449489742783178},"397":{"tf":2.23606797749979},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.8284271247461903},"364":{"tf":2.0},"365":{"tf":1.0},"366":{"tf":3.3166247903554},"367":{"tf":2.6457513110645907},"368":{"tf":4.242640687119285},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":2.23606797749979},"199":{"tf":4.58257569495584},"200":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":81,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.7320508075688772},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":14,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.4142135623730951},"482":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"251":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.0},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":1.0},"432":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.449489742783178}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":4.0},"223":{"tf":2.0},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":7.681145747868608},"227":{"tf":4.358898943540674},"228":{"tf":5.477225575051661},"229":{"tf":3.3166247903554},"230":{"tf":2.23606797749979},"231":{"tf":4.58257569495584},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":15,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.358898943540674},"490":{"tf":2.23606797749979},"491":{"tf":3.872983346207417},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.6457513110645907},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":157,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.605551275463989},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.7320508075688772},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":2.23606797749979},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":2.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.449489742783178},"434":{"tf":2.6457513110645907},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.7320508075688772},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":3.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":2.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.0},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":32,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":2.0},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}}}},"t":{"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.449489742783178},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.8284271247461903},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.4142135623730951},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.4142135623730951},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":2.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":93,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.23606797749979},"458":{"tf":4.242640687119285},"460":{"tf":3.0},"482":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.8284271247461903},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.449489742783178},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.7320508075688772},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.4142135623730951},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":34,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":4.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":2.23606797749979},"331":{"tf":2.0},"419":{"tf":2.8284271247461903},"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"425":{"tf":1.7320508075688772},"426":{"tf":2.6457513110645907},"427":{"tf":2.449489742783178},"428":{"tf":3.4641016151377544},"429":{"tf":1.7320508075688772},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":2.449489742783178},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"21":{"tf":1.7320508075688772},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":2.0},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":2.6457513110645907},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":2,"docs":{"482":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":2.23606797749979},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"301":{"tf":2.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":2.0},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.4142135623730951},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.7320508075688772},"412":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"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":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"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":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"351":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"345":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"482":{"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":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.0},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":140,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.6457513110645907},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.8284271247461903},"153":{"tf":2.8284271247461903},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.6457513110645907},"187":{"tf":1.0},"188":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":4.123105625617661},"195":{"tf":1.7320508075688772},"196":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.449489742783178},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":2.8284271247461903},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":18,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":94,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.8284271247461903},"364":{"tf":1.4142135623730951},"368":{"tf":2.6457513110645907},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":39,"docs":{"0":{"tf":1.0},"100":{"tf":2.449489742783178},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":2.0},"368":{"tf":2.8284271247461903},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"410":{"tf":2.449489742783178},"411":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":3.4641016151377544},"415":{"tf":3.7416573867739413},"416":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":4.123105625617661},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.8284271247461903},"238":{"tf":2.23606797749979},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":80,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":2.23606797749979},"241":{"tf":2.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.449489742783178},"396":{"tf":2.449489742783178},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.449489742783178},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.23606797749979},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"240":{"tf":1.0},"248":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.4142135623730951},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":2,"docs":{"261":{"tf":1.0},"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":71,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.242640687119285},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.1622776601683795},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.23606797749979},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":73,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":25,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.6457513110645907},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":2.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"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":2.23606797749979},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":2.0},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":53,"docs":{"0":{"tf":2.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.4142135623730951},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.4142135623730951},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.23606797749979},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":15,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.8284271247461903},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.4142135623730951},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"482":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":38,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":10,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"482":{"tf":1.0},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.4142135623730951},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"482":{"tf":2.0},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.449489742783178},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"'":{"/":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"482":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":37,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":3.0},"347":{"tf":3.0},"348":{"tf":1.0},"349":{"tf":3.605551275463989},"350":{"tf":5.0},"351":{"tf":4.69041575982343},"352":{"tf":3.0},"353":{"tf":2.449489742783178},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":3.0},"358":{"tf":1.0},"359":{"tf":3.1622776601683795},"360":{"tf":1.0},"361":{"tf":3.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.7416573867739413},"44":{"tf":3.872983346207417},"459":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":3.4641016151377544},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.7320508075688772},"313":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.7320508075688772},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"41":{"tf":2.0},"482":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":126,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":2.449489742783178},"261":{"tf":4.898979485566356},"262":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":3.0},"280":{"tf":1.0},"287":{"tf":3.872983346207417},"288":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":3.3166247903554},"291":{"tf":3.3166247903554},"292":{"tf":1.0},"293":{"tf":3.1622776601683795},"294":{"tf":2.8284271247461903},"295":{"tf":3.872983346207417},"296":{"tf":3.1622776601683795},"297":{"tf":4.898979485566356},"298":{"tf":3.3166247903554},"299":{"tf":3.0},"300":{"tf":2.0},"301":{"tf":3.872983346207417},"303":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"306":{"tf":2.23606797749979},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"482":{"tf":3.7416573867739413},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":33,"docs":{"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":2.0},"260":{"tf":1.7320508075688772},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":24,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.7320508075688772},"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},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":134,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.3166247903554},"164":{"tf":3.1622776601683795},"165":{"tf":2.6457513110645907},"166":{"tf":3.3166247903554},"167":{"tf":2.8284271247461903},"168":{"tf":1.0},"169":{"tf":3.7416573867739413},"170":{"tf":3.1622776601683795},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.4142135623730951},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":64,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"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.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"482":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":3.872983346207417},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.449489742783178},"398":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":2.6457513110645907},"415":{"tf":2.449489742783178},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":14,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":3.605551275463989},"217":{"tf":2.8284271247461903},"218":{"tf":2.8284271247461903},"219":{"tf":3.1622776601683795},"220":{"tf":3.0},"221":{"tf":4.69041575982343},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":3.0},"381":{"tf":2.8284271247461903},"382":{"tf":2.8284271247461903},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":2.23606797749979},"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.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":3.0},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":19,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":22,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"204":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":10,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":8.602325267042627},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":2.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":5,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":4,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":16,"docs":{"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"(":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.449489742783178},"382":{"tf":2.0},"383":{"tf":1.7320508075688772},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":2.0},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.0},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.6457513110645907},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":2.6457513110645907},"93":{"tf":3.7416573867739413},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":45,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"247":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":2.0},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":6.855654600401044},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979},"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":7,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"226":{"tf":2.449489742783178},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"236":{"tf":1.0},"482":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"a":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":4.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":4,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{"483":{"tf":1.0}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"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":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"297":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":125,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":2.23606797749979},"470":{"tf":3.3166247903554},"471":{"tf":3.7416573867739413},"472":{"tf":3.1622776601683795},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":3.7416573867739413},"476":{"tf":2.0},"477":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":3.605551275463989},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"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":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":5.291502622129181}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.23606797749979},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.4641016151377544},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":4.123105625617661},"68":{"tf":3.4641016151377544}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.4142135623730951}},"i":{"df":13,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"274":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"361":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":2,"docs":{"112":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0},"482":{"tf":1.7320508075688772}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":2.0},"324":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.6457513110645907},"439":{"tf":2.449489742783178},"440":{"tf":2.0},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"478":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":2.23606797749979},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":50,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.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},"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},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"482":{"tf":1.0}},"l":{"df":0,"docs":{},"u":{"d":{"df":54,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":2.0},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"12":{"tf":1.0},"185":{"tf":1.7320508075688772},"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},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":2.0},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.449489742783178},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":1,"docs":{"482":{"tf":1.0}}}}}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":2.449489742783178},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":2.6457513110645907},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"431":{"tf":1.0},"482":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.449489742783178}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"289":{"tf":1.4142135623730951},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":30,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"482":{"tf":1.0},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"482":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":11,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":2.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":2.0},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":4.795831523312719},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":2.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.6457513110645907},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":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":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":2.0},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":42,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.8284271247461903},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.6457513110645907},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":2.0},"248":{"tf":3.0},"249":{"tf":2.23606797749979},"250":{"tf":2.0},"251":{"tf":2.6457513110645907},"252":{"tf":2.8284271247461903},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":17,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":8,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.449489742783178},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":2,"docs":{"423":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":1,"docs":{"325":{"tf":1.0}},"h":{"df":1,"docs":{"482":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"<":{"df":0,"docs":{},"u":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"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":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":29,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.23606797749979},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":2.0},"465":{"tf":1.0},"466":{"tf":1.0},"482":{"tf":2.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":44,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":3.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":3.1622776601683795},"142":{"tf":2.23606797749979},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.4641016151377544},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":1.0},"251":{"tf":3.4641016151377544},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.8284271247461903},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.242640687119285},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.23606797749979},"75":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":2.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":11,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907},"482":{"tf":1.7320508075688772}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":2.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.358898943540674},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":49,"docs":{"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.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.7320508075688772},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"482":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"44":{"tf":1.0},"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":4.47213595499958},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":2.0},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":2.0},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.449489742783178},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"<":{"df":1,"docs":{"482":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":108,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"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":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":24,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"482":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":62,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.0},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":2.0},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.4142135623730951},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":25,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"c":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}},"q":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"236":{"tf":1.7320508075688772},"482":{"tf":2.6457513110645907}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.7320508075688772},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":146,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":2.0},"212":{"tf":1.4142135623730951},"22":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.605551275463989},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.3166247903554},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.449489742783178},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"482":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"402":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"310":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":2.6457513110645907},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":2.6457513110645907},"458":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":3.4641016151377544},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":16,"docs":{"112":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"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":2.0},"345":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.4142135623730951},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":15,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"397":{"tf":1.7320508075688772},"408":{"tf":1.0},"438":{"tf":3.1622776601683795},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":2.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":37,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"482":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":4.0},"156":{"tf":3.605551275463989},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":2.6457513110645907}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.449489742783178},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.8284271247461903},"356":{"tf":3.0},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"(":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":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":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"482":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.7320508075688772},"331":{"tf":1.0},"335":{"tf":1.7320508075688772},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.23606797749979},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.6457513110645907},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.3166247903554},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.8284271247461903},"86":{"tf":1.0},"88":{"tf":3.4641016151377544},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":2.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"q":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":2.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":20,"docs":{"101":{"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},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.4142135623730951},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":21,"docs":{"240":{"tf":1.7320508075688772},"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},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.4142135623730951},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":3.7416573867739413},"118":{"tf":2.23606797749979},"119":{"tf":2.8284271247461903},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":20,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.4142135623730951},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.23606797749979},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":42,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.449489742783178},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"279":{"tf":2.0},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":2.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.6457513110645907},"277":{"tf":3.1622776601683795},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":124,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":2.23606797749979},"415":{"tf":3.4641016151377544},"416":{"tf":3.0},"417":{"tf":1.0},"418":{"tf":3.4641016151377544},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.4641016151377544}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":6.244997998398398},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":24,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.449489742783178},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"152":{"tf":2.6457513110645907},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.7320508075688772},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.4142135623730951},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"482":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.6457513110645907},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.4142135623730951},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":33,"docs":{"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":28,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":51,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":18,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":27,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":12,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"482":{"tf":1.0}}}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"\"":{"a":{"df":1,"docs":{"482":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"457":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"b":{"a":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"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":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":19,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"482":{"tf":3.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"482":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":6,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":2.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"482":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":159,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":3.4641016151377544},"213":{"tf":1.0},"214":{"tf":2.8284271247461903},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.8284271247461903},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.4641016151377544},"434":{"tf":2.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.656854249492381},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.605551275463989},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":13,"docs":{"317":{"tf":1.7320508075688772},"318":{"tf":3.1622776601683795},"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":3.0},"439":{"tf":2.0},"440":{"tf":2.0},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":2.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"122":{"tf":1.0},"482":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"458":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.23606797749979},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.4641016151377544},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"482":{"tf":2.449489742783178}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"459":{"tf":1.0},"482":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"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":{"<":{"b":{"df":1,"docs":{"482":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.6457513110645907},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":3.3166247903554},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":3.7416573867739413},"131":{"tf":3.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.449489742783178},"486":{"tf":1.7320508075688772},"487":{"tf":3.872983346207417},"488":{"tf":1.7320508075688772},"489":{"tf":4.795831523312719},"490":{"tf":2.23606797749979},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":3.0},"494":{"tf":2.0},"495":{"tf":2.0},"496":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":80,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"482":{"tf":5.196152422706632},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":404,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"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},"259":{"tf":2.23606797749979},"260":{"tf":2.23606797749979},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.8284271247461903},"303":{"tf":1.7320508075688772},"304":{"tf":2.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":2.23606797749979},"322":{"tf":2.23606797749979},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":2.23606797749979},"333":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"370":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"378":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":2.23606797749979},"411":{"tf":1.4142135623730951},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"433":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.23606797749979},"465":{"tf":2.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"473":{"tf":2.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":2.6457513110645907},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":2.23606797749979},"483":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"94":{"tf":3.7416573867739413},"95":{"tf":6.324555320336759},"96":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":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":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"482":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.23606797749979},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.23606797749979},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.6457513110645907},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":2.23606797749979},"275":{"tf":2.23606797749979},"276":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":2.8284271247461903},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":85,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.6457513110645907},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.6457513110645907},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":5,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":131,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":2.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},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.0},"169":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"5":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":2.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":2.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.4142135623730951}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":10,"docs":{"17":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":182,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"169":{"tf":4.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"d":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"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":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":54,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":2.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"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":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"y":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":1,"docs":{"482":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"d":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0},"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":5.477225575051661},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":65,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.449489742783178},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"240":{"tf":2.8284271247461903},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":1.4142135623730951},"247":{"tf":2.6457513110645907},"248":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.7320508075688772},"255":{"tf":2.8284271247461903},"256":{"tf":3.4641016151377544},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.7320508075688772},"67":{"tf":1.0},"81":{"tf":3.605551275463989},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.7320508075688772}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":52,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":2.8284271247461903},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":2.23606797749979},"396":{"tf":2.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":2.8284271247461903},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":2.23606797749979},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":62,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":2.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951},"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},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":175,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.4142135623730951},"141":{"tf":3.3166247903554},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":4.358898943540674},"275":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":3.4641016151377544},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":3.1622776601683795},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.605551275463989},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":2.23606797749979},"89":{"tf":3.872983346207417},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"<":{"df":0,"docs":{},"u":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":113,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":2.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.449489742783178},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.23606797749979},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":44,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":22,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"482":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":2.0},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":196,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.605551275463989},"153":{"tf":4.242640687119285},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":3.1622776601683795},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.449489742783178},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"44":{"tf":1.0},"449":{"tf":2.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"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.7320508075688772},"459":{"tf":1.7320508075688772},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"0":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"482":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"289":{"tf":1.0},"298":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":90,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":35,"docs":{"100":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"482":{"tf":1.0},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{">":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},">":{">":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":2.0},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"482":{"tf":1.0},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"482":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"{":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{")":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"475":{"tf":1.0},"482":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.7320508075688772},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":4.58257569495584},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":2.23606797749979},"260":{"tf":2.8284271247461903},"261":{"tf":3.3166247903554},"262":{"tf":1.7320508075688772},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":2.0},"502":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"482":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.4641016151377544},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":4.358898943540674},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":115,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.1622776601683795},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":2.449489742783178},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"482":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.4142135623730951},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"482":{"tf":1.0}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.8284271247461903},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":30,"docs":{"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"482":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":25,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"482":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.4142135623730951},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"5":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":35,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.6457513110645907},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":17,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.4142135623730951},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":4.0},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":30,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.6457513110645907},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"214":{"tf":3.4641016151377544},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":2.8284271247461903},"412":{"tf":1.7320508075688772},"413":{"tf":3.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":3.7416573867739413},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.449489742783178},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.23606797749979},"506":{"tf":2.23606797749979},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":119,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":4.0},"323":{"tf":2.0},"324":{"tf":2.6457513110645907},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":2.0},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.449489742783178},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":2.0},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.6457513110645907},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"470":{"tf":1.0},"482":{"tf":2.0},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"135":{"tf":1.0},"15":{"tf":2.0},"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.4142135623730951},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"482":{"tf":1.4142135623730951},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.0},"482":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":8,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"\\":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"&":{"'":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"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":{"<":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":176,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.4641016151377544},"310":{"tf":4.0},"312":{"tf":1.0},"313":{"tf":5.5677643628300215},"319":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.6457513110645907},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"386":{"tf":1.4142135623730951},"390":{"tf":2.449489742783178},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":2.8284271247461903},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":5.0},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":2,"docs":{"482":{"tf":1.7320508075688772},"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":3.0},"41":{"tf":2.0},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.7320508075688772},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":7,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0},"482":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":2.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":54,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":2.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":4.795831523312719},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":14,"docs":{"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.449489742783178},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"482":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":249,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":2.449489742783178},"221":{"tf":3.0},"222":{"tf":1.4142135623730951},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":2.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":5.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":107,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.449489742783178},"468":{"tf":1.0},"472":{"tf":1.7320508075688772},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"485":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":5,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"8":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}}}},"df":1,"docs":{"482":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"0":{"2":{"df":0,"docs":{},"x":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":2.449489742783178},"49":{"tf":1.4142135623730951},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":6.48074069840786},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.6457513110645907},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":3,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":77,"docs":{"105":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":3.3166247903554},"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":3.7416573867739413},"193":{"tf":4.0},"194":{"tf":4.69041575982343},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":3.0},"285":{"tf":3.1622776601683795},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":5,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0},"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.6457513110645907},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":1.7320508075688772},"425":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":2.449489742783178},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":3.3166247903554},"432":{"tf":2.449489742783178},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":7,"docs":{"171":{"tf":2.6457513110645907},"172":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":2.449489742783178},"175":{"tf":2.449489742783178},"176":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"!":{"\"":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"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":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":2.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":5,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"482":{"tf":1.0}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":62,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":2.0},"509":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":3.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"title":{"root":{"1":{".":{"0":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":1,"docs":{"191":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"346":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"197":{"tf":1.0},"311":{"tf":1.0}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"433":{"tf":1.0},"447":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"261":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":5,"docs":{"448":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0}},"j":{"a":{"c":{"df":1,"docs":{"394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"312":{"tf":1.0},"398":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}},"n":{"df":14,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"447":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"174":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"302":{"tf":1.0},"474":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":1,"docs":{"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"288":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"412":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":11,"docs":{"127":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"357":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"96":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"df":3,"docs":{"367":{"tf":1.0},"448":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"123":{"tf":1.0},"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"382":{"tf":1.0}}},"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":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"419":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"382":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"271":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"390":{"tf":1.4142135623730951},"397":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"362":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"215":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"378":{"tf":1.0},"408":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}}}}},"df":2,"docs":{"368":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"436":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"200":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"502":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"150":{"tf":1.0},"165":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"485":{"tf":1.0}},"i":{"df":4,"docs":{"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"110":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"291":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"433":{"tf":1.0},"453":{"tf":1.0},"477":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"134":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"301":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"425":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"8":{"tf":1.0},"91":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"287":{"tf":1.0},"45":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"305":{"tf":1.0},"405":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"368":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"399":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":11,"docs":{"125":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"437":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"287":{"tf":1.0},"299":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"497":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"306":{"tf":1.0},"56":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"459":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"339":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"312":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"410":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"240":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"387":{"tf":1.0}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"248":{"tf":1.0},"498":{"tf":1.0}}}}},"df":1,"docs":{"381":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"208":{"tf":1.0},"221":{"tf":1.4142135623730951},"353":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"489":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"281":{"tf":1.0},"284":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"325":{"tf":1.0},"375":{"tf":1.0},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.4142135623730951}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"158":{"tf":1.0},"403":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}},"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":3,"docs":{"32":{"tf":1.0},"388":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"507":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"380":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"502":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.0},"42":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"259":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"437":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"259":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"400":{"tf":1.0},"474":{"tf":1.0}}}},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.0},"255":{"tf":1.0},"314":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0}}}}}}}},"f":{".":{"a":{".":{"df":0,"docs":{},"q":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"498":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"401":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}},"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"398":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"310":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"483":{"tf":1.0},"9":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.0},"477":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"o":{"df":2,"docs":{"17":{"tf":1.0},"311":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"244":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"304":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.0},"317":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":15,"docs":{"108":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"479":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"75":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"294":{"tf":1.0},"506":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"433":{"tf":1.0},"437":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"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":35,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"397":{"tf":1.0},"415":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"263":{"tf":1.0},"433":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"298":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"20":{"tf":1.0},"398":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"441":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"393":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"401":{"tf":1.0},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"467":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"502":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"153":{"tf":1.0},"382":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"257":{"tf":1.0},"458":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"324":{"tf":1.0},"326":{"tf":1.0},"504":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"240":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"498":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"237":{"tf":1.0},"437":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":2,"docs":{"37":{"tf":1.0},"458":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"272":{"tf":1.0},"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"400":{"tf":1.0},"448":{"tf":1.0},"487":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"454":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"285":{"tf":1.0},"494":{"tf":1.0},"99":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"121":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"14":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"390":{"tf":1.0}}},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"29":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"219":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"295":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":16,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":10,"docs":{"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"397":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"275":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"312":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"418":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"296":{"tf":1.0},"334":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"307":{"tf":1.0},"410":{"tf":1.0}},"e":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"330":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"310":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"219":{"tf":1.0},"498":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"237":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}},"df":15,"docs":{"14":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"255":{"tf":1.0},"325":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"475":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"317":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"133":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":2,"docs":{"353":{"tf":1.0},"494":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"406":{"tf":1.0},"440":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"437":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"301":{"tf":1.0}}}}}}},"f":{"c":{"df":56,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"61":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"252":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}}}}},"s":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"288":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"284":{"tf":1.0},"358":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"306":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"3":{"df":1,"docs":{"504":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"382":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":14,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"362":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"500":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"240":{"tf":1.0},"256":{"tf":1.0},"404":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"397":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"375":{"tf":1.0},"381":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"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":1,"docs":{"69":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"302":{"tf":1.0},"453":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"126":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"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":{"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"4":{"df":2,"docs":{"230":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"505":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"395":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":19,"docs":{"11":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"449":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.0},"372":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}}},"v":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"169":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"208":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"197":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"458":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"448":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"329":{"tf":1.0},"368":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"443":{"tf":1.0},"447":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"155":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"223":{"tf":1.0},"283":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"184":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"410":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"110":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":14,"docs":{"243":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"397":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"504":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"329":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"271":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"13":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"504":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"392":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":9,"docs":{"108":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"378":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"398":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"59":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"257":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":1.0},"148":{"tf":1.0},"483":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"250":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":1.0},"498":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["overview.html#design-overview","overview.html#acknowledgments","overview.html#external-api-overview","overview.html#internals","overview.html#code-generation","tenets.html#rust-sdk-design-tenets","tenets.html#details-justifications-and-ramifications","tenets.html#batteries-included-but-replaceable","tenets.html#make-common-problems-easy-to-solve","tenets.html#design-for-the-future","faq.html#design-faq","faq.html#what-is-smithy","faq.html#why-is-there-one-crate-per-service","faq.html#why-dont-the-sdk-service-crates-implement-serdeserialize-or-serdedeserialize-for-any-types","faq.html#i-want-to-add-new-request-building-behavior-should-i-add-that-functionality-to-the-make_operation-codegen-or-write-a-request-altering-middleware","transport/overview.html#transport","transport/overview.html#where-we-are-today","transport/overview.html#where-we-want-to-go","transport/operation.html#http-based-operations","transport/operation.html#operation-phases","transport/operation.html#input-construction","transport/operation.html#operation-construction","transport/operation.html#operation-dispatch-and-middleware","transport/operation.html#operation-parsing-and-response-loading","transport/middleware.html#http-middleware","transport/connector.html","smithy/overview.html#smithy","smithy/overview.html#internals","smithy/simple_shapes.html#simple-shapes","smithy/simple_shapes.html#big-numbers","smithy/simple_shapes.html#timestamps","smithy/simple_shapes.html#strings","smithy/simple_shapes.html#document-types","smithy/recursive_shapes.html#recursive-shapes","smithy/aggregate_shapes.html#aggregate-shapes","smithy/aggregate_shapes.html#list","smithy/aggregate_shapes.html#set","smithy/aggregate_shapes.html#map","smithy/aggregate_shapes.html#structure","smithy/aggregate_shapes.html#example-structure-output","smithy/aggregate_shapes.html#union","smithy/aggregate_shapes.html#generated-union-example","smithy/endpoint.html#endpoint-resolution","smithy/endpoint.html#requirements","smithy/endpoint.html#design","smithy/backwards-compat.html#backwards-compatibility","smithy/backwards-compat.html#new-operation-added","smithy/backwards-compat.html#new-member-added-to-structure","smithy/backwards-compat.html#summary","smithy/backwards-compat.html#validation--required-members","smithy/backwards-compat.html#new-union-variant-added","client/overview.html#smithy-client","client/orchestrator.html#what-is-the-orchestrator","client/orchestrator.html#how-is-an-orchestrator-configured","client/orchestrator.html#what-does-the-orchestrator-do","client/orchestrator.html#how-is-the-orchestrator-implemented-in-rust","client/orchestrator.html#avoiding-generics-at-all-costs","client/orchestrator.html#the-actual-code","client/orchestrator.html#frequently-asked-questions","client/orchestrator.html#why-cant-users-create-and-use-their-own-runtime-plugins","client/orchestrator.html#why-does-the-orchestrator-exist","client/orchestrator.html#why-does-this-document-exist-when-theres-already-an-orchestrator-rfc","client/identity_and_auth.html#identity-and-auth-in-clients","client/identity_and_auth.html#terminology","client/identity_and_auth.html#overview-of-smithy-client-auth","client/identity_and_auth.html#the-configuration-stage","client/identity_and_auth.html#the-execution-stage","client/identity_and_auth.html#how-this-looks-in-rust","client/identity_and_auth.html#challenges-with-this-identity-design","server/overview.html#smithy-server","server/middleware.html#middleware","server/middleware.html#introduction-to-tower","server/middleware.html#applying-middleware","server/middleware.html#a-outer-middleware","server/middleware.html#b-route-middleware","server/middleware.html#c-operation-specific-http-middleware","server/middleware.html#d-operation-specific-model-middleware","server/middleware.html#plugin-system","server/instrumentation.html#instrumentation","server/instrumentation.html#spans-over-the-requestresponse-lifecycle","server/instrumentation.html#example","server/instrumentation.html#interactions-with-sensitivity","server/from_parts.html#accessing-un-modelled-data","server/anatomy.html#the-anatomy-of-a-service","server/anatomy.html#operations","server/anatomy.html#serialization-and-deserialization","server/anatomy.html#upgrading-a-model-service","server/anatomy.html#routers","server/anatomy.html#plugins","server/anatomy.html#builders","server/anatomy.html#accessing-unmodelled-data","server/code_generation.html#generating-common-service-code","server/code_generation.html#folder-structure","server/code_generation.html#generating-code","rfcs/overview.html#rfcs","rfcs/overview.html#previously-submitted-rfcs","rfcs/rfc0001_shared_config.html#aws-configuration-rfc","rfcs/rfc0001_shared_config.html#usage-guide","rfcs/rfc0001_shared_config.html#getting-started","rfcs/rfc0001_shared_config.html#sharing-configuration-between-multiple-services","rfcs/rfc0001_shared_config.html#specifying-a-custom-credential-provider","rfcs/rfc0001_shared_config.html#proposed-design","rfcs/rfc0001_shared_config.html#shared-config-implementation","rfcs/rfc0001_shared_config.html#sleep--connectors","rfcs/rfc0001_shared_config.html#the-build-method-on-config","rfcs/rfc0001_shared_config.html#stability-and-versioning","rfcs/rfc0001_shared_config.html#changes-checklist","rfcs/rfc0001_shared_config.html#open-issues","rfcs/rfc0002_http_versions.html#rfc-supporting-multiple-http-versions-for-sdks-that-use-event-stream","rfcs/rfc0002_http_versions.html#terminology","rfcs/rfc0002_http_versions.html#how-clients-work-today","rfcs/rfc0002_http_versions.html#solving-the-connector-creation-problem","rfcs/rfc0002_http_versions.html#solving-the-connector-selection-problem","rfcs/rfc0002_http_versions.html#changes-checklist","rfcs/rfc0003_presigning_api.html#rfc-api-for-presigned-urls","rfcs/rfc0003_presigning_api.html#terminology","rfcs/rfc0003_presigning_api.html#presigned-url-config","rfcs/rfc0003_presigning_api.html#fluent-presigned-url-api","rfcs/rfc0003_presigning_api.html#input-presigned-url-api","rfcs/rfc0003_presigning_api.html#behind-the-scenes","rfcs/rfc0003_presigning_api.html#modeling-presigning","rfcs/rfc0003_presigning_api.html#avoiding-name-collision","rfcs/rfc0003_presigning_api.html#changes-checklist","rfcs/rfc0004_retry_behavior.html#rfc-retry-behavior","rfcs/rfc0004_retry_behavior.html#terminology","rfcs/rfc0004_retry_behavior.html#configuring-the-maximum-number-of-retries","rfcs/rfc0004_retry_behavior.html#setting-an-environment-variable","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-an-aws-shared-config","rfcs/rfc0004_retry_behavior.html#calling-a-method-on-service-specific-config","rfcs/rfc0004_retry_behavior.html#disabling-retries","rfcs/rfc0004_retry_behavior.html#behind-the-scenes","rfcs/rfc0004_retry_behavior.html#changes-checklist","rfcs/rfc0005_service_generation.html#rfc-smithy-rust-service-framework","rfcs/rfc0005_service_generation.html#requirements","rfcs/rfc0005_service_generation.html#smithy-model-driven-code-generation","rfcs/rfc0005_service_generation.html#performance","rfcs/rfc0005_service_generation.html#extensibility","rfcs/rfc0005_service_generation.html#observability","rfcs/rfc0005_service_generation.html#client-generation","rfcs/rfc0005_service_generation.html#benchmarking","rfcs/rfc0005_service_generation.html#model-validation","rfcs/rfc0006_service_specific_middleware.html#rfc-service-specific-middleware","rfcs/rfc0006_service_specific_middleware.html#terminology","rfcs/rfc0006_service_specific_middleware.html#detailed-design","rfcs/rfc0006_service_specific_middleware.html#changes-checklist","rfcs/rfc0007_split_release_process.html#rfc-split-release-process","rfcs/rfc0007_split_release_process.html#terminology","rfcs/rfc0007_split_release_process.html#requirements","rfcs/rfc0007_split_release_process.html#background-how-publishing-worked-before","rfcs/rfc0007_split_release_process.html#proposed-solution","rfcs/rfc0007_split_release_process.html#avoiding-mistakes-by-disallowing-creation-of-publish-ready-bundles-outside-of-ci","rfcs/rfc0007_split_release_process.html#alternatives-considered","rfcs/rfc0007_split_release_process.html#publish-smithy-runtime-crates-from-smithy-rs-build-artifacts","rfcs/rfc0007_split_release_process.html#keep-smithy-runtime-crates-in-smithy-rs","rfcs/rfc0007_split_release_process.html#changes-checklist","rfcs/rfc0008_paginators.html#summary","rfcs/rfc0008_paginators.html#details","rfcs/rfc0008_paginators.html#updates-to-ergonomic-clients","rfcs/rfc0008_paginators.html#discussion-areas","rfcs/rfc0008_paginators.html#on-sendawait","rfcs/rfc0008_paginators.html#on-tokio_streamstream","rfcs/rfc0008_paginators.html#on-generics","rfcs/rfc0008_paginators.html#changes-checklist","rfcs/rfc0009_example_consolidation.html#rfc-examples-consolidation","rfcs/rfc0009_example_consolidation.html#requirements","rfcs/rfc0009_example_consolidation.html#example-ci-in-smithy-rs","rfcs/rfc0009_example_consolidation.html#auto-sync-to-aws-sdk-rust-from-smithy-rs-changes","rfcs/rfc0009_example_consolidation.html#process-risks","rfcs/rfc0009_example_consolidation.html#alternatives","rfcs/rfc0009_example_consolidation.html#aws-sdk-rust-as-the-source-of-truth","rfcs/rfc0009_example_consolidation.html#changes-checklist","rfcs/rfc0010_waiters.html#rfc-waiters","rfcs/rfc0010_waiters.html#terminology","rfcs/rfc0010_waiters.html#requirements","rfcs/rfc0010_waiters.html#waiter-api","rfcs/rfc0010_waiters.html#waiter-implementation","rfcs/rfc0010_waiters.html#changes-checklist","rfcs/rfc0011_crates_io_alpha_publishing.html#rfc-publishing-the-alpha-sdk-to-cratesio","rfcs/rfc0011_crates_io_alpha_publishing.html#terminology","rfcs/rfc0011_crates_io_alpha_publishing.html#requirements","rfcs/rfc0011_crates_io_alpha_publishing.html#versioning","rfcs/rfc0011_crates_io_alpha_publishing.html#yanking","rfcs/rfc0011_crates_io_alpha_publishing.html#concrete-scenarios","rfcs/rfc0011_crates_io_alpha_publishing.html#proposal","rfcs/rfc0011_crates_io_alpha_publishing.html#short-term-changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#rfc-independent-crate-versioning","rfcs/rfc0012_independent_crate_versioning.html#terminology","rfcs/rfc0012_independent_crate_versioning.html#requirements","rfcs/rfc0012_independent_crate_versioning.html#versioning","rfcs/rfc0012_independent_crate_versioning.html#release-identification","rfcs/rfc0012_independent_crate_versioning.html#yanking","rfcs/rfc0012_independent_crate_versioning.html#phase-1-dev-preview","rfcs/rfc0012_independent_crate_versioning.html#version-tracking","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-code-generated-sdk-service-crates","rfcs/rfc0012_independent_crate_versioning.html#versioning-for-runtime-crates","rfcs/rfc0012_independent_crate_versioning.html#yanking-1","rfcs/rfc0012_independent_crate_versioning.html#changes-checklist","rfcs/rfc0012_independent_crate_versioning.html#phase-2-stability-and-1x","rfcs/rfc0013_body_callback_apis.html#rfc-callback-apis-for-bytestream-and-sdkbody","rfcs/rfc0013_body_callback_apis.html#the-implementation","rfcs/rfc0013_body_callback_apis.html#implementing-checksums","rfcs/rfc0014_timeout_config.html#rfc-fine-grained-timeout-configuration","rfcs/rfc0014_timeout_config.html#terminology","rfcs/rfc0014_timeout_config.html#general-terms","rfcs/rfc0014_timeout_config.html#http-stack-terms","rfcs/rfc0014_timeout_config.html#timeout-terms","rfcs/rfc0014_timeout_config.html#configuring-timeouts","rfcs/rfc0014_timeout_config.html#configuration-options","rfcs/rfc0014_timeout_config.html#sdk-specific-defaults-set-by-aws-service-teams","rfcs/rfc0014_timeout_config.html#prior-art","rfcs/rfc0014_timeout_config.html#behind-the-scenes","rfcs/rfc0014_timeout_config.html#middlewares-for-aws-client-requests","rfcs/rfc0014_timeout_config.html#middlewares-for-smithy-client-requests","rfcs/rfc0014_timeout_config.html#changes-checklist","rfcs/rfc0014_timeout_config.html#implementing-http-request-timeouts","rfcs/rfc0015_using_features_responsibly.html#rfc-how-cargo-features-should-be-used-in-the-sdk-and-runtime-crates","rfcs/rfc0015_using_features_responsibly.html#some-background-on-features","rfcs/rfc0015_using_features_responsibly.html#features-should-be-additive","rfcs/rfc0015_using_features_responsibly.html#what-does-this-mean-for-the-sdk","rfcs/rfc0015_using_features_responsibly.html#avoid-writing-code-that-relies-on-only-activating-one-feature-from-a-set-of-mutually-exclusive-features","rfcs/rfc0015_using_features_responsibly.html#we-should-avoid-using-cfgnotfeature--some-feature","rfcs/rfc0015_using_features_responsibly.html#dont-default-to-defining-default-features","rfcs/rfc0015_using_features_responsibly.html#further-reading","rfcs/rfc0016_flexible_checksum_support.html#rfc-supporting-flexible-checksums","rfcs/rfc0016_flexible_checksum_support.html#what-is-the-flexible-checksums-feature","rfcs/rfc0016_flexible_checksum_support.html#implementing-checksums","rfcs/rfc0016_flexible_checksum_support.html#refactoring-aws-smithy-checksums","rfcs/rfc0016_flexible_checksum_support.html#checksumbody","rfcs/rfc0016_flexible_checksum_support.html#checksumvalidatedbody","rfcs/rfc0016_flexible_checksum_support.html#awschunkedbody-and-awschunkedbodyoptions","rfcs/rfc0016_flexible_checksum_support.html#sigv4-update","rfcs/rfc0016_flexible_checksum_support.html#inlineables","rfcs/rfc0016_flexible_checksum_support.html#codegen","rfcs/rfc0016_flexible_checksum_support.html#implementation-checklist","rfcs/rfc0017_customizable_client_operations.html#rfc-customizable-client-operations","rfcs/rfc0017_customizable_client_operations.html#terminology","rfcs/rfc0017_customizable_client_operations.html#proposal","rfcs/rfc0017_customizable_client_operations.html#why-not-remove-async-from-customize-to-make-this-more-ergonomic","rfcs/rfc0017_customizable_client_operations.html#why-the-name-customize","rfcs/rfc0017_customizable_client_operations.html#changes-checklist","rfcs/rfc0018_logging_sensitive.html#rfc-logging-in-the-presence-of-sensitive-data","rfcs/rfc0018_logging_sensitive.html#terminology","rfcs/rfc0018_logging_sensitive.html#background","rfcs/rfc0018_logging_sensitive.html#http-binding-traits","rfcs/rfc0018_logging_sensitive.html#scope-and-guidelines","rfcs/rfc0018_logging_sensitive.html#routing","rfcs/rfc0018_logging_sensitive.html#runtime-crates","rfcs/rfc0018_logging_sensitive.html#proposal","rfcs/rfc0018_logging_sensitive.html#debug-logging","rfcs/rfc0018_logging_sensitive.html#code-generated-logging-middleware","rfcs/rfc0018_logging_sensitive.html#http-debugdisplay-wrappers","rfcs/rfc0018_logging_sensitive.html#middleware-position","rfcs/rfc0018_logging_sensitive.html#logging-within-the-router","rfcs/rfc0018_logging_sensitive.html#developer-guideline","rfcs/rfc0018_logging_sensitive.html#alternative-proposals","rfcs/rfc0018_logging_sensitive.html#use-request-extensions","rfcs/rfc0018_logging_sensitive.html#accommodate-the-sensitivity-in-middleware-api","rfcs/rfc0018_logging_sensitive.html#redact-values-using-a-tracing-layer","rfcs/rfc0018_logging_sensitive.html#changes-checklist","rfcs/rfc0019_event_streams_errors.html#rfc-errors-for-event-streams","rfcs/rfc0019_event_streams_errors.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0019_event_streams_errors.html#how-to-actually-implement-this-rfc","rfcs/rfc0019_event_streams_errors.html#changes-checklist","rfcs/rfc0020_service_builder.html#rfc-service-builder-improvements","rfcs/rfc0020_service_builder.html#terminology","rfcs/rfc0020_service_builder.html#background","rfcs/rfc0020_service_builder.html#handlers","rfcs/rfc0020_service_builder.html#builder","rfcs/rfc0020_service_builder.html#router","rfcs/rfc0020_service_builder.html#comparison-to-axum","rfcs/rfc0020_service_builder.html#proposal","rfcs/rfc0020_service_builder.html#remove-two-step-build-procedure","rfcs/rfc0020_service_builder.html#statically-check-for-missing-handlers","rfcs/rfc0020_service_builder.html#switch-from-for-router-to-an-operationregistrybuild-method","rfcs/rfc0020_service_builder.html#operations-as-middleware-constructors","rfcs/rfc0020_service_builder.html#service-parameterized-routers","rfcs/rfc0020_service_builder.html#protocol-specific-routers","rfcs/rfc0020_service_builder.html#protocol-specific-errors","rfcs/rfc0020_service_builder.html#type-erasure-with-the-name-of-the-smithy-service","rfcs/rfc0020_service_builder.html#combined-proposal","rfcs/rfc0020_service_builder.html#changes-checklist","rfcs/rfc0021_dependency_versions.html#rfc-dependency-versions","rfcs/rfc0021_dependency_versions.html#categorization-of-crates","rfcs/rfc0021_dependency_versions.html#support-crates-for-applications","rfcs/rfc0021_dependency_versions.html#dependency-version-rules","rfcs/rfc0021_dependency_versions.html#what-is-a-minimum-secure-version-when-there-are-multiple-major-versions","rfcs/rfc0021_dependency_versions.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#rfc-error-context-and-compatibility","rfcs/rfc0022_error_context_and_compatibility.html#past-approaches-in-smithy-rs","rfcs/rfc0022_error_context_and_compatibility.html#case-study-invalidfullurierror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-profileparseerror","rfcs/rfc0022_error_context_and_compatibility.html#case-study-code-generated-client-errors","rfcs/rfc0022_error_context_and_compatibility.html#approaches-from-other-projects","rfcs/rfc0022_error_context_and_compatibility.html#stdioerror","rfcs/rfc0022_error_context_and_compatibility.html#hyper-10","rfcs/rfc0022_error_context_and_compatibility.html#opaque-error-sources","rfcs/rfc0022_error_context_and_compatibility.html#error-proposal","rfcs/rfc0022_error_context_and_compatibility.html#actionable-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#informative-error-pattern","rfcs/rfc0022_error_context_and_compatibility.html#displaying-full-error-context","rfcs/rfc0022_error_context_and_compatibility.html#changes-checklist","rfcs/rfc0022_error_context_and_compatibility.html#error-code-review-checklist","rfcs/rfc0023_refine_builder.html#rfc-evolving-the-new-service-builder-api","rfcs/rfc0023_refine_builder.html#overview","rfcs/rfc0023_refine_builder.html#handling-missing-operations","rfcs/rfc0023_refine_builder.html#compiler-errors-cannot-be-tuned","rfcs/rfc0023_refine_builder.html#the-cost-of-a-runtime-error","rfcs/rfc0023_refine_builder.html#providing-clear-feedback","rfcs/rfc0023_refine_builder.html#simplifying-pokemonservicebuilders-signature","rfcs/rfc0023_refine_builder.html#branching---incompatible-types","rfcs/rfc0023_refine_builder.html#refactoring-into-smaller-functions---prepare-for-some-type-juggling","rfcs/rfc0023_refine_builder.html#cut-them-down-going-from-2n1-to-2-generic-parameters","rfcs/rfc0023_refine_builder.html#alternatives-allow-new-plugins-to-be-registered-after-builder-creation","rfcs/rfc0023_refine_builder.html#alternatives-lazy-and-eager-on-demand-type-erasure","rfcs/rfc0023_refine_builder.html#builder-extensions-what-now","rfcs/rfc0023_refine_builder.html#playing-around-with-the-design","rfcs/rfc0023_refine_builder.html#changes-checklist","rfcs/rfc0024_request_id.html#rfc-requestid-in-business-logic-handlers","rfcs/rfc0024_request_id.html#terminology","rfcs/rfc0024_request_id.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0024_request_id.html#changes-checklist","rfcs/rfc0024_request_id.html#changes-since-the-rfc-has-been-approved","rfcs/rfc0025_constraint_traits.html#rfc-constraint-traits","rfcs/rfc0025_constraint_traits.html#implementation","rfcs/rfc0025_constraint_traits.html#example-implementation-for-the-length-trait","rfcs/rfc0025_constraint_traits.html#request-deserialization","rfcs/rfc0025_constraint_traits.html#length-trait","rfcs/rfc0025_constraint_traits.html#pattern-trait","rfcs/rfc0025_constraint_traits.html#uniqueitems-trait","rfcs/rfc0025_constraint_traits.html#trait-precedence-and-naming-of-the-tuple-struct","rfcs/rfc0025_constraint_traits.html#unresolved-questions","rfcs/rfc0025_constraint_traits.html#alternative-design","rfcs/rfc0026_client_crate_organization.html#rfc-client-crate-organization","rfcs/rfc0026_client_crate_organization.html#previous-organization","rfcs/rfc0026_client_crate_organization.html#proposed-changes","rfcs/rfc0026_client_crate_organization.html#establish-a-pattern-for-builder-organization","rfcs/rfc0026_client_crate_organization.html#organize-code-generated-types-by-operation","rfcs/rfc0026_client_crate_organization.html#reorganize-the-crate-root","rfcs/rfc0026_client_crate_organization.html#conditionally-remove-builder-from-crateclient","rfcs/rfc0026_client_crate_organization.html#create-a-primitives-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-types-module","rfcs/rfc0026_client_crate_organization.html#repurpose-the-original-crateerror-module","rfcs/rfc0026_client_crate_organization.html#flatten-the-presigning-module","rfcs/rfc0026_client_crate_organization.html#remove-the-empty-modules","rfcs/rfc0026_client_crate_organization.html#new-organization","rfcs/rfc0026_client_crate_organization.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#rfc-endpoints-20","rfcs/rfc0027_endpoints_20.html#terminology","rfcs/rfc0027_endpoints_20.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0027_endpoints_20.html#overview","rfcs/rfc0027_endpoints_20.html#overriding-endpoints","rfcs/rfc0027_endpoints_20.html#new-endpoint-traits","rfcs/rfc0027_endpoints_20.html#endpoint-params","rfcs/rfc0027_endpoints_20.html#the-default-endpoint-resolver","rfcs/rfc0027_endpoints_20.html#how-to-actually-implement-this-rfc","rfcs/rfc0027_endpoints_20.html#code-generating-client-context-params","rfcs/rfc0027_endpoints_20.html#creating-params","rfcs/rfc0027_endpoints_20.html#converting-a-smithy-endpoint-to-an-aws-endpoint","rfcs/rfc0027_endpoints_20.html#implementing-the-rules-engine","rfcs/rfc0027_endpoints_20.html#changes-checklist","rfcs/rfc0027_endpoints_20.html#alternative-designs","rfcs/rfc0027_endpoints_20.html#context-aware-endpoint-traits","rfcs/rfc0028_sdk_credential_cache_type_safety.html#rfc-sdk-credential-cache-type-safety","rfcs/rfc0028_sdk_credential_cache_type_safety.html#credentialscache-and-configloadercredentials_cache","rfcs/rfc0028_sdk_credential_cache_type_safety.html#changes-checklist","rfcs/rfc0028_sdk_credential_cache_type_safety.html#appendix-alternatives-considered","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-a-providecachedcredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-b-cachecredentials-trait","rfcs/rfc0028_sdk_credential_cache_type_safety.html#alternative-c-credentialscache-struct-with-composition","rfcs/rfc0029_new_home_for_cred_types.html#rfc-finding-new-home-for-credential-types","rfcs/rfc0029_new_home_for_cred_types.html#assumptions","rfcs/rfc0029_new_home_for_cred_types.html#problems","rfcs/rfc0029_new_home_for_cred_types.html#proposed-solution","rfcs/rfc0029_new_home_for_cred_types.html#rejected-alternative","rfcs/rfc0029_new_home_for_cred_types.html#changes-checklist","rfcs/rfc0030_serialization_and_deserialization.html#rfc-serialization-and-deserialization","rfcs/rfc0030_serialization_and_deserialization.html#terminology","rfcs/rfc0030_serialization_and_deserialization.html#overview","rfcs/rfc0030_serialization_and_deserialization.html#use-case","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#enabling-feature","rfcs/rfc0030_serialization_and_deserialization.html#feature-gate-for-serialization-and-de-serialization","rfcs/rfc0030_serialization_and_deserialization.html#keeping-both-features-behind-the-same-feature-gate","rfcs/rfc0030_serialization_and_deserialization.html#different-feature-gates-for-different-data-types","rfcs/rfc0030_serialization_and_deserialization.html#implementation","rfcs/rfc0030_serialization_and_deserialization.html#smithy-types","rfcs/rfc0030_serialization_and_deserialization.html#blob","rfcs/rfc0030_serialization_and_deserialization.html#datetime","rfcs/rfc0030_serialization_and_deserialization.html#document","rfcs/rfc0030_serialization_and_deserialization.html#number","rfcs/rfc0030_serialization_and_deserialization.html#builder-types-and-non-builder-types","rfcs/rfc0030_serialization_and_deserialization.html#enum-representation","rfcs/rfc0030_serialization_and_deserialization.html#untagged","rfcs/rfc0030_serialization_and_deserialization.html#internal","rfcs/rfc0030_serialization_and_deserialization.html#external-and-adjacent","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-skip-serializationdeserialization","rfcs/rfc0030_serialization_and_deserialization.html#data-types-to-exclude-from-serde-code-generation","rfcs/rfc0030_serialization_and_deserialization.html#serde-traits-implemented-on-builder-of-output-types","rfcs/rfc0030_serialization_and_deserialization.html#fn-set_fields-to-allow-users-to-use-externally-created-input","rfcs/rfc0030_serialization_and_deserialization.html#other-concerns","rfcs/rfc0030_serialization_and_deserialization.html#model-evolution","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-fields","rfcs/rfc0030_serialization_and_deserialization.html#introduction-of-new-data-type","rfcs/rfc0030_serialization_and_deserialization.html#discussions","rfcs/rfc0030_serialization_and_deserialization.html#sensitive-information","rfcs/rfc0030_serialization_and_deserialization.html#compile-time","rfcs/rfc0030_serialization_and_deserialization.html#misleading-results","rfcs/rfc0030_serialization_and_deserialization.html#appendix","rfcs/rfc0030_serialization_and_deserialization.html#use-case-examples","rfcs/rfc0030_serialization_and_deserialization.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#rfc-providing-fallback-credentials-on-external-timeout","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#terminology","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#assumption","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#problem","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#proposal","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#how-to-actually-implement-this-rfc","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#alternative","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#changes-checklist","rfcs/rfc0031_providing_fallback_credentials_on_timeout.html#possible-enhancement","rfcs/rfc0032_better_constraint_violations.html#rfc-better-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#terminology","rfcs/rfc0032_better_constraint_violations.html#impossible-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background","rfcs/rfc0032_better_constraint_violations.html#problem","rfcs/rfc0032_better_constraint_violations.html#solution-proposal","rfcs/rfc0032_better_constraint_violations.html#collecting-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#background-1","rfcs/rfc0032_better_constraint_violations.html#problem-1","rfcs/rfc0032_better_constraint_violations.html#solution-proposal-1","rfcs/rfc0032_better_constraint_violations.html#tightness-of-constraint-violations","rfcs/rfc0032_better_constraint_violations.html#problem-2","rfcs/rfc0032_better_constraint_violations.html#final-solution-proposal","rfcs/rfc0032_better_constraint_violations.html#checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#rfc-improving-access-to-request-ids-in-sdk-clients","rfcs/rfc0033_improve_sdk_request_id_access.html#terminology","rfcs/rfc0033_improve_sdk_request_id_access.html#sdksmithy-purity","rfcs/rfc0033_improve_sdk_request_id_access.html#proposed-changes","rfcs/rfc0033_improve_sdk_request_id_access.html#make-request-id-retrieval-on-errors-consistent","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-outputs","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-operation-and-operationresponse","rfcs/rfc0033_improve_sdk_request_id_access.html#implement-requestid-for-result","rfcs/rfc0033_improve_sdk_request_id_access.html#example-interactions","rfcs/rfc0033_improve_sdk_request_id_access.html#generic-handling-case","rfcs/rfc0033_improve_sdk_request_id_access.html#success-case","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-sdkerror","rfcs/rfc0033_improve_sdk_request_id_access.html#error-case-with-operation-error","rfcs/rfc0033_improve_sdk_request_id_access.html#changes-checklist","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-a-alternate-solution-for-access-on-successful-responses","rfcs/rfc0033_improve_sdk_request_id_access.html#appendix-b-adding-requestid-as-a-string-to-outputs-via-model-transform","rfcs/rfc0034_smithy_orchestrator.html#smithy-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#tldr","rfcs/rfc0034_smithy_orchestrator.html#terminology","rfcs/rfc0034_smithy_orchestrator.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0034_smithy_orchestrator.html#service-clients-and-operations-are-configured-with-runtime-plugins","rfcs/rfc0034_smithy_orchestrator.html#requests-and-responses-are-modified-by-interceptors","rfcs/rfc0034_smithy_orchestrator.html#interceptor-context","rfcs/rfc0034_smithy_orchestrator.html#how-to-implement-this-rfc","rfcs/rfc0034_smithy_orchestrator.html#integrating-with-the-orchestrator","rfcs/rfc0034_smithy_orchestrator.html#layered-configuration-stored-in-type-maps","rfcs/rfc0034_smithy_orchestrator.html#the-aws-smithy-orchestrator-crate","rfcs/rfc0034_smithy_orchestrator.html#faq","rfcs/rfc0034_smithy_orchestrator.html#changes-checklist","rfcs/rfc0035_collection_defaults.html#rfc-collection-defaults","rfcs/rfc0035_collection_defaults.html#terminology","rfcs/rfc0035_collection_defaults.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0035_collection_defaults.html#how-to-actually-implement-this-rfc","rfcs/rfc0035_collection_defaults.html#could-this-be-implemented-for-hashmap","rfcs/rfc0035_collection_defaults.html#isnt-this-handled-by-the-default-trait","rfcs/rfc0035_collection_defaults.html#changes-checklist","rfcs/rfc0036_http_dep_elimination.html#rfc-eliminating-public-http-dependencies","rfcs/rfc0036_http_dep_elimination.html#terminology","rfcs/rfc0036_http_dep_elimination.html#why-is-this-important","rfcs/rfc0036_http_dep_elimination.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0036_http_dep_elimination.html#how-to-actually-implement-this-rfc","rfcs/rfc0036_http_dep_elimination.html#enabling-api-evolution","rfcs/rfc0036_http_dep_elimination.html#http-request-wrapper","rfcs/rfc0036_http_dep_elimination.html#removing-the-sigv4-http-dependency","rfcs/rfc0036_http_dep_elimination.html#removing-the-http-dependency-from-generated-clients","rfcs/rfc0036_http_dep_elimination.html#changes-checklist","rfcs/rfc0037_http_wrapper.html#rfc-the-http-wrapper-type","rfcs/rfc0037_http_wrapper.html#terminology","rfcs/rfc0037_http_wrapper.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0037_http_wrapper.html#how-to-actually-implement-this-rfc","rfcs/rfc0037_http_wrapper.html#future-work","rfcs/rfc0037_http_wrapper.html#changes-checklist","rfcs/rfc0038_retry_classifier_customization.html#rfc-user-configurable-retry-classification","rfcs/rfc0038_retry_classifier_customization.html#terminology","rfcs/rfc0038_retry_classifier_customization.html#how-the-orchestrator-should-model-retries","rfcs/rfc0038_retry_classifier_customization.html#the-user-experience-if-this-rfc-is-implemented","rfcs/rfc0038_retry_classifier_customization.html#defining-a-custom-classifier","rfcs/rfc0038_retry_classifier_customization.html#setting-classifiers","rfcs/rfc0038_retry_classifier_customization.html#default-classifiers","rfcs/rfc0038_retry_classifier_customization.html#how-to-actually-implement-this-rfc","rfcs/rfc0038_retry_classifier_customization.html#the-retryclassifier-trait","rfcs/rfc0038_retry_classifier_customization.html#resolving-the-correct-order-of-multiple-retry-classifiers","rfcs/rfc0038_retry_classifier_customization.html#questions-and-answers","rfcs/rfc0038_retry_classifier_customization.html#changes-checklist","contributing/overview.html#contributing","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#writing-and-debugging-a-low-level-feature-that-relies-on-http","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#background","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#how-the-sdk-sends-requests-with-a-streaming-body","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-issues-i-encountered-while-implementing-checksums-for-streaming-request-bodies","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#s3-requires-a-content-length-unless-you-also-set-transfer-encoding-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#adding-trailers-to-a-request-changes-the-size-of-that-request","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#hyper-supports-http-request-trailers-but-isnt-compatible-with-content-encoding-aws-chunked","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#the-stream-is-closing-early-and-i-dont-know-why","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#what-helped-me-to-understand-the-problems-and-their-solutions","contributing/writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.html#"],"index":{"documentStore":{"docInfo":{"0":{"body":42,"breadcrumbs":4,"title":2},"1":{"body":18,"breadcrumbs":3,"title":1},"10":{"body":0,"breadcrumbs":4,"title":2},"100":{"body":74,"breadcrumbs":12,"title":4},"101":{"body":126,"breadcrumbs":10,"title":2},"102":{"body":53,"breadcrumbs":11,"title":3},"103":{"body":40,"breadcrumbs":10,"title":2},"104":{"body":27,"breadcrumbs":11,"title":3},"105":{"body":107,"breadcrumbs":10,"title":2},"106":{"body":67,"breadcrumbs":10,"title":2},"107":{"body":10,"breadcrumbs":10,"title":2},"108":{"body":82,"breadcrumbs":20,"title":9},"109":{"body":81,"breadcrumbs":12,"title":1},"11":{"body":24,"breadcrumbs":3,"title":1},"110":{"body":165,"breadcrumbs":14,"title":3},"111":{"body":134,"breadcrumbs":15,"title":4},"112":{"body":315,"breadcrumbs":15,"title":4},"113":{"body":79,"breadcrumbs":13,"title":2},"114":{"body":40,"breadcrumbs":11,"title":4},"115":{"body":49,"breadcrumbs":8,"title":1},"116":{"body":159,"breadcrumbs":10,"title":3},"117":{"body":151,"breadcrumbs":11,"title":4},"118":{"body":53,"breadcrumbs":11,"title":4},"119":{"body":240,"breadcrumbs":9,"title":2},"12":{"body":80,"breadcrumbs":6,"title":4},"120":{"body":36,"breadcrumbs":9,"title":2},"121":{"body":22,"breadcrumbs":10,"title":3},"122":{"body":59,"breadcrumbs":9,"title":2},"123":{"body":45,"breadcrumbs":8,"title":3},"124":{"body":154,"breadcrumbs":6,"title":1},"125":{"body":57,"breadcrumbs":9,"title":4},"126":{"body":42,"breadcrumbs":8,"title":3},"127":{"body":37,"breadcrumbs":10,"title":5},"128":{"body":40,"breadcrumbs":10,"title":5},"129":{"body":70,"breadcrumbs":7,"title":2},"13":{"body":96,"breadcrumbs":10,"title":8},"130":{"body":182,"breadcrumbs":7,"title":2},"131":{"body":157,"breadcrumbs":7,"title":2},"132":{"body":33,"breadcrumbs":12,"title":5},"133":{"body":0,"breadcrumbs":8,"title":1},"134":{"body":15,"breadcrumbs":12,"title":5},"135":{"body":109,"breadcrumbs":8,"title":1},"136":{"body":24,"breadcrumbs":8,"title":1},"137":{"body":34,"breadcrumbs":8,"title":1},"138":{"body":6,"breadcrumbs":9,"title":2},"139":{"body":13,"breadcrumbs":8,"title":1},"14":{"body":97,"breadcrumbs":16,"title":14},"140":{"body":9,"breadcrumbs":9,"title":2},"141":{"body":91,"breadcrumbs":10,"title":4},"142":{"body":112,"breadcrumbs":7,"title":1},"143":{"body":64,"breadcrumbs":8,"title":2},"144":{"body":49,"breadcrumbs":8,"title":2},"145":{"body":68,"breadcrumbs":10,"title":4},"146":{"body":80,"breadcrumbs":7,"title":1},"147":{"body":79,"breadcrumbs":7,"title":1},"148":{"body":69,"breadcrumbs":10,"title":4},"149":{"body":142,"breadcrumbs":8,"title":2},"15":{"body":13,"breadcrumbs":2,"title":1},"150":{"body":44,"breadcrumbs":15,"title":9},"151":{"body":0,"breadcrumbs":8,"title":2},"152":{"body":137,"breadcrumbs":14,"title":8},"153":{"body":179,"breadcrumbs":12,"title":6},"154":{"body":69,"breadcrumbs":8,"title":2},"155":{"body":131,"breadcrumbs":5,"title":1},"156":{"body":321,"breadcrumbs":5,"title":1},"157":{"body":29,"breadcrumbs":7,"title":3},"158":{"body":0,"breadcrumbs":6,"title":2},"159":{"body":19,"breadcrumbs":5,"title":1},"16":{"body":24,"breadcrumbs":2,"title":1},"160":{"body":18,"breadcrumbs":5,"title":1},"161":{"body":29,"breadcrumbs":5,"title":1},"162":{"body":33,"breadcrumbs":6,"title":2},"163":{"body":73,"breadcrumbs":8,"title":3},"164":{"body":58,"breadcrumbs":6,"title":1},"165":{"body":46,"breadcrumbs":9,"title":4},"166":{"body":85,"breadcrumbs":13,"title":8},"167":{"body":87,"breadcrumbs":7,"title":2},"168":{"body":0,"breadcrumbs":6,"title":1},"169":{"body":144,"breadcrumbs":10,"title":5},"17":{"body":55,"breadcrumbs":3,"title":2},"170":{"body":48,"breadcrumbs":7,"title":2},"171":{"body":118,"breadcrumbs":6,"title":2},"172":{"body":81,"breadcrumbs":5,"title":1},"173":{"body":55,"breadcrumbs":5,"title":1},"174":{"body":73,"breadcrumbs":6,"title":2},"175":{"body":169,"breadcrumbs":6,"title":2},"176":{"body":34,"breadcrumbs":6,"title":2},"177":{"body":41,"breadcrumbs":11,"title":5},"178":{"body":42,"breadcrumbs":7,"title":1},"179":{"body":0,"breadcrumbs":7,"title":1},"18":{"body":45,"breadcrumbs":6,"title":3},"180":{"body":117,"breadcrumbs":7,"title":1},"181":{"body":50,"breadcrumbs":7,"title":1},"182":{"body":73,"breadcrumbs":8,"title":2},"183":{"body":229,"breadcrumbs":7,"title":1},"184":{"body":35,"breadcrumbs":10,"title":4},"185":{"body":68,"breadcrumbs":10,"title":4},"186":{"body":42,"breadcrumbs":7,"title":1},"187":{"body":0,"breadcrumbs":7,"title":1},"188":{"body":138,"breadcrumbs":7,"title":1},"189":{"body":27,"breadcrumbs":8,"title":2},"19":{"body":10,"breadcrumbs":5,"title":2},"190":{"body":20,"breadcrumbs":7,"title":1},"191":{"body":32,"breadcrumbs":10,"title":4},"192":{"body":104,"breadcrumbs":8,"title":2},"193":{"body":163,"breadcrumbs":12,"title":6},"194":{"body":268,"breadcrumbs":9,"title":3},"195":{"body":40,"breadcrumbs":7,"title":1},"196":{"body":69,"breadcrumbs":8,"title":2},"197":{"body":34,"breadcrumbs":10,"title":4},"198":{"body":18,"breadcrumbs":11,"title":5},"199":{"body":547,"breadcrumbs":7,"title":1},"2":{"body":88,"breadcrumbs":5,"title":3},"20":{"body":66,"breadcrumbs":5,"title":2},"200":{"body":198,"breadcrumbs":8,"title":2},"201":{"body":38,"breadcrumbs":12,"title":5},"202":{"body":9,"breadcrumbs":8,"title":1},"203":{"body":99,"breadcrumbs":9,"title":2},"204":{"body":220,"breadcrumbs":10,"title":3},"205":{"body":128,"breadcrumbs":9,"title":2},"206":{"body":40,"breadcrumbs":9,"title":2},"207":{"body":56,"breadcrumbs":9,"title":2},"208":{"body":5,"breadcrumbs":14,"title":7},"209":{"body":33,"breadcrumbs":9,"title":2},"21":{"body":53,"breadcrumbs":5,"title":2},"210":{"body":36,"breadcrumbs":9,"title":2},"211":{"body":49,"breadcrumbs":11,"title":4},"212":{"body":321,"breadcrumbs":11,"title":4},"213":{"body":18,"breadcrumbs":9,"title":2},"214":{"body":88,"breadcrumbs":11,"title":4},"215":{"body":2,"breadcrumbs":16,"title":7},"216":{"body":75,"breadcrumbs":11,"title":2},"217":{"body":36,"breadcrumbs":11,"title":2},"218":{"body":66,"breadcrumbs":11,"title":2},"219":{"body":162,"breadcrumbs":20,"title":11},"22":{"body":59,"breadcrumbs":6,"title":3},"220":{"body":76,"breadcrumbs":13,"title":4},"221":{"body":209,"breadcrumbs":14,"title":5},"222":{"body":47,"breadcrumbs":11,"title":2},"223":{"body":21,"breadcrumbs":10,"title":4},"224":{"body":32,"breadcrumbs":9,"title":3},"225":{"body":19,"breadcrumbs":8,"title":2},"226":{"body":1039,"breadcrumbs":10,"title":4},"227":{"body":385,"breadcrumbs":7,"title":1},"228":{"body":320,"breadcrumbs":7,"title":1},"229":{"body":944,"breadcrumbs":8,"title":2},"23":{"body":6,"breadcrumbs":7,"title":4},"230":{"body":167,"breadcrumbs":8,"title":2},"231":{"body":232,"breadcrumbs":7,"title":1},"232":{"body":44,"breadcrumbs":7,"title":1},"233":{"body":24,"breadcrumbs":8,"title":2},"234":{"body":85,"breadcrumbs":10,"title":4},"235":{"body":29,"breadcrumbs":7,"title":1},"236":{"body":202,"breadcrumbs":7,"title":1},"237":{"body":50,"breadcrumbs":12,"title":6},"238":{"body":46,"breadcrumbs":8,"title":2},"239":{"body":35,"breadcrumbs":8,"title":2},"24":{"body":61,"breadcrumbs":5,"title":2},"240":{"body":89,"breadcrumbs":12,"title":5},"241":{"body":71,"breadcrumbs":8,"title":1},"242":{"body":0,"breadcrumbs":8,"title":1},"243":{"body":47,"breadcrumbs":10,"title":3},"244":{"body":91,"breadcrumbs":9,"title":2},"245":{"body":73,"breadcrumbs":8,"title":1},"246":{"body":32,"breadcrumbs":9,"title":2},"247":{"body":54,"breadcrumbs":8,"title":1},"248":{"body":80,"breadcrumbs":9,"title":2},"249":{"body":158,"breadcrumbs":11,"title":4},"25":{"body":43,"breadcrumbs":3,"title":1},"250":{"body":59,"breadcrumbs":10,"title":3},"251":{"body":106,"breadcrumbs":9,"title":2},"252":{"body":54,"breadcrumbs":10,"title":3},"253":{"body":48,"breadcrumbs":9,"title":2},"254":{"body":42,"breadcrumbs":9,"title":2},"255":{"body":128,"breadcrumbs":10,"title":3},"256":{"body":90,"breadcrumbs":11,"title":4},"257":{"body":105,"breadcrumbs":12,"title":5},"258":{"body":39,"breadcrumbs":9,"title":2},"259":{"body":21,"breadcrumbs":10,"title":4},"26":{"body":51,"breadcrumbs":2,"title":1},"260":{"body":65,"breadcrumbs":10,"title":4},"261":{"body":265,"breadcrumbs":9,"title":3},"262":{"body":20,"breadcrumbs":8,"title":2},"263":{"body":51,"breadcrumbs":10,"title":4},"264":{"body":75,"breadcrumbs":7,"title":1},"265":{"body":112,"breadcrumbs":7,"title":1},"266":{"body":246,"breadcrumbs":7,"title":1},"267":{"body":156,"breadcrumbs":7,"title":1},"268":{"body":124,"breadcrumbs":7,"title":1},"269":{"body":380,"breadcrumbs":8,"title":2},"27":{"body":133,"breadcrumbs":2,"title":1},"270":{"body":53,"breadcrumbs":7,"title":1},"271":{"body":23,"breadcrumbs":11,"title":5},"272":{"body":119,"breadcrumbs":10,"title":4},"273":{"body":48,"breadcrumbs":11,"title":5},"274":{"body":717,"breadcrumbs":9,"title":3},"275":{"body":56,"breadcrumbs":9,"title":3},"276":{"body":101,"breadcrumbs":9,"title":3},"277":{"body":90,"breadcrumbs":9,"title":3},"278":{"body":123,"breadcrumbs":11,"title":5},"279":{"body":91,"breadcrumbs":8,"title":2},"28":{"body":38,"breadcrumbs":5,"title":2},"280":{"body":45,"breadcrumbs":8,"title":2},"281":{"body":39,"breadcrumbs":8,"title":3},"282":{"body":57,"breadcrumbs":7,"title":2},"283":{"body":36,"breadcrumbs":8,"title":3},"284":{"body":47,"breadcrumbs":8,"title":3},"285":{"body":39,"breadcrumbs":11,"title":6},"286":{"body":15,"breadcrumbs":7,"title":2},"287":{"body":91,"breadcrumbs":10,"title":4},"288":{"body":18,"breadcrumbs":10,"title":4},"289":{"body":227,"breadcrumbs":9,"title":3},"29":{"body":44,"breadcrumbs":5,"title":2},"290":{"body":110,"breadcrumbs":9,"title":3},"291":{"body":61,"breadcrumbs":12,"title":6},"292":{"body":0,"breadcrumbs":8,"title":2},"293":{"body":65,"breadcrumbs":7,"title":1},"294":{"body":40,"breadcrumbs":8,"title":2},"295":{"body":97,"breadcrumbs":9,"title":3},"296":{"body":55,"breadcrumbs":8,"title":2},"297":{"body":271,"breadcrumbs":9,"title":3},"298":{"body":69,"breadcrumbs":9,"title":3},"299":{"body":69,"breadcrumbs":10,"title":4},"3":{"body":38,"breadcrumbs":3,"title":1},"30":{"body":114,"breadcrumbs":4,"title":1},"300":{"body":22,"breadcrumbs":8,"title":2},"301":{"body":73,"breadcrumbs":10,"title":4},"302":{"body":68,"breadcrumbs":14,"title":6},"303":{"body":91,"breadcrumbs":9,"title":1},"304":{"body":56,"breadcrumbs":11,"title":3},"305":{"body":138,"breadcrumbs":11,"title":3},"306":{"body":141,"breadcrumbs":11,"title":3},"307":{"body":212,"breadcrumbs":11,"title":3},"308":{"body":112,"breadcrumbs":11,"title":3},"309":{"body":306,"breadcrumbs":11,"title":3},"31":{"body":71,"breadcrumbs":4,"title":1},"310":{"body":331,"breadcrumbs":14,"title":6},"311":{"body":189,"breadcrumbs":15,"title":7},"312":{"body":176,"breadcrumbs":15,"title":7},"313":{"body":634,"breadcrumbs":14,"title":6},"314":{"body":87,"breadcrumbs":11,"title":3},"315":{"body":10,"breadcrumbs":11,"title":3},"316":{"body":51,"breadcrumbs":10,"title":2},"317":{"body":12,"breadcrumbs":9,"title":5},"318":{"body":146,"breadcrumbs":5,"title":1},"319":{"body":235,"breadcrumbs":8,"title":4},"32":{"body":60,"breadcrumbs":5,"title":2},"320":{"body":30,"breadcrumbs":6,"title":2},"321":{"body":4,"breadcrumbs":7,"title":3},"322":{"body":241,"breadcrumbs":8,"title":3},"323":{"body":23,"breadcrumbs":6,"title":1},"324":{"body":213,"breadcrumbs":9,"title":4},"325":{"body":134,"breadcrumbs":7,"title":2},"326":{"body":25,"breadcrumbs":7,"title":2},"327":{"body":21,"breadcrumbs":7,"title":2},"328":{"body":26,"breadcrumbs":7,"title":2},"329":{"body":62,"breadcrumbs":10,"title":5},"33":{"body":208,"breadcrumbs":5,"title":2},"330":{"body":153,"breadcrumbs":7,"title":2},"331":{"body":143,"breadcrumbs":7,"title":2},"332":{"body":41,"breadcrumbs":10,"title":4},"333":{"body":161,"breadcrumbs":8,"title":2},"334":{"body":13,"breadcrumbs":8,"title":2},"335":{"body":81,"breadcrumbs":10,"title":4},"336":{"body":93,"breadcrumbs":11,"title":5},"337":{"body":102,"breadcrumbs":9,"title":3},"338":{"body":55,"breadcrumbs":10,"title":4},"339":{"body":21,"breadcrumbs":9,"title":3},"34":{"body":19,"breadcrumbs":5,"title":2},"340":{"body":100,"breadcrumbs":9,"title":3},"341":{"body":28,"breadcrumbs":10,"title":4},"342":{"body":34,"breadcrumbs":9,"title":3},"343":{"body":33,"breadcrumbs":9,"title":3},"344":{"body":109,"breadcrumbs":8,"title":2},"345":{"body":112,"breadcrumbs":8,"title":2},"346":{"body":53,"breadcrumbs":8,"title":3},"347":{"body":75,"breadcrumbs":6,"title":1},"348":{"body":0,"breadcrumbs":9,"title":4},"349":{"body":157,"breadcrumbs":6,"title":1},"35":{"body":13,"breadcrumbs":4,"title":1},"350":{"body":329,"breadcrumbs":7,"title":2},"351":{"body":178,"breadcrumbs":8,"title":3},"352":{"body":122,"breadcrumbs":7,"title":2},"353":{"body":53,"breadcrumbs":8,"title":3},"354":{"body":88,"breadcrumbs":8,"title":3},"355":{"body":134,"breadcrumbs":10,"title":5},"356":{"body":179,"breadcrumbs":7,"title":2},"357":{"body":47,"breadcrumbs":10,"title":5},"358":{"body":8,"breadcrumbs":8,"title":3},"359":{"body":94,"breadcrumbs":7,"title":2},"36":{"body":21,"breadcrumbs":4,"title":1},"360":{"body":0,"breadcrumbs":7,"title":2},"361":{"body":68,"breadcrumbs":9,"title":4},"362":{"body":93,"breadcrumbs":14,"title":6},"363":{"body":213,"breadcrumbs":10,"title":2},"364":{"body":51,"breadcrumbs":10,"title":2},"365":{"body":0,"breadcrumbs":11,"title":3},"366":{"body":154,"breadcrumbs":11,"title":3},"367":{"body":105,"breadcrumbs":12,"title":4},"368":{"body":314,"breadcrumbs":13,"title":5},"369":{"body":34,"breadcrumbs":14,"title":6},"37":{"body":25,"breadcrumbs":4,"title":1},"370":{"body":35,"breadcrumbs":9,"title":1},"371":{"body":168,"breadcrumbs":9,"title":1},"372":{"body":103,"breadcrumbs":10,"title":2},"373":{"body":90,"breadcrumbs":10,"title":2},"374":{"body":40,"breadcrumbs":10,"title":2},"375":{"body":15,"breadcrumbs":8,"title":3},"376":{"body":34,"breadcrumbs":6,"title":1},"377":{"body":83,"breadcrumbs":6,"title":1},"378":{"body":28,"breadcrumbs":7,"title":2},"379":{"body":0,"breadcrumbs":7,"title":2},"38":{"body":92,"breadcrumbs":4,"title":1},"380":{"body":77,"breadcrumbs":7,"title":2},"381":{"body":81,"breadcrumbs":10,"title":5},"382":{"body":26,"breadcrumbs":12,"title":7},"383":{"body":25,"breadcrumbs":11,"title":6},"384":{"body":0,"breadcrumbs":6,"title":1},"385":{"body":16,"breadcrumbs":7,"title":2},"386":{"body":211,"breadcrumbs":6,"title":1},"387":{"body":86,"breadcrumbs":6,"title":1},"388":{"body":21,"breadcrumbs":6,"title":1},"389":{"body":20,"breadcrumbs":6,"title":1},"39":{"body":186,"breadcrumbs":6,"title":3},"390":{"body":31,"breadcrumbs":10,"title":5},"391":{"body":14,"breadcrumbs":7,"title":2},"392":{"body":13,"breadcrumbs":6,"title":1},"393":{"body":14,"breadcrumbs":6,"title":1},"394":{"body":32,"breadcrumbs":7,"title":2},"395":{"body":84,"breadcrumbs":9,"title":4},"396":{"body":103,"breadcrumbs":11,"title":6},"397":{"body":38,"breadcrumbs":11,"title":6},"398":{"body":55,"breadcrumbs":13,"title":8},"399":{"body":0,"breadcrumbs":6,"title":1},"4":{"body":19,"breadcrumbs":4,"title":2},"40":{"body":66,"breadcrumbs":4,"title":1},"400":{"body":11,"breadcrumbs":7,"title":2},"401":{"body":62,"breadcrumbs":8,"title":3},"402":{"body":103,"breadcrumbs":9,"title":4},"403":{"body":0,"breadcrumbs":6,"title":1},"404":{"body":16,"breadcrumbs":7,"title":2},"405":{"body":198,"breadcrumbs":7,"title":2},"406":{"body":30,"breadcrumbs":7,"title":2},"407":{"body":0,"breadcrumbs":6,"title":1},"408":{"body":73,"breadcrumbs":8,"title":3},"409":{"body":45,"breadcrumbs":7,"title":2},"41":{"body":104,"breadcrumbs":6,"title":3},"410":{"body":46,"breadcrumbs":13,"title":6},"411":{"body":60,"breadcrumbs":8,"title":1},"412":{"body":31,"breadcrumbs":8,"title":1},"413":{"body":317,"breadcrumbs":8,"title":1},"414":{"body":215,"breadcrumbs":8,"title":1},"415":{"body":205,"breadcrumbs":10,"title":3},"416":{"body":189,"breadcrumbs":8,"title":1},"417":{"body":18,"breadcrumbs":9,"title":2},"418":{"body":265,"breadcrumbs":9,"title":2},"419":{"body":76,"breadcrumbs":10,"title":4},"42":{"body":0,"breadcrumbs":5,"title":2},"420":{"body":88,"breadcrumbs":7,"title":1},"421":{"body":0,"breadcrumbs":9,"title":3},"422":{"body":94,"breadcrumbs":7,"title":1},"423":{"body":250,"breadcrumbs":7,"title":1},"424":{"body":98,"breadcrumbs":8,"title":2},"425":{"body":0,"breadcrumbs":9,"title":3},"426":{"body":124,"breadcrumbs":7,"title":1},"427":{"body":192,"breadcrumbs":7,"title":1},"428":{"body":352,"breadcrumbs":8,"title":2},"429":{"body":0,"breadcrumbs":9,"title":3},"43":{"body":109,"breadcrumbs":4,"title":1},"430":{"body":194,"breadcrumbs":7,"title":1},"431":{"body":369,"breadcrumbs":9,"title":3},"432":{"body":101,"breadcrumbs":7,"title":1},"433":{"body":139,"breadcrumbs":16,"title":7},"434":{"body":75,"breadcrumbs":10,"title":1},"435":{"body":44,"breadcrumbs":11,"title":2},"436":{"body":24,"breadcrumbs":11,"title":2},"437":{"body":166,"breadcrumbs":15,"title":6},"438":{"body":207,"breadcrumbs":12,"title":3},"439":{"body":24,"breadcrumbs":13,"title":4},"44":{"body":121,"breadcrumbs":4,"title":1},"440":{"body":23,"breadcrumbs":12,"title":3},"441":{"body":0,"breadcrumbs":11,"title":2},"442":{"body":16,"breadcrumbs":12,"title":3},"443":{"body":7,"breadcrumbs":11,"title":2},"444":{"body":11,"breadcrumbs":12,"title":3},"445":{"body":18,"breadcrumbs":13,"title":4},"446":{"body":90,"breadcrumbs":11,"title":2},"447":{"body":28,"breadcrumbs":15,"title":6},"448":{"body":28,"breadcrumbs":18,"title":9},"449":{"body":83,"breadcrumbs":7,"title":2},"45":{"body":66,"breadcrumbs":5,"title":2},"450":{"body":38,"breadcrumbs":6,"title":1},"451":{"body":191,"breadcrumbs":6,"title":1},"452":{"body":55,"breadcrumbs":9,"title":4},"453":{"body":84,"breadcrumbs":11,"title":6},"454":{"body":329,"breadcrumbs":9,"title":4},"455":{"body":62,"breadcrumbs":7,"title":2},"456":{"body":0,"breadcrumbs":7,"title":2},"457":{"body":159,"breadcrumbs":7,"title":2},"458":{"body":325,"breadcrumbs":10,"title":5},"459":{"body":415,"breadcrumbs":9,"title":4},"46":{"body":43,"breadcrumbs":6,"title":3},"460":{"body":122,"breadcrumbs":6,"title":1},"461":{"body":58,"breadcrumbs":7,"title":2},"462":{"body":72,"breadcrumbs":8,"title":3},"463":{"body":21,"breadcrumbs":6,"title":1},"464":{"body":38,"breadcrumbs":9,"title":4},"465":{"body":20,"breadcrumbs":8,"title":3},"466":{"body":26,"breadcrumbs":7,"title":2},"467":{"body":6,"breadcrumbs":9,"title":4},"468":{"body":21,"breadcrumbs":7,"title":2},"469":{"body":49,"breadcrumbs":11,"title":5},"47":{"body":0,"breadcrumbs":7,"title":4},"470":{"body":98,"breadcrumbs":7,"title":1},"471":{"body":192,"breadcrumbs":7,"title":1},"472":{"body":97,"breadcrumbs":10,"title":4},"473":{"body":0,"breadcrumbs":9,"title":3},"474":{"body":15,"breadcrumbs":9,"title":3},"475":{"body":163,"breadcrumbs":9,"title":3},"476":{"body":14,"breadcrumbs":10,"title":4},"477":{"body":26,"breadcrumbs":11,"title":5},"478":{"body":75,"breadcrumbs":8,"title":2},"479":{"body":29,"breadcrumbs":9,"title":4},"48":{"body":116,"breadcrumbs":4,"title":1},"480":{"body":16,"breadcrumbs":6,"title":1},"481":{"body":58,"breadcrumbs":9,"title":4},"482":{"body":280,"breadcrumbs":8,"title":3},"483":{"body":8,"breadcrumbs":7,"title":2},"484":{"body":29,"breadcrumbs":7,"title":2},"485":{"body":37,"breadcrumbs":12,"title":5},"486":{"body":131,"breadcrumbs":8,"title":1},"487":{"body":138,"breadcrumbs":10,"title":3},"488":{"body":20,"breadcrumbs":11,"title":4},"489":{"body":385,"breadcrumbs":10,"title":3},"49":{"body":43,"breadcrumbs":6,"title":3},"490":{"body":88,"breadcrumbs":9,"title":2},"491":{"body":177,"breadcrumbs":9,"title":2},"492":{"body":40,"breadcrumbs":10,"title":3},"493":{"body":104,"breadcrumbs":9,"title":2},"494":{"body":38,"breadcrumbs":13,"title":6},"495":{"body":41,"breadcrumbs":9,"title":2},"496":{"body":80,"breadcrumbs":9,"title":2},"497":{"body":14,"breadcrumbs":2,"title":1},"498":{"body":0,"breadcrumbs":15,"title":7},"499":{"body":51,"breadcrumbs":9,"title":1},"5":{"body":100,"breadcrumbs":5,"title":4},"50":{"body":75,"breadcrumbs":7,"title":4},"500":{"body":106,"breadcrumbs":12,"title":4},"501":{"body":72,"breadcrumbs":13,"title":5},"502":{"body":0,"breadcrumbs":15,"title":7},"503":{"body":112,"breadcrumbs":12,"title":4},"504":{"body":112,"breadcrumbs":17,"title":9},"505":{"body":55,"breadcrumbs":14,"title":6},"506":{"body":134,"breadcrumbs":19,"title":11},"507":{"body":42,"breadcrumbs":13,"title":5},"508":{"body":340,"breadcrumbs":12,"title":4},"509":{"body":2,"breadcrumbs":8,"title":1},"51":{"body":23,"breadcrumbs":3,"title":2},"52":{"body":111,"breadcrumbs":4,"title":1},"53":{"body":98,"breadcrumbs":5,"title":2},"54":{"body":264,"breadcrumbs":4,"title":1},"55":{"body":0,"breadcrumbs":6,"title":3},"56":{"body":391,"breadcrumbs":6,"title":3},"57":{"body":17,"breadcrumbs":5,"title":2},"58":{"body":0,"breadcrumbs":6,"title":3},"59":{"body":44,"breadcrumbs":9,"title":6},"6":{"body":0,"breadcrumbs":4,"title":3},"60":{"body":12,"breadcrumbs":5,"title":2},"61":{"body":12,"breadcrumbs":9,"title":6},"62":{"body":58,"breadcrumbs":6,"title":3},"63":{"body":47,"breadcrumbs":4,"title":1},"64":{"body":6,"breadcrumbs":7,"title":4},"65":{"body":136,"breadcrumbs":5,"title":2},"66":{"body":117,"breadcrumbs":5,"title":2},"67":{"body":200,"breadcrumbs":5,"title":2},"68":{"body":134,"breadcrumbs":6,"title":3},"69":{"body":22,"breadcrumbs":3,"title":2},"7":{"body":51,"breadcrumbs":4,"title":3},"70":{"body":67,"breadcrumbs":3,"title":1},"71":{"body":122,"breadcrumbs":4,"title":2},"72":{"body":121,"breadcrumbs":4,"title":2},"73":{"body":92,"breadcrumbs":4,"title":2},"74":{"body":111,"breadcrumbs":5,"title":3},"75":{"body":99,"breadcrumbs":7,"title":5},"76":{"body":99,"breadcrumbs":7,"title":5},"77":{"body":319,"breadcrumbs":4,"title":2},"78":{"body":171,"breadcrumbs":3,"title":1},"79":{"body":106,"breadcrumbs":6,"title":4},"8":{"body":42,"breadcrumbs":6,"title":5},"80":{"body":165,"breadcrumbs":3,"title":1},"81":{"body":155,"breadcrumbs":4,"title":2},"82":{"body":260,"breadcrumbs":9,"title":4},"83":{"body":185,"breadcrumbs":5,"title":2},"84":{"body":462,"breadcrumbs":4,"title":1},"85":{"body":177,"breadcrumbs":5,"title":2},"86":{"body":168,"breadcrumbs":6,"title":3},"87":{"body":199,"breadcrumbs":4,"title":1},"88":{"body":215,"breadcrumbs":4,"title":1},"89":{"body":351,"breadcrumbs":4,"title":1},"9":{"body":56,"breadcrumbs":3,"title":2},"90":{"body":229,"breadcrumbs":6,"title":3},"91":{"body":13,"breadcrumbs":9,"title":4},"92":{"body":90,"breadcrumbs":7,"title":2},"93":{"body":288,"breadcrumbs":7,"title":2},"94":{"body":114,"breadcrumbs":2,"title":1},"95":{"body":193,"breadcrumbs":4,"title":3},"96":{"body":80,"breadcrumbs":11,"title":3},"97":{"body":6,"breadcrumbs":10,"title":2},"98":{"body":149,"breadcrumbs":10,"title":2},"99":{"body":127,"breadcrumbs":13,"title":5}},"docs":{"0":{"body":"The AWS Rust SDK aims to provide an official, high quality & complete interface to AWS services. We plan to eventually use the CRT to provide signing & credential management. The Rust SDK will provide first-class support for the CRT as well as Tokio & Hyper . The Rust SDK empowers advanced customers to bring their own HTTP/IO implementations. Our design choices are guided by our Tenets .","breadcrumbs":"Design Overview » Design Overview","id":"0","title":"Design Overview"},"1":{"body":"The design builds on the learnings, ideas, hard work, and GitHub issues of the 142 Rusoto contributors & thousands of users who built this first and learned the hard way.","breadcrumbs":"Design Overview » Acknowledgments","id":"1","title":"Acknowledgments"},"10":{"body":"","breadcrumbs":"Design FAQ » Design FAQ","id":"10","title":"Design FAQ"},"100":{"body":"If you have your own source of credentials, you may opt-out of the standard credential provider chain. To do this, implement the ProvideCredentials trait. NOTE: aws_types::Credentials already implements ProvideCredentials. If you want to use the SDK with static credentials, you're already done! use aws_types::credentials::{ProvideCredentials, provide_credentials::future, Result}; struct MyCustomProvider; impl MyCustomProvider { pub async fn load_credentials(&self) -> Result { todo!() // A regular async function }\n} impl ProvideCredentials for MyCustomProvider { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.load_credentials()) }\n} Hint: If your credential provider is not asynchronous, you can use ProvideCredentials::ready instead to save an allocation. After writing your custom provider, you'll use it in when constructing the configuration: #[tokio::main]\nasync fn main() { let config = aws_config::from_env().credentials_provider(MyCustomProvider).load().await; let dynamodb = dynamodb::new(&config);\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Specifying a custom credential provider","id":"100","title":"Specifying a custom credential provider"},"101":{"body":"Achieving this design consists of three major changes: Add a Config struct to aws-types. This contains a config, but with no logic to construct it. This represents what configuration SDKS need, but not how to load the information from the environment. Create the aws-config crate. aws-config contains the logic to load configuration from the environment. No generated service clients will depend on aws-config. This is critical to avoid circular dependencies and to allow aws-config to depend on other AWS services. aws-config contains individual providers as well as a pre-assembled default provider chain for region and credentials. It will also contain crate features to automatically bring in HTTPS and async-sleep implementations. Remove all \"business logic\" from aws-types. aws-types should be an interface-only crate that is extremely stable. The ProvideCredentials trait should move into aws-types. The region provider trait which only exists to support region-chaining will move out of aws-types into aws-config. Services will continue to generate their own Config structs. These will continue to be customizable as they are today, however, they won't have any default resolvers built in. Each AWS config will implement From<&aws_types::SharedConfig> . A convenience method to new() a fluent client directly from a shared config will also be generated.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Proposed Design","id":"101","title":"Proposed Design"},"102":{"body":"This RFC proposes adding region and credentials providers support to the shared config. A future RFC will propose integration with HTTP settings, HTTPs connectors, and async sleep. struct Config { // private fields ...\n} impl Config { pub fn region(&self) -> Option<&Region> { self.region.as_ref() } pub fn credentials_provider(&self) -> Option { self.credentials_provider.clone() } pub fn builder() -> Builder { Builder::default() }\n} The Builder for Config allows customers to provide individual overrides and handles the insertion of the default chain for regions and credentials.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Shared Config Implementation","id":"102","title":"Shared Config Implementation"},"103":{"body":"Sleep and Connector are both runtime dependent features. aws-config will define rt-tokio and rustls and native-tls optional features. This centralizes the Tokio/Hyper dependency eventually removing the need for each service to maintain their own Tokio/Hyper features. Although not proposed in this RFC, shared config will eventually gain support for creating an HTTPs client from HTTP settings.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sleep + Connectors","id":"103","title":"Sleep + Connectors"},"104":{"body":"Currently, the .build() method on service config will fill in defaults. As part of this change, .build() called on the service config with missing properties will fill in \"empty\" defaults. If no credentials provider is given, a NoCredentials provider will be set, and Region will remain as None.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » The .build() method on ::Config","id":"104","title":"The .build() method on ::Config"},"105":{"body":"The introduction of Config to aws-types is not without risks. If a customer depends on a version aws-config that uses Config that is incompatible, they will get confusing compiler errors. An example of a problematic set of dependent versions: ┌─────────────────┐ ┌───────────────┐\n│ aws-types = 0.1 │ │aws-types= 0.2 │\n└─────────────────┘ └───────────────┘ ▲ ▲ │ │ │ │ │ │ ┌─────────┴─────────────┐ ┌────────┴───────┐ │aws-sdk-dynamodb = 0.5 │ │aws-config = 0.6│ └───────────┬───────────┘ └───────┬────────┘ │ │ │ │ │ │ │ │ │ │ ├─────────────────────┬────────┘ │ my-lambda-function │ └─────────────────────┘ To mitigate this risk, we will need to make aws-types essentially permanently stable. Changes to aws-types need to be made with extreme care. This will ensure that two versions of aws-types never end up in a customer's dependency tree. We will dramatically reduce the surface area of aws-types to contain only interfaces. Several breaking changes will be made as part of this, notably, the profile file parsing will be moved out of aws-types. Finally, to mitigate this risk even further, services will pub use items from aws-types directly which means that even if a dependency mismatch exists, it is still possible for customers to work around it.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Stability and Versioning","id":"105","title":"Stability and Versioning"},"106":{"body":"ProvideRegion becomes async using a newtype'd future. AsyncProvideCredentials is removed. ProvideCredentials becomes async using a newtype'd future. ProvideCredentials moved into aws-types. Credentials moved into aws-types Create aws-config. Profile-file parsing moved into aws-config, region chain & region environment loaders moved to aws-config. os_shim_internal moved to ??? aws-smithy-types? Add Config to aws-types. Ensure that it's set up to add new members while remaining backwards compatible. Code generate From<&SharedConfig> for ::Config Code generate ::Client::new(&shared_config) Remove ::from_env","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Changes Checklist","id":"106","title":"Changes Checklist"},"107":{"body":"Connector construction needs to be a function of HTTP settings An AsyncSleep should be added to aws-types::Config","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Open Issues","id":"107","title":"Open Issues"},"108":{"body":"Status: Accepted For a summarized list of proposed changes, see the Changes Checklist section. Most AWS SDK operations use HTTP/1.1, but bi-directional streaming operations that use the Event Stream message framing format need to use HTTP/2 (h2). Smithy models can also customize which HTTP versions are used in each individual protocol trait. For example, @restJson1 has attributes http and eventStreamHttp to list out the versions that should be used in a priority order. There are two problems in play that this doc attempts to solve: Connector Creation : Customers need to be able to create connectors with the HTTP settings they desire, and these custom connectors must align with what the Smithy model requires. Connector Selection : The generated code must be able to select the connector that best matches the requirements from the Smithy model.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » RFC: Supporting multiple HTTP versions for SDKs that use Event Stream","id":"108","title":"RFC: Supporting multiple HTTP versions for SDKs that use Event Stream"},"109":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Terminology","id":"109","title":"Terminology"},"11":{"body":"Smithy is the interface design language used by AWS services. smithy-rs allows users to generate a Rust client for any Smithy based service (pending protocol support), including those outside of AWS.","breadcrumbs":"Design FAQ » What is Smithy?","id":"11","title":"What is Smithy?"},"110":{"body":"Fluent clients currently keep a handle to a single Smithy client, which is a wrapper around the underlying connector. When constructing operation builders, this handle is Arc cloned and given to the new builder instances so that their send() calls can initiate a request. The generated fluent client code ends up looking like this: struct Handle { client: aws_smithy_client::Client, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} Functions are generated per operation on the fluent client to gain access to the individual operation builders. For example: pub fn assume_role(&self) -> fluent_builders::AssumeRole { fluent_builders::AssumeRole::new(self.handle.clone())\n} The fluent operation builders ultimately implement send(), which chooses the one and only Smithy client out of the handle to make the request with: pub struct AssumeRole { handle: std::sync::Arc>, inner: crate::input::assume_role_input::Builder,\n} impl AssumeRole where ...{ pub async fn send(self) -> Result> where ... { // Setup code omitted ... // Make the actual request self.handle.client.call(op).await }\n} Smithy clients are constructed from a connector, as shown: let connector = Builder::new() .https() .middleware(...) .build();\nlet client = Client::with_config(connector, Config::builder().build()); The https() method on the Builder constructs the actual Hyper client, and is driven off Cargo features to select the correct TLS implementation. For example: #[cfg(feature = \"rustls\")]\npub fn https() -> Https { let https = hyper_rustls::HttpsConnector::with_native_roots(); let client = hyper::Client::builder().build::<_, SdkBody>(https); // HyperAdapter is a Tower `Service` request -> response connector that just calls the Hyper client crate::hyper_impls::HyperAdapter::from(client)\n}","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » How Clients Work Today","id":"110","title":"How Clients Work Today"},"111":{"body":"Customers need to be able to provide HTTP settings, such as timeouts, for all connectors that the clients use. These should come out of the SharedConfig when it is used. Connector creation also needs to be customizable so that alternate HTTP implementations can be used, or so that a fake implementation can be used for tests. To accomplish this, SharedConfig will have a make_connector member. A customer would configure it as such: let config = some_shared_config_loader() .with_http_settings(my_http_settings) .with_make_connector(|reqs: &MakeConnectorRequirements| { Some(MyCustomConnector::new(reqs)) }) .await; The passed in MakeConnectorRequirements will hold the customer-provided HttpSettings as well as any Smithy-modeled requirements, which will just be HttpVersion for now. The MakeConnectorRequirements struct will be marked non_exhaustive so that new requirements can be added to it as the SDK evolves. A default make_connector implementation would be provided that creates a Hyper connector based on the Cargo feature flags. This might look something like this: #[cfg(feature = \"rustls\")]\npub fn default_connector(reqs: &HttpRequirements) -> HyperAdapter { let https = hyper_rustls::HttpsConnector::with_native_roots(); let mut builder = hyper::Client::builder(); builder = configure_settings(builder, &reqs.http_settings); if let Http2 = &reqs.http_version { builder = builder.http2_only(true); } HyperAdapter::from(builder.build::<_, SdkBody>(https))\n} For any given service, make_connector could be called multiple times to create connectors for all required HTTP versions and settings. Note: the make_connector returns an Option since an HTTP version may not be required, but rather, preferred according to a Smithy model. For operations that list out [\"h2\", \"HTTP/1.1\"] as the desired versions, a customer could choose to provide only an HTTP 1 connector, and the operation should still succeed.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Creation Problem","id":"111","title":"Solving the Connector Creation Problem"},"112":{"body":"Each service operation needs to be able to select a connector that meets its requirements best from the customer provided connectors. Initially, the only selection criteria will be the HTTP version, but later when per-operation HTTP settings are implemented, the connector will also need to be keyed off of those settings. Since connector creation is not a cheap process, connectors will need to be cached after they are created. This caching is currently handled by the Handle in the fluent client, which holds on to the Smithy client. This cache needs to be adjusted to: Support multiple connectors, keyed off of the customer provided HttpSettings, and also off of the Smithy modeled requirements. Be lazy initialized. Services that have a mix of Event Stream and non-streaming operations shouldn't create an HTTP/2 client if the customer doesn't intend to use the Event Stream operations that require it. To accomplish this, the Handle will hold a cache that is optimized for many reads and few writes: #[derive(Debug, Hash, Eq, PartialEq)]\nstruct ConnectorKey { http_settings: HttpSettings, http_version: HttpVersion,\n} struct Handle { clients: RwLock, aws_smithy_client::Client>>, conf: crate::Config,\n} pub struct Client { handle: Arc>,\n} With how the generics are organized, the connector type will have to be the same between HTTP implementations, but this should be fine since it is generally a thin wrapper around a separate HTTP implementor. For cases where it is not, the custom connector type can host its own dyn Trait solution. The HttpRequirements struct will hold HttpSettings as copy-on-write so that it can be used for cache lookup without having to clone HttpSettings: struct HttpRequirements<'a> { http_settings: Cow<'a, HttpSettings>, http_version: HttpVersion,\n} impl<'a> HttpRequirements<'a> { // Needed for converting a borrowed HttpRequirements into an owned cache key for cache population pub fn into_owned(self) -> HttpRequirements<'static> { Self { http_settings: Cow::Owned(self.http_settings.into_owned()), http_version: self.http_version, } }\n} With the cache established, each operation needs to be aware of its requirements. The code generator will be updated to store a prioritized list of HttpVersion in the property bag in an input's make_operation() method. This prioritized list will come from the Smithy protocol trait's http or eventStreamHttp attribute, depending on the operation. The fluent client will then pull this list out of the property bag so that it can determine which connector to use. This indirection is necessary so that an operation still holds all information needed to make a service call from the Smithy client directly. Note: This may be extended in the future to be more than just HttpVersion, for example, when per-operation HTTP setting overrides are implemented. This doc is not attempting to solve that problem. In the fluent client, this will look as follows: impl AssumeRole where ... { pub async fn send(self) -> Result> where ... { let input = self.create_input()?; let op = input.make_operation(&self.handle.conf)?; // Grab the `make_connector` implementation let make_connector = self.config.make_connector(); // Acquire the prioritized HttpVersion list let http_versions = op.properties().get::(); // Make the actual request (using default HttpSettings until modifying those is implemented) let client = self.handle .get_or_create_client(make_connector, &default_http_settings(), &http_versions) .await?; client.call(op).await }\n} If an operation requires a specific protocol version, and if the make_connection implementation can't provide that it, then the get_or_create_client() function will return SdkError::ConstructionFailure indicating the error.","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Solving the Connector Selection Problem","id":"112","title":"Solving the Connector Selection Problem"},"113":{"body":"Create HttpVersion in aws-smithy-http with Http1_1 and Http2 Refactor existing https() connector creation functions to take HttpVersion Add make_connector to SharedConfig, and wire up the https() functions as a default Create HttpRequirements in aws-smithy-http Implement the connector cache on Handle Implement function to calculate a minimum required set of HTTP versions from a Smithy model in the code generator Update the make_operation code gen to put an HttpVersionList into the operation property bag Update the fluent client send() function code gen grab the HTTP version list and acquire the correct connector with it Add required defaulting for models that don't set the optional http and eventStreamHttp protocol trait attributes","breadcrumbs":"RFCs » RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream » Changes Checklist","id":"113","title":"Changes Checklist"},"114":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Several AWS services allow for presigned requests in URL form, which is described well by S3's documentation on authenticating requests using query parameters . This doc establishes the customer-facing API for creating these presigned URLs and how they will be implemented in a generic fashion in the SDK codegen.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » RFC: API for Presigned URLs","id":"114","title":"RFC: API for Presigned URLs"},"115":{"body":"To differentiate between the clients that are present in the generated SDK today, the following terms will be used throughout this doc: Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Terminology","id":"115","title":"Terminology"},"116":{"body":"Today, presigned URLs take an expiration time that's not part of the service API. The SDK will make this configurable as a separate struct so that there's no chance of name collisions, and so that additional fields can be added in the future. Fields added later will require defaulting for backwards compatibility. Customers should also be able to set a start time on the presigned URL's expiration so that they can generate URLs that become active in the future. An optional start_time option will be available and default to SystemTime::now(). Construction PresigningConfig can be done with a builder, but a PresigningConfig::expires_in convenience function will be provided to bypass the builder for the most frequent use-case. #[non_exhaustive]\n#[derive(Debug, Clone)]\npub struct PresigningConfig { start_time: SystemTime, expires_in: Duration,\n} #[non_exhaustive]\n#[derive(Debug)]\npub struct Builder { start_time: Option, expires_in: Option,\n} impl Builder { pub fn start_time(self, start_time: SystemTime) -> Self { ... } pub fn set_start_time(&mut self, start_time: Option) { ... } pub fn expires_in(self, expires_in: Duration) -> Self { ... } pub fn set_expires_in(&mut self, expires_in: Option) { ... } // Validates `expires_in` is no greater than one week pub fn build(self) -> Result { ... }\n} impl PresigningConfig { pub fn expires_in(expires_in: Duration) -> PresigningConfig { Self::builder().expires(expires).build().unwrap() } pub fn builder() -> Builder { ... }\n} Construction of PresigningConfig will validate that expires_in is no greater than one week, as this is the longest supported expiration time for SigV4. This validation will result in a panic. It's not inconceivable that PresigningConfig will need additional service-specific parameters as customizations, so it will be code generated with each service rather than living a shared location.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Presigned URL config","id":"116","title":"Presigned URL config"},"117":{"body":"The generated fluent builders for operations that support presigning will have a presigned() method in addition to send() that will return a presigned URL rather than sending the request. For S3's GetObject, the usage of this will look as follows: let config = aws_config::load_config_from_environment().await;\nlet client = s3::Client::new(&config);\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = client.get_object() .bucket(\"example-bucket\") .key(\"example-object\") .presigned(presigning_config) .await?; This API requires a client, and for use-cases where no actual service calls need to be made, customers should be able to create presigned URLs without the overhead of an HTTP client. Once the HTTP Versions RFC is implemented, the underlying HTTP client won't be created until the first service call, so there will be no HTTP client overhead to this approach. In a step away from the general pattern of keeping fluent client capabilities in line with Smithy client capabilities, creating presigned URLs directly from the Smithy client will not be supported. This is for two reasons: The Smithy client is not code generated, so adding a method to do presigning would apply to all operations, but not all operations can be presigned. Presigned URLs are not currently a Smithy concept ( although this may change soon ). The result of calling presigned() is a PresignedRequest, which is a wrapper with delegating functions around http::Request<()> so that the request method and additional signing headers are also made available. This is necessary since there are some presignable POST operations that require the signature to be in the headers rather than the query. Note: Presigning needs to be async because the underlying credentials provider used to sign the request may need to make service calls to acquire the credentials.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Fluent Presigned URL API","id":"117","title":"Fluent Presigned URL API"},"118":{"body":"Even though generating a presigned URL through the fluent client doesn't necessitate an HTTP client, it will be clearer that this is the case by allowing the creation of presigned URLs directly from an input. This would look as follows: let config = aws_config::load_config_from_environment().await;\nlet presigning_config = PresigningConfig::expires_in(Duration::from_secs(86400));\nlet presigned: PresignedRequest = GetObjectInput::builder() .bucket(\"example-bucket\") .key(\"example-bucket\") .presigned(&config, presigning_config) .await?; Creating the URL through the input will exercise the same code path as creating it through the client, but it will be more apparent that the overhead of a client isn't present.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Input Presigned URL API","id":"118","title":"Input Presigned URL API"},"119":{"body":"From an SDK's perspective, the following are required to make a presigned URL: Valid request input Endpoint Credentials to sign with Signing implementation The AWS middleware provides everything except the request, and the request is provided as part of the fluent builder API. The generated code needs to be able to run the middleware to fully populate a request property bag, but not actually dispatch it. The expires_in value from the presigning config needs to be piped all the way through to the signer. Additionally, the SigV4 signing needs to adjusted to do query param signing, which is slightly different than its header signing. Today, request dispatch looks as follows: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls send(). send(): Builds the final input struct, and then calls its make_operation() method with the stored config to create a Smithy Operation. Calls the underlying Smithy client with the operation. The Smithy client constructs a Tower Service with AWS middleware and a dispatcher at the bottom, and then executes it. The middleware acquire and add required signing parameters (region, credentials, endpoint, etc) to the request property bag. The SigV4 signing middleware signs the request by adding HTTP headers to it. The dispatcher makes the actual HTTP request and returns the response all the way back up the Tower. Presigning will take advantage of a lot of these same steps, but will cut out the Operation and replace the dispatcher with a presigned URL generator: The customer creates a new fluent builder by calling client.operation_name(), fills in inputs, and then calls presigned(). presigned(): Builds the final input struct, calls the make_operation() method with the stored config, and then extracts the request from the operation (discarding the rest). Mutates the OperationSigningConfig in the property bag to: Change the signature_type to HttpRequestQueryParams so that the signer runs the correct signing logic. Set expires_in to the value given by the customer in the presigning config. Constructs a Tower Service with AwsMiddleware layered in, and a PresignedUrlGeneratorLayer at the bottom. Calls the Tower Service and returns its result The AwsMiddleware will sign the request. The PresignedUrlGeneratorLayer directly returns the request since all of the work is done by the middleware. It should be noted that the presigned() function above is on the generated input struct, so implementing this for the input API is identical to implementing it for the fluent client. All the code for the new make_request() is already in the existing make_operation() and will just need to be split out.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Behind the scenes","id":"119","title":"Behind the scenes"},"12":{"body":"Compilation time: Although it's possible to use cargo features to conditionally compile individual services, we decided that this added significant complexity to the generated code. In Rust the \"unit of compilation\" is a Crate, so by using smaller crates we can get better compilation parallelism. Furthermore, ecosystem services like docs.rs have an upper limit on the maximum amount of time required to build an individual crate—if we packaged the entire SDK as a single crate, we would quickly exceed this limit. Versioning: It is expected that over time we may major-version-bump individual services. New updates will be pushed for some AWS service nearly every day. Maintaining separate crates allows us to only increment versions for the relevant pieces that change. See Independent Crate Versioning for more info.","breadcrumbs":"Design FAQ » Why is there one crate per service?","id":"12","title":"Why is there one crate per service?"},"120":{"body":"AWS models don't currently have any information about which operations can be presigned. To work around this, the Rust SDK will create a synthetic trait to model presigning with, and apply this trait to known presigned operations via customization. The code generator will look for this synthetic trait when creating the fluent builders and inputs to know if a presigned() method should be added.","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Modeling Presigning","id":"120","title":"Modeling Presigning"},"121":{"body":"If a presignable operation input has a member named presigned, then there will be a name collision with the function to generate a presigned URL. To mitigate this, RustReservedWords will be updated to rename the presigned member to presigned_value similar to how send is renamed .","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Avoiding name collision","id":"121","title":"Avoiding name collision"},"122":{"body":"Update aws-sigv4 to support query param signing Create PresignedOperationSyntheticTrait Customize models for known presigned operations Create PresigningConfig and its builder Implement PresignedUrlGeneratorLayer Create new AWS codegen decorator to: Add new presigned() method to input code generator Add new presigned() method to fluent client generator Update RustReservedWords to reserve presigned() Add integration test to S3 Add integration test to Polly Add examples for using presigning for: S3 GetObject and PutObject Polly SynthesizeSpeech","breadcrumbs":"RFCs » RFC-0003: API for Pre-signed URLs » Changes Checklist","id":"122","title":"Changes Checklist"},"123":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. It is not currently possible for users of the SDK to configure a client's maximum number of retry attempts. This RFC establishes a method for users to set the number of retries to attempt when calling a service and would allow users to disable retries entirely. This RFC would introduce breaking changes to the retry module of the aws-smithy-client crate.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » RFC: Retry Behavior","id":"123","title":"RFC: Retry Behavior"},"124":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. Standard retry behavior : The standard set of retry rules across AWS SDKs. This mode includes a standard set of errors that are retried, and support for retry quotas. The default maximum number of attempts with this mode is three, unless max_attempts is explicitly configured. Adaptive retry behavior : Adaptive retry mode dynamically limits the rate of AWS requests to maximize success rate. This may be at the expense of request latency. Adaptive retry mode is not recommended when predictable latency is important. Note: supporting the \"adaptive\" retry behavior is considered outside the scope of this RFC","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Terminology","id":"124","title":"Terminology"},"125":{"body":"This RFC will demonstrate (with examples) the following ways that Users can set the maximum number of retry attempts: By calling the Config::retry_config(..) or Config::disable_retries() methods when building a service-specific config By calling the Config::retry_config(..) or Config::disable_retries() methods when building a shared config By setting the AWS_MAX_ATTEMPTS environment variable The above list is in order of decreasing precedence e.g. setting maximum retry attempts with the max_attempts builder method will override a value set by AWS_MAX_ATTEMPTS. The default number of retries is 3 as specified in the AWS SDKs and Tools Reference Guide .","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Configuring the maximum number of retries","id":"125","title":"Configuring the maximum number of retries"},"126":{"body":"Here's an example app that logs your AWS user's identity use aws_sdk_sts as sts; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Then, in your terminal: # Set the env var before running the example program\nexport AWS_MAX_ATTEMPTS=5\n# Run the example program\ncargo run","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Setting an environment variable","id":"126","title":"Setting an environment variable"},"127":{"body":"Here's an example app that creates a shared config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let config = aws_config::from_env().retry_config(retry_config).load().await; let sts = sts::Client::new(&config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on an AWS shared config","id":"127","title":"Calling a method on an AWS shared config"},"128":{"body":"Here's an example app that creates a service-specific config with custom retry behavior and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::retry_config::StandardRetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let retry_config = StandardRetryConfig::builder().max_attempts(5).build(); let sts_config = sts::config::Config::from(&config).retry_config(retry_config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Calling a method on service-specific config","id":"128","title":"Calling a method on service-specific config"},"129":{"body":"Here's an example app that creates a shared config that disables retries and then logs your AWS user's identity use aws_sdk_sts as sts;\nuse aws_types::config::Config; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::from_env().disable_retries().load().await; let sts_config = sts::config::Config::from(&config).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n} Retries can also be disabled by explicitly passing the RetryConfig::NoRetries enum variant to the retry_config builder method: use aws_sdk_sts as sts;\nuse aws_types::retry_config::RetryConfig; #[tokio::main]\nasync fn main() -> Result<(), sts::Error> { let config = aws_config::load_from_env().await; let sts_config = sts::config::Config::from(&config).retry_config(RetryConfig::NoRetries).build(); let sts = sts::Client::new(&sts_config); let resp = sts.get_caller_identity().send().await?; println!(\"your user id: {}\", resp.user_id.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Disabling retries","id":"129","title":"Disabling retries"},"13":{"body":"Compilation time: serde makes heavy use of several crates (proc-macro2, quote, and syn) that are very expensive to compile. Several service crates are already quite large and adding a serde dependency would increase compile times beyond what we consider acceptable. When we last checked, adding serde derives made compilation 23% slower. Misleading results: We can't use serde for serializing requests to AWS or deserializing responses from AWS because both sides of that process would require too much customization. Adding serialize/deserialize impls for operations has the potential to confuse users when they find it doesn't actually capture all the necessary information (like headers and trailers) sent in a request or received in a response. In the future, we may add serde support behind a feature gate. However, we would only support this for operation Input and Output structs with the aim of making SDK-related tests easier to set up and run.","breadcrumbs":"Design FAQ » Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?","id":"13","title":"Why don't the SDK service crates implement serde::Serialize or serde::Deserialize for any types?"},"130":{"body":"Currently, when users want to send a request, the following occurs: The user creates either a shared config or a service-specific config The user creates a fluent client for the service they want to interact with and passes the config they created. Internally, this creates an AWS client with a default retry policy The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy After this change, the process will work like this: The user creates either a shared config or a service-specific config If AWS_MAX_ATTEMPTS is set to zero, this is invalid and we will log it with tracing::warn. However, this will not error until a request is made If AWS_MAX_ATTEMPTS is 1, retries will be disabled If AWS_MAX_ATTEMPTS is greater than 1, retries will be attempted at most as many times as is specified If the user creates the config with the .disable_retries builder method, retries will be disabled If the user creates the config with the retry_config builder method, retry behavior will be set according to the RetryConfig they passed The user creates a fluent client for the service they want to interact with and passes the config they created Provider precedence will determine what retry behavior is actually set, working like how Region is set The user calls an operation builder method on the client which constructs a request The user sends the request by awaiting the send() method The smithy client creates a new Service and attaches a copy of its retry policy The Service is called, sending out the request and retrying it according to the retry policy These changes will be made in such a way that they enable us to add the \"adaptive\" retry behavior at a later date without introducing a breaking change.","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Behind the scenes","id":"130","title":"Behind the scenes"},"131":{"body":"Create new Kotlin decorator RetryConfigDecorator Based on RegionDecorator.kt This decorator will live in the codegen project because it has relevance outside the SDK Breaking changes: Rename aws_smithy_client::retry::Config to StandardRetryConfig Rename aws_smithy_client::retry::Config::with_max_retries method to with_max_attempts in order to follow AWS convention Passing 0 to with_max_attempts will panic with a helpful, descriptive error message Create non-exhaustive aws_types::retry_config::RetryConfig enum wrapping structs that represent specific retry behaviors A NoRetry variant that disables retries. Doesn't wrap a struct since it doesn't need to contain any data A Standard variant that enables the standard retry behavior. Wraps a StandardRetryConfig struct. Create aws_config::meta::retry_config::RetryConfigProviderChain Create aws_config::meta::retry_config::ProvideRetryConfig Create EnvironmentVariableMaxAttemptsProvider struct Setting AWS_MAX_ATTEMPTS=0 and trying to load from env will panic with a helpful, descriptive error message Add retry_config method to aws_config::ConfigLoader Update AwsFluentClientDecorator to correctly configure the max retry attempts of its inner aws_hyper::Client based on the passed-in Config Add tests Test that setting retry_config to 1 disables retries Test that setting retry_config to n limits retries to n where n is a non-zero integer Test that correct precedence is respected when overriding retry behavior in a service-specific config Test that correct precedence is respected when overriding retry behavior in a shared config Test that creating a config from env if AWS_MAX_ATTEMPTS=0 will panic with a helpful, descriptive error message Test that setting invalid max_attempts=0 with a StandardRetryConfig will panic with a helpful, descriptive error message","breadcrumbs":"RFCs » RFC-0004: Retry Behavior » Changes checklist","id":"131","title":"Changes checklist"},"132":{"body":"Status: RFC The Rust Smithy Framework is a full-fledged service framework whose main responsibility is to handle request lifecycles from beginning to end. It takes care of input de-serialization, operation execution, output serialization, error handling, and provides facilities to fulfill the requirements below.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » RFC: Smithy Rust Service Framework","id":"132","title":"RFC: Smithy Rust Service Framework"},"133":{"body":"","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Requirements","id":"133","title":"Requirements"},"134":{"body":"Server side code is generated from Smithy models and implements operations, input and output structures, and errors defined in the service model.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Smithy model-driven code generation","id":"134","title":"Smithy model-driven code generation"},"135":{"body":"This new framework is built with performance in mind. It refrains from allocating memory when not needed and tries to use a majority of borrowed types, handling their memory lifetimes so that a request body can be stored in memory only once and not cloned if possible. The code is implemented on solid and widely used foundations. It uses Hyper to handle the HTTP requests, the Tokio ecosystem for asynchronous (non-blocking) operations and Tower to implement middleware such as timeouts, rate limiting, retries, and more. CPU intensive operations are scheduled on a separated thread-pool to avoid blocking the event loop. It uses Tokio axum , an HTTP framework built on top of the technologies mentioned above which handles routing, request extraction, response building, and workers lifecycle. Axum is a relatively thin layer on top of Hyper and adds very little overhead, so its performance is comparable to Hyper. The framework should allow customers to use the built-in HTTP server or select other transport implementations that can be more performant or better suited than HTTP for their use case.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Performance","id":"135","title":"Performance"},"136":{"body":"We want to deliver an extensible framework that can plugin components possibly during code generation and at runtime for specific scenarios that cannot be covered during generation. These components are developed using a standard interface provided by the framework itself.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Extensibility","id":"136","title":"Extensibility"},"137":{"body":"Being able to report and trace the status of the service is vital for the success of any product. The framework is integrated with tracing and allows non-blocking I/O through the asynchronous tracing appender . Metrics and logging are built with extensibility in mind, allowing customers to plug their own handlers following a well defined interface provided by the framework.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Observability","id":"137","title":"Observability"},"138":{"body":"Client generation is deferred to the various Smithy implementations.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Client generation","id":"138","title":"Client generation"},"139":{"body":"Benchmarking the framework is key and customers can't use anything that compromises the fundamental business objectives of latency and performance.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Benchmarking","id":"139","title":"Benchmarking"},"14":{"body":"The main question to ask yourself in this case is \"is this new behavior relevant to all services or is it only relevant to some services?\" If the behavior is relevant to all services: Behavior like this should be defined as a middleware. Behavior like this is often AWS-specific and may not be relevant to non-AWS smithy clients. Middlewares are defined outside of codegen. One example of behavior that should be defined as a middleware is request signing because all requests to AWS services must be signed. If the behavior is only relevant to some services/depends on service model specifics: Behavior like this should be defined within make_operation. Avoid defining AWS-specific behavior within make_operation. One example of behavior that should be defined in make_operation is checksum validation because only some AWS services have APIs that support checksum validation. \"Wait a second\" I hear you say, \"checksum validation is part of the AWS smithy spec, not the core smithy spec. Why is that behavior defined in make_operation?\" The answer is that that feature only applies to some operations and we don't want to codegen a middleware that only supports a subset of operations for a service.","breadcrumbs":"Design FAQ » I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?","id":"14","title":"I want to add new request building behavior. Should I add that functionality to the make_operation codegen or write a request-altering middleware?"},"140":{"body":"The generated service code is responsible for validating the model constraints of input structures.","breadcrumbs":"RFCs » RFC-0005: Smithy Rust service framework » Model validation","id":"140","title":"Model validation"},"141":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. Currently, all services use a centralized AwsMiddleware that is defined in the (poorly named) aws-hyper crate. This poses a number of long term risks and limitations: When creating a Smithy Client directly for a given service, customers are forced to implicitly assume that the service uses stock AwsMiddleware. This prevents us from ever changing the middleware stack for a service in the future. It is impossible / impractical in the current situation to alter the middleware stack for a given service. For services like S3, we will almost certainly want to customize endpoint middleware in a way that is currently impossible. In light of these limitations, this RFC proposes moving middleware into each generated service. aws-inlineable will be used to host and test the middleware stack. Each service will then define a public middleware module containing their middleware stack.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » RFC: Service-specific middleware","id":"141","title":"RFC: Service-specific middleware"},"142":{"body":"Middleware : A tower layer that augments operation::Request -> operation::Response for things like signing and endpoint resolution. Aws Middleware : A specific middleware stack that meets the requirements for AWS services. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Terminology","id":"142","title":"Terminology"},"143":{"body":"Currently, AwsMiddleware is defined in aws-hyper. As part of this change, an aws-inlineable dependency will be added containing code that is largely identical. This will be exposed in a public middleware module in all generated services. At some future point, we could even expose a baseline set of default middleware for whitelabel Smithy services to make them easier to use out-of-the-box. The ClientGenerics parameter of the AwsFluentClientGenerator will be updated to become a RuntimeType, enabling loading the type directly. This has the advantage of making it fairly easy to do per-service middleware stacks since we can easily configure AwsFluentClientGenerator to insert different types based on the service id.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Detailed Design","id":"143","title":"Detailed Design"},"144":{"body":"Move aws-hyper into aws-inlineable. Update comments as needed including with a usage example about how customers can augment it. Refactor ClientGenerics to contain a RuntimeType instead of a string and configure. Update AwsFluentClientDecorator. Update all code and examples that use aws-hyper to use service-specific middleware. Push an updated README to aws-hyper deprecating the package, explaining what happened. Do not yank previous versions since those will be relied on by older SDK versions.","breadcrumbs":"RFCs » RFC-0006: Service-specific middleware » Changes Checklist","id":"144","title":"Changes Checklist"},"145":{"body":"Status: Implemented in smithy-rs#986 and aws-sdk-rust#351 At the time of writing, the aws-sdk-rust repository is used exclusively for the entire release process of both the Rust runtime crates from smithy-rs as well as the AWS runtime crates and the AWS SDK. This worked well when smithy-rs was only used for the AWS SDK, but now that it's also used for server codegen, there are issues around publishing the server-specific runtime crates since they don't belong to the SDK. This RFC proposes a new split-release process so that the entire smithy-rs runtime can be published separately before the AWS SDK is published.","breadcrumbs":"RFCs » RFC-0007: Split release process » RFC: Split Release Process","id":"145","title":"RFC: Split Release Process"},"146":{"body":"Smithy Runtime Crate : A crate that gets published to crates.io and supports the code generated by smithy-rs. These crates don't provide any SDK-only functionality. These crates can support client and/or server code, and clients or servers may use only a subset of them. AWS Runtime Crate : A crate of SDK-specific code that supports the code generated by the aws/codegen module in smithy-rs. These also get published to crates.io. Publish-ready Bundle : A build artifact that is ready to publish to crates.io without additional steps (such as running the publisher tool's fix-manifests subcommand). Publishing one group of crates before another is not considered an additional step for this definition. Releaser : A developer, automated process, or combination of the two that performs the actual release.","breadcrumbs":"RFCs » RFC-0007: Split release process » Terminology","id":"146","title":"Terminology"},"147":{"body":"At a high level, the requirements are: publish from both smithy-rs and aws-sdk-rust while preserving our current level of confidence in the quality of the release. This can be enumerated as: All Smithy runtime crates must be published together from smithy-rs AWS runtime crates and the SDK must be published together from aws-sdk-rust CI on smithy-rs must give confidence that the Smithy runtime crates, AWS runtime crates, and SDK are all at the right quality bar for publish. CI on the aws-sdk-rust repository must give confidence that the AWS SDK and its runtime crates are at the right quality bar for publish. To do this successfully, it must run against the exact versions of the Smithy runtime crates the code was generated against both before AND after they have been published to crates.io .","breadcrumbs":"RFCs » RFC-0007: Split release process » Requirements","id":"147","title":"Requirements"},"148":{"body":"The publish process to crates.io relied on copying all the Smithy runtime crates into the final aws-sdk-rust repository. Overall, the process looked as follows: smithy-rs generates a complete aws-sdk-rust source bundle at CI time The releaser copies the generated bundle over to aws-sdk-rust The releaser runs the publisher fix-manifests subcommand to correct the Cargo.toml files generated by smithy-rs The aws-sdk-rust CI performs one last pass on the code to verify it's sound The releaser runs the publisher publish subcommand to push all the crates up to crates.io","breadcrumbs":"RFCs » RFC-0007: Split release process » Background: How Publishing Worked Before","id":"148","title":"Background: How Publishing Worked Before"},"149":{"body":"CI in smithy-rs will be revised to generate two separate build artifacts where it generates just an SDK artifact previously. Now, it will have two build targets that get executed from CI to generate these artifacts: rust-runtime:assemble - Generates a publish-ready bundle of Smithy runtime crates. aws:sdk:assemble - Generates a publish-ready bundle of AWS runtime crates, SDK crates, and just the Smithy runtime crates that are used by the SDK. The aws-sdk-rust repository will have a new next branch that has its own set of CI workflows and branch protection rules. The releaser will take the aws:sdk:assemble artifact and apply it directly to this next branch as would have previously been done against the main branch. The main branch will continue to have the same CI as next. When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next (this will be automated in the future) Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main Tag release for main Publish SDK with publisher tool The server team can then download the rust-runtime:assemble build artifact for the tagged release in smithy-rs, and publish the aws-smithy-http-server crate from there.","breadcrumbs":"RFCs » RFC-0007: Split release process » Proposed Solution","id":"149","title":"Proposed Solution"},"15":{"body":"The transport layer of smithy-rs and the Rust SDK. Our goal is support customers to bring their own HTTP stack and runtime.","breadcrumbs":"Transport » Transport","id":"15","title":"Transport"},"150":{"body":"It should be difficult to accidentally publish a locally built set of crates. To add friction to this, the smithy-rs build process will look for the existence of the GITHUB_ACTIONS=true environment variable. If this environment variable is not set, then it will pass a flag to the Rust codegen plugin that tells it to emit a publish = false under [package] in the generated Cargo.toml. This could be easily circumvented, but the goal is to reduce the chances of accidentally publishing crates rather than making it impossible.","breadcrumbs":"RFCs » RFC-0007: Split release process » Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI","id":"150","title":"Avoiding mistakes by disallowing creation of publish-ready bundles outside of CI"},"151":{"body":"","breadcrumbs":"RFCs » RFC-0007: Split release process » Alternatives Considered","id":"151","title":"Alternatives Considered"},"152":{"body":"This approach is similar to the proposed solution, except that the SDK would not publish the Smithy runtime crates. The aws-sdk-rust/main branch would have a small tweak to its CI so that the SDK is tested against the Smithy runtime crates that are published to crates.io This CI process would look as follows: Shallow clone aws-sdk-rust with the revision being tested Run a script to remove the path argument for the Smithy runtime crate dependencies for every crate in aws-sdk-rust. For example, aws-smithy-types = { version = \"0.33.0\", path = \"../aws-smithy-types\" } Would become: aws-smithy-types = { version = \"0.33.0\" } Run the tests as usual When it's time to cut a release, the releaser will do the following: Tag smithy-rs with the desired version number Wait for CI to build artifacts for the tagged release Pull-request the SDK artifacts over to aws-sdk-rust/next Wait for successful CI in aws-sdk-rust/next Download the Smithy runtime crates build artifact and publish it to crates.io Pull-request merge aws-sdk-rust/next into aws-sdk-rust/main Wait for successful CI in main (this time actually running against the crates.io Smithy runtime crates) Tag release for main Publish SDK with publisher tool","breadcrumbs":"RFCs » RFC-0007: Split release process » Publish Smithy runtime crates from smithy-rs build artifacts","id":"152","title":"Publish Smithy runtime crates from smithy-rs build artifacts"},"153":{"body":"This approach is similar to the previous alternative, except that the aws-sdk-rust repository won't have a snapshot of the Smithy runtime crates, and an additional step needs to be performed during CI for the next branch so that it looks as follows: Make a shallow clone of aws-sdk-rust/next Retrieve the smithy-rs commit hash that was used to generate the SDK from a file that was generated alongside the rest of the build artifacts from smithy-rs and copied into aws-sdk-rust. Make a shallow clone of smithy-rs at the correct commit hash Use a script to add a [patch] section to all the AWS SDK crates to point to the Smithy runtime crates from the local clone of smithy-rs. For example: # The dependencies section is left alone, but is here for context\n[dependencies]\n# Some version of aws-smithy-types that isn't on crates.io yet, referred to as `` below\naws-smithy-types = \"\" # This patch section gets added by the script\n[patch.crates-io]\naws-smithy-types = { version = \"\", path = \"path/to/local/smithy-rs/rust-runtime/aws-smithy-types\"} Run CI as normal. Note: smithy-rs would need to do the same patching in CI as aws-sdk-rust/next since the generated SDK would not have path dependencies for the Smithy runtime crates (since they are a publish-ready bundle intended for landing in aws-sdk-rust). The script that does this patching could live in smithy-rs and be reused by aws-sdk-rust. The disadvantage of this approach is that a customer having an issue with the current release wouldn't be able to get a fix sooner by patching their own project's crate manifest to use the aws-sdk-rust/next branch before a release is cut since their project wouldn't be able to find the unreleased Smithy runtime crates.","breadcrumbs":"RFCs » RFC-0007: Split release process » Keep Smithy runtime crates in smithy-rs","id":"153","title":"Keep Smithy runtime crates in smithy-rs"},"154":{"body":"In smithy-rs: Move publisher tool from aws-sdk-rust into smithy-rs Modify aws:sdk:assemble target to run the publisher fix-manifests subcommand Add rust-runtime:assemble target that generates publish-ready Smithy runtime crates Add CI step to create Smithy runtime bundle artifact Add GITHUB_ACTIONS=true env var check for setting the publish flag in generated AND runtime manifests Revise publisher tool to publish from an arbitrary directory In aws-sdk-rust: Implement CI for the aws-sdk-rust/next branch Remove the publisher tool Update release process documentation","breadcrumbs":"RFCs » RFC-0007: Split release process » Changes Checklist","id":"154","title":"Changes Checklist"},"155":{"body":"Status: Implemented Smithy models paginated responses . Customers of Smithy generated code & the Rust SDK will have an improved user experience if code is generated to support this. Fundamentally, paginators are a way to automatically make a series of requests with the SDK, where subsequent requests automatically forward output from the previous responses. There is nothing a paginator does that a user could not do manually, they merely simplify the common task of interacting with paginated APIs. **Specifically, a paginator will resend the orginal request but with inputToken updated to the value of the previous outputToken. In this RFC, we propose modeling paginated data as a Stream of output shapes. When an output is paginated, a paginate() method will be added to the high level builder An Paginator struct will be generated into the paginator module. If items is modeled, paginate().items() will be added to produce the paginated items. PaginatorItems will be generated into the paginator module. The Stream trait enables customers to use a number of abstractions including simple looping, and collect()ing all data in a single call. A paginator will resend the original input, but with the field marked inputToken to the value of outputToken in the previous output. Usage example: let paginator = client .list_tables() .paginate() .items() .page_size(10) .send() .await;\nlet tables: Result, _ > = paginator.collect().await; Paginators are lazy and only retrieve pages when polled by a client.","breadcrumbs":"RFCs » RFC-0008: Paginators » Summary","id":"155","title":"Summary"},"156":{"body":"Paginators will be generated into the paginator module of service crates. Currently, paginators are not feature gated, but this could be considered in the future. A paginator struct captures 2 pieces of data: // dynamodb/src/paginator.rs\nstruct ListTablesPaginator { // holds the low-level client and configuration handle: Arc>, // input builder to construct the actual input on demand input: ListTablesInputBuilder\n} In addition to the basic usage example above, when pageSize is modeled, customers can specify the page size during pagination: let mut tables = vec![];\nlet mut pages = client .list_tables() .paginate() .page_size(20) .send();\nwhile let Some(next_page) = pages.try_next().await? { // pages of 20 items requested from DynamoDb tables.extend(next_page.table_names.unwrap_or_default().into_iter());\n} Paginators define a public method send(). This method returns impl Stream. This uses FnStream defined in the aws-smithy-async crate which enables demand driven execution of a closure. A rendezvous channel is used which will block on send until demand exists. When modeled by Smithy, page_size which automatically sets the appropriate page_size parameter and items() which returns an automatically flattened paginator are also generated. Note : page_size directly sets the modeled parameter on the internal builder. This means that a value set for page size will override any previously set value for that field. // Generated paginator for ListTables\nimpl ListTablesPaginator\n{ /// Set the page size pub fn page_size(mut self, limit: i32) -> Self { self.builder.limit = Some(limit); self } /// Create a flattened paginator /// /// This paginator automatically flattens results using `table_names`. Queries to the underlying service /// are dispatched lazily. pub fn items(self) -> crate::paginator::ListTablesPaginatorItems { crate::paginator::ListTablesPaginatorItems(self) } /// Create the pagination stream /// /// _Note:_ No requests will be dispatched until the stream is used (eg. with [`.next().await`](tokio_stream::StreamExt::next)). pub async fn send( self, ) -> impl tokio_stream::Stream< Item = std::result::Result< crate::output::ListTablesOutput, aws_smithy_http::result::SdkError, >, > + Unpin { // Move individual fields out of self for the borrow checker let builder = self.builder; let handle = self.handle; fn_stream::FnStream::new(move |tx| { Box::pin(async move { // Build the input for the first time. If required fields are missing, this is where we'll produce an early error. let mut input = match builder.build().map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(input) => input, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; loop { let op = match input.make_operation(&handle.conf).await.map_err(|err| { SdkError::ConstructionFailure(err.into()) }) { Ok(op) => op, Err(e) => { let _ = tx.send(Err(e)).await; return; } }; let resp = handle.client.call(op).await; // If the input member is None or it was an error let done = match resp { Ok(ref resp) => { input.exclusive_start_table_name = crate::lens::reflens_structure_crate_output_list_tables_output_last_evaluated_table_name(resp).cloned(); input.exclusive_start_table_name.is_none() } Err(_) => true, }; if let Err(_) = tx.send(resp).await { // receiving end was dropped return; } if done { return; } } }) }) }\n} On Box::pin : The stream returned by AsyncStream does not implement Unpin. Unfortunately, this makes iteration require an invocation of pin_mut! and generates several hundred lines of compiler errors. Box::pin seems a worthwhile trade off to improve the user experience. On the + Unpin bound : Because auto-traits leak across impl Trait boundaries, + Unpin prevents accidental regressions in the generated code which would break users. On the crate::reflens::... : We use LensGenerator.kt to generate potentially complex accessors to deeply nested fields.","breadcrumbs":"RFCs » RFC-0008: Paginators » Details","id":"156","title":"Details"},"157":{"body":"The builders generated by ergonomic clients will gain the following method, if they represent an operation that implements the Paginated trait: /// Create a paginator for this request\n///\n/// Paginators are used by calling [`send().await`](crate::paginator::ListTablesPaginator::send) which returns a [`Stream`](tokio_stream::Stream).\npub fn paginate(self) -> crate::paginator::ListTablesPaginator { crate::paginator::ListTablesPaginator::new(self.handle, self.inner)\n}","breadcrumbs":"RFCs » RFC-0008: Paginators » Updates to ergonomic clients","id":"157","title":"Updates to ergonomic clients"},"158":{"body":"","breadcrumbs":"RFCs » RFC-0008: Paginators » Discussion Areas","id":"158","title":"Discussion Areas"},"159":{"body":"Calling send().await is not necessary from an API perspective—we could have the paginators impl-stream directly. However, it enables using impl Trait syntax and also makes the API consistent with other SDK APIs.","breadcrumbs":"RFCs » RFC-0008: Paginators » On send().await","id":"159","title":"On send().await"},"16":{"body":"aws-hyper assembles a middleware stack with tower. It provides a way to use an HTTP client other than Hyper, however, it currently has a hard dependency on Hyper & Tokio. hyper::Body is being used directly as the body implementation for responses.","breadcrumbs":"Transport » Where we are today","id":"16","title":"Where we are today"},"160":{"body":"Currently, the core trait we use is tokio_stream::Stream. This is a re-export from futures-util. There are a few other choices: Re-export Stream from tokio_stream. Use futures_util directly","breadcrumbs":"RFCs » RFC-0008: Paginators » On tokio_stream::Stream","id":"160","title":"On tokio_stream::Stream"},"161":{"body":"Currently, the paginators forward the generics from the client (C, M, R) along with their fairly annoying bounds. However, if we wanted to we could simplify this and erase all the generics when the paginator was created. Since everything is code generated, there isn't actually much duplicated code in the generator, just in the generated code.","breadcrumbs":"RFCs » RFC-0008: Paginators » On Generics","id":"161","title":"On Generics"},"162":{"body":"Create and test FnStream abstraction Generate page-level paginators Generate .items() paginators Generate doc hints pointing people to paginators Integration test using mocked HTTP traffic against a generated paginator for a real service Integration test using real traffic","breadcrumbs":"RFCs » RFC-0008: Paginators » Changes Checklist","id":"162","title":"Changes Checklist"},"163":{"body":"Status: Implemented Currently, the AWS Rust SDK's examples are duplicated across awslabs/aws-sdk-rust , smithy-lang/smithy-rs , and awsdocs/aws-doc-sdk-examples . The smithy-rs repository was formerly the source of truth for examples, with the examples being copied over to aws-sdk-rust as part of the release process, and examples were manually copied over to aws-doc-sdk-examples so that they could be included in the developer guide. Now that the SDK is more stable with less frequent breaking changes, the aws-doc-sdk-examples repository can become the source of truth so long as the examples are tested against smithy-rs and continue to be copied into aws-sdk-rust.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » RFC: Examples Consolidation","id":"163","title":"RFC: Examples Consolidation"},"164":{"body":"Examples are authored and maintained in aws-doc-sdk-examples Examples are no longer present in smithy-rs CI in smithy-rs checks out examples from aws-doc-sdk-examples and builds them against the generated SDK. Success for this CI job is optional for merging since there can be a time lag between identifying that examples are broken and fixing them. Examples must be copied into aws-sdk-rust so that the examples for a specific version of the SDK can be easily referenced. Examples must be verified in aws-sdk-rust prior to merging into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Requirements","id":"164","title":"Requirements"},"165":{"body":"A CI job will be added to smithy-rs that: Depends on the CI job that generates the full AWS SDK Checks out the aws-doc-sdk-examples repository Modifies example Cargo.toml files to point to the newly generated AWS SDK crates Runs cargo check on each example This job will not be required to pass for branch protection, but will let us know that examples need to be updated before the next release.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Example CI in smithy-rs","id":"165","title":"Example CI in smithy-rs"},"166":{"body":"The auto-sync job that copies generated code from smithy-rs into the aws-sdk-rust/next branch will be updated to check out the aws-doc-sdk-examples repository and copy the examples into aws-sdk-rust. The example Cargo.toml files will also be updated to point to the local crate paths as part of this process. The aws-sdk-rust CI already requires examples to compile, so merging next into main, the step required to perform a release, will be blocked until the examples are fixed. In the event the examples don't work on the next branch, developers and example writers will need to be able to point the examples in aws-doc-sdk-examples to the generated SDK in next so that they can verify their fixes. This can be done by hand, or a tool can be written to automate it if a significant number of examples need to be fixed.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Auto-sync to aws-sdk-rust from smithy-rs changes","id":"166","title":"Auto-sync to aws-sdk-rust from smithy-rs changes"},"167":{"body":"There are a couple of risks with this approach: Risk: Examples are broken and an urgent fix needs to be released. Possible mitigations: Revert the change that broke the examples and then add the urgent fix Create a patch branch in aws-sdk-rust, apply the fix to that based off an older version of smithy-rs with the fix applied, and merge that into main. Risk: A larger project requires changes to examples prior to GA, but multiple releases need to occur before the project completion. Possible mitigations: If the required changes compile against the older SDK, then just make the changes to the examples. Feature gate any incremental new functionality in smithy-rs, and work on example changes on a branch in aws-doc-sdk-examples. When wrapping up the project, remove the feature gating and merge the examples into the main branch.","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Process Risks","id":"167","title":"Process Risks"},"168":{"body":"","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Alternatives","id":"168","title":"Alternatives"},"169":{"body":"Alternatively, the examples could reside in aws-sdk-rust, be referenced from smithy-rs CI, and get copied into aws-doc-sdk-examples for inclusion in the user guide. Pros: Prior to GA, fixing examples after making breaking changes to the SDK would be easier. Otherwise, Cargo.toml files have to be temporarily modified to point to the aws-sdk-rust/next branch in order to make fixes. If a customer discovers examples via the aws-sdk-rust repository rather than via the SDK user guide, then it would be more obvious how to make changes to examples. At time of writing, the examples in the user guide link to the aws-doc-sdk-examples repository, so if the examples are discovered that way, then updating them should already be clear. Cons: Tooling would need to be built to sync examples from aws-sdk-rust into aws-doc-sdk-examples so that they could be incorporated into the user guide. Creates a circular dependency between the aws-sdk-rust and smithy-rs repositories. CI in smithy-rs needs to exercise examples, which would be in aws-sdk-rust, and aws-sdk-rust has its code generated by smithy-rs. This is workable, but may lead to problems later on. The tooling to auto-sync from aws-sdk-rust into aws-doc-sdk-examples will likely cost more than tooling to temporarily update Cargo.toml files to make example fixes (if that tooling is even necessary).","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » aws-sdk-rust as the source of truth","id":"169","title":"aws-sdk-rust as the source of truth"},"17":{"body":"Extend HttpService to add a sleep method. This is required to enable runtimes other than Tokio to define how they should sleep. Replace hyper::Body in responses with SDK Body. For now, SDKBody will probably privately wrap hyper::Body. Merge aws-hyper into aws-http. Tokio becomes an optional feature—When the Tokio feature is opted out the \"fast path\" variants for the connection variants are cfg'd out. By default, customers get a fully baked HTTP stack, but they can opt out of certain features and BYO implementation of HttpService.","breadcrumbs":"Transport » Where we want to go","id":"17","title":"Where we want to go"},"170":{"body":"Add example CI job to smithy-rs Diff examples in smithy-rs and aws-doc-sdk-examples and move desired differences into aws-doc-sdk-examples Apply example fix PRs from aws-sdk-rust into aws-doc-sdk-examples Update smithy-rs CI to copy examples from aws-doc-sdk-examples rather than from smithy-rs Delete examples from smithy-rs","breadcrumbs":"RFCs » RFC-0009: Example Consolidation » Changes Checklist","id":"170","title":"Changes Checklist"},"171":{"body":"Status: Accepted Waiters are a convenient polling mechanism to wait for a resource to become available or to be deleted. For example, a waiter could be used to wait for a S3 bucket to be created after a call to the CreateBucket API, and this would only require a small amount of code rather than building out an entire polling mechanism manually. At the highest level, a waiter is a simple polling loop (pseudo-Rust): // Track state that contains the number of attempts made and the previous delay\nlet mut state = initial_state(); loop { // Poll the service let result = poll_service().await; // Classify the action that needs to be taken based on the Smithy model match classify(result) { // If max attempts hasn't been exceeded, then retry after a delay. Otherwise, error. Retry => if state.should_retry() { let delay = state.next_retry(); sleep(delay).await; } else { return error_max_attempts(); } // Otherwise, if the termination condition was met, return the output Terminate(result) => return result, }\n} In the AWS SDK for Rust, waiters can be added without making any backwards breaking changes to the current API. This doc outlines the approach to add them in this fashion, but does NOT examine code generating response classification from JMESPath expressions, which can be left to the implementer without concern for the overall API.","breadcrumbs":"RFCs » RFC-0010: Waiters » RFC: Waiters","id":"171","title":"RFC: Waiters"},"172":{"body":"Today, there are three layers of Client that are easy to confuse, so to make the following easier to follow, the following terms will be used: Connector : An implementor of Tower's Service trait that converts a request into a response. This is typically a thin wrapper around a Hyper client. Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This isn't intended to be used directly. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that uses a DynConnector, DefaultMiddleware, and Standard retry policy. All of these are just called Client in code today. This is something that could be clarified in a separate refactor.","breadcrumbs":"RFCs » RFC-0010: Waiters » Terminology","id":"172","title":"Terminology"},"173":{"body":"Waiters must adhere to the Smithy waiter specification . To summarize: Waiters are specified by the Smithy @waitable trait Retry during polling must be exponential backoff with jitter, with the min/max delay times and max attempts configured by the @waitable trait The SDK's built-in retry needs to be replaced by the waiter's retry since the Smithy model can specify retry conditions that are contrary to the defaults. For example, an error that would otherwise be retried by default might be the termination condition for the waiter. Classification of the response must be code generated based on the JMESPath expression in the model.","breadcrumbs":"RFCs » RFC-0010: Waiters » Requirements","id":"173","title":"Requirements"},"174":{"body":"To invoke a waiter, customers will only need to invoke a single function on the AWS Client. For example, if waiting for a S3 bucket to exist, it would look like the following: // Request bucket creation\nclient.create_bucket() .bucket_name(\"my-bucket\") .send() .await()?; // Wait for it to be created\nclient.wait_until_bucket_exists() .bucket_name(\"my-bucket\") .send() .await?; The call to wait_until_bucket_exists() will return a waiter-specific fluent builder with a send() function that will start the polling and return a future. To avoid name conflicts with other API methods, the waiter functions can be added to the client via trait: pub trait WaitUntilBucketExists { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder;\n} This trait would be implemented for the service's fluent client (which will necessitate making the fluent client's handle field pub(crate)).","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter API","id":"174","title":"Waiter API"},"175":{"body":"A waiter trait implementation will merely return a fluent builder: impl WaitUntilBucketExists for Client { fn wait_until_bucket_exists(&self) -> crate::waiter::bucket_exists::Builder { crate::waiter::bucket_exists::Builder::new() }\n} This builder will have a short send() function to kick off the actual waiter implementation: impl Builder { // ... existing fluent builder codegen can be reused to create all the setters and constructor pub async fn send(self) -> Result> { // Builds an input from this builder let input = self.inner.build().map_err(|err| aws_smithy_http::result::SdkError::ConstructionFailure(err.into()))?; // Passes in the client's handle, which contains a Smithy client and client config crate::waiter::bucket_exists::wait(self.handle, input).await }\n} This wait function needs to, in a loop similar to the pseudo-code in the beginning, convert the given input into an operation, replace the default response classifier on it with a no-retry classifier, and then determine what to do next based on that classification: pub async fn wait( handle: Arc, retry::Standard>>, input: HeadBucketInput,\n) -> Result> { loop { let operation = input .make_operation(&handle.conf) .await .map_err(|err| { aws_smithy_http::result::SdkError::ConstructionFailure(err.into()) })?; // Assume `ClassifyRetry` trait is implemented for `NeverRetry` to always return `RetryKind::Unnecessary` let operation = operation.with_retry_classifier(NeverRetry::new()); let result = handle.client.call(operation).await; match classify_result(&input, result) { AcceptorState::Retry => { // The sleep implementation is available here from `handle.conf.sleep_impl` unimplemented!(\"Check if another attempt should be made and calculate delay time if so\") } AcceptorState::Terminate(output) => return output, } }\n} fn classify_result( input: &HeadBucketInput, result: Result>,\n) -> AcceptorState> { unimplemented!( \"The Smithy model would dictate conditions to check here to produce an `AcceptorState`\" )\n} The retry delay time should be calculated by the same exponential backoff with jitter code that the default RetryHandler uses in aws-smithy-client . This function will need to be split up and made available to the waiter implementations so that just the delay can be calculated.","breadcrumbs":"RFCs » RFC-0010: Waiters » Waiter Implementation","id":"175","title":"Waiter Implementation"},"176":{"body":"Codegen fluent builders for waiter input and their send() functions Codegen waiter invocation traits Commonize exponential backoff with jitter delay calculation Codegen wait() functions with delay and max attempts configuration from Smithy model Codegen classify_result() functions based on JMESPath expressions in Smithy model","breadcrumbs":"RFCs » RFC-0010: Waiters » Changes Checklist","id":"176","title":"Changes Checklist"},"177":{"body":"Status: Implemented The AWS SDK for Rust and its supporting Smithy crates need to be published to crates.io so that customers can include them in their projects and also publish crates of their own that depend on them. This doc proposes a short-term solution for publishing to crates.io. This approach is intended to be executed manually by a developer using scripts and an SOP no more than once per week, and should require less than a dev week to implement.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » RFC: Publishing the Alpha SDK to Crates.io","id":"177","title":"RFC: Publishing the Alpha SDK to Crates.io"},"178":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Terminology","id":"178","title":"Terminology"},"179":{"body":"","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Requirements","id":"179","title":"Requirements"},"18":{"body":"The Smithy code generator for Rust (and by extension), the AWS SDK use an Operation abstraction to provide a unified interface for dispatching requests. Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler In the typical case, these configuration options include things like a CredentialsProvider, however, they can also be full middleware layers that will get added by the dispatch stack.","breadcrumbs":"Transport » HTTP Operations » HTTP-based Operations","id":"18","title":"HTTP-based Operations"},"180":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) For now, AWS SDK crates (including aws-config) will maintain a consistent major and minor version number across all services. The latest version of aws-sdk-s3 will always have the same major.minor version as the latest aws-sdk-dynamodb, for example. The patch version is allowed to be different between service crates, but it is unlikely that we will make use of patch versions throughout alpha and dev preview. Smithy runtime crates will have different version numbers from the AWS SDK crates, but will also maintain a consistent major.minor. The pre version tag will be alpha during the Rust SDK alpha, and will be removed once the SDK is in dev preview. During alpha, the major version will always be 0, and the minor will be bumped for all published crates for every release. A later RFC may change the process during dev preview.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Versioning","id":"180","title":"Versioning"},"181":{"body":"Mistakes will inevitably be made, and a mechanism is needed to yank packages while keeping the latest version of the SDK successfully consumable from crates.io. To keep this simple, the entire published batch of crates will be yanked if any crate in that batch needs to be yanked. For example, if 260 crates were published in a batch, and it turns out there's a problem that requires yanking one of them, then all 260 will be yanked. Attempting to do partial yanking will require a lot of effort and be difficult to get right. Yanking should be a last resort.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Yanking","id":"181","title":"Yanking"},"182":{"body":"The following changes will be bundled together as a minor version bump during weekly releases: AWS model updates New features Bug fixes in runtime crates or codegen In exceptional circumstances, a patch version will be issued if the fix doesn't require API breaking changes: CVE discovered in a runtime crate Buggy update to a runtime crate In the event of a CVE being discovered in an external dependency, if the external dependency is internal to a crate, then a patch revision can be issued for that crate to correct it. Otherwise if the CVE is in a dependency that is part of the public API, a minor revision will be issued with an expedited release. For a CVE in generated code, a minor revision will be issued with an expedited release.","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Concrete Scenarios","id":"182","title":"Concrete Scenarios"},"183":{"body":"The short-term approach builds off our pre-crates.io weekly release process. That process was the following: Run script to update AWS models Manually update AWS SDK version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for GitHub actions to generate AWS SDK using newly released smithy-rs Check out aws-sdk-rust, delete existing SDK code, unzip generated SDK in place, and update readme Tag aws-sdk-rust To keep things simple: The Smithy runtime crates will have the same smithy-rs version All AWS crates will have the same AWS SDK version patch revisions are exceptional and will be one-off manually published by a developer All runtime crate version numbers in smithy-rs will be locked at 0.0.0-smithy-rs-head. This is a fake version number that gets replaced when generating the SDK. The SDK generator script in smithy-rs will be updated to: Replace Smithy runtime crate versions with the smithy-rs version from aws/sdk/gradle.properties Replace AWS runtime crate versions with AWS SDK version from aws/sdk/gradle.properties Add correct version numbers to all path dependencies in all the final crates that end up in the build artifacts This will result in all the crates having the correct version and manifests when imported into aws-sdk-rust. From there, a script needs to be written to determine crate dependency order, and publish crates (preferably with throttling and retry) in the correct order. This script needs to be able to recover from an interruption part way through publishing all the crates, and it also needs to output a list of all crate versions published together. This crate list will be commented on the release issue so that yanking the batch can be done if necessary. The new release process would be: Run script to update AWS models Manually update both the AWS SDK version and the smithy-rs version in aws/sdk/gradle.properties in smithy-rs Tag smithy-rs Wait for automation to sync changes to aws-sdk-rust/next Cut a PR to merge aws-sdk-rust/next into aws-sdk-rust/main Tag aws-sdk-rust Run publish script","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Proposal","id":"183","title":"Proposal"},"184":{"body":"Prepare runtime crate manifests for publication to crates.io (https://github.com/smithy-lang/smithy-rs/pull/755) Update SDK generator to set correct crate versions (https://github.com/smithy-lang/smithy-rs/pull/755) Write bulk publish script Write bulk yank script Write automation to sync smithy-rs to aws-sdk-rust","breadcrumbs":"RFCs » RFC-0011: Publishing Alpha to Crates.io » Short-term Changes Checklist","id":"184","title":"Short-term Changes Checklist"},"185":{"body":"Status: RFC During its alpha and dev preview releases, the AWS SDK for Rust adopted a short-term solution for versioning and publishing to crates.io . This doc proposes a long-term versioning strategy that will carry the SDK from dev preview into general availability. This strategy will be implemented in two phases: Dev Preview : The SDK will break with its current version strategy of maintaining consistent major.minor version numbers. Stability and 1.x : This phase begins when the SDK becomes generally available. The major version will be bumped to 1, and backwards breaking changes will no longer be allowed without a major version bump to all crates in the SDK.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » RFC: Independent Crate Versioning","id":"185","title":"RFC: Independent Crate Versioning"},"186":{"body":"AWS SDK Crate : A crate that provides a client for calling a given AWS service, such as aws-sdk-s3 for calling S3. AWS Runtime Crate : Any runtime crate that the AWS SDK generated code relies on, such as aws-types. Smithy Runtime Crate : Any runtime crate that the smithy-rs generated code relies on, such as smithy-types.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Terminology","id":"186","title":"Terminology"},"187":{"body":"","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Requirements","id":"187","title":"Requirements"},"188":{"body":"Cargo uses semver for versioning, with a major.minor.patch-pre format: major: Incompatible API changes minor: Added functionality in backwards compatible manner patch: Backwards compatible bug fixes pre: Pre-release version tag (omitted for normal releases) In the new versioning strategy, the minor version number will no longer be coordinated across all SDK and Smithy runtime crates. During phases 1 and 2, the major version will always be 0, and the following scheme will be used: minor: New features Breaking changes Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3: major: Breaking changes minor: Changes that aren't breaking Dependency updates for dependencies that are part of the public API Model updates with API changes For code-generated crates: when a newer version of smithy-rs is used to generate the crate patch: Bug fixes that do not break backwards compatibility Model updates that only have documentation changes During phase 3, bumps to the major version must be coordinated across all SDK and runtime crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning","id":"188","title":"Versioning"},"189":{"body":"Since there will no longer be one SDK \"version\", release tags will be dates in YYYY-MM-DD format rather than version numbers. Additionally, the SDK's user agent string will need to include a separate service version number (this requirement has already been implemented).","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Release Identification","id":"189","title":"Release Identification"},"19":{"body":"This section details the flow of a request through the SDK until a response is returned to the user.","breadcrumbs":"Transport » HTTP Operations » Operation Phases","id":"19","title":"Operation Phases"},"190":{"body":"It must be possible to yank an entire release with a single action. The publisher tool must be updated to understand which crate versions were released with a given release tag, and be able to yank all the crates published from that tag.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"190","title":"Yanking"},"191":{"body":"Phase 1 will address the following challenges introduced by uncoordinating the major.minor versions: Tracking of versions associated with a release tag Creation of version bump process for code generated crates Enforcement of version bump process in runtime crates Yanking of versions associated with a release tag","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 1: Dev Preview","id":"191","title":"Phase 1: Dev Preview"},"192":{"body":"A new manifest file will be introduced in the root of aws-sdk-rust named versions.toml that describes all versioning information for any given commit in the repository. In the main branch, the versions.toml in tagged commits will become the source of truth for which crate versions belong to that release, as well as additional metadata that's required for maintaining version process in the future. The special 0.0.0-smithy-rs-head version that is used prior to Phase 1 for maintaining the runtime crate versions will no longer be used (as detailed in Versioning for Runtime Crates ). This format will look as follows: smithy_rs_version = \"\" [aws-smithy-types]\nversion = \"0.50.1\" [aws-config]\nversion = \"0.40.0\" [aws-sdk-s3]\nversion = \"0.89.0\"\nmodel_hash = \"\" # ... The auto-sync tool is responsible for maintaining this file. When it generates a new SDK, it will take the version numbers from runtime crates directly, and it will use the rules from the next section to determine the version numbers for the generated crates.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Version Tracking","id":"192","title":"Version Tracking"},"193":{"body":"Code generated crates will have their minor version bumped when the version of smithy-rs used to generate them changes, or when model updates with API changes are made. Three pieces of information are required to handle this process: the previously released version number, the smithy-rs version used to generate the code, and the level of model updates being applied. For this last one, if there are multiple model updates that affect only documentation, but then one model update that affects an API, then as a whole they will be considered as affecting an API and require a minor version bump. The previously released version number will be retrieved from crates.io using its API. The smithy-rs version used during code generation will become a build artifact that is saved to versions.toml in aws-sdk-rust . During phase 1, the tooling required to know if a model is a documentation-only change will not be available, so all model changes will result in a minor version bump during this phase. Overall, determining a generated crate's version number looks as follows: flowchart TD start[Generate crate version] --> smithyrschanged{A. smithy-rs changed?} smithyrschanged -- Yes --> minor1[Minor version bump] smithyrschanged -- No --> modelchanged{B. model changed?} modelchanged -- Yes --> minor2[Minor version bump] modelchanged -- No --> keep[Keep current version] A: smithy-rs changed? : Compare the smithy_rs_version in the previous versions.toml with the next versions.toml file, and if the values are different, consider smithy-rs to have changed. B: model changed? : Similarly, compare the model_hash for the crate in versions.toml.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Code Generated (SDK Service) Crates","id":"193","title":"Versioning for Code Generated (SDK Service) Crates"},"194":{"body":"The old scheme of all runtime crates in smithy-rs having a fake 0.0.0-smithy-rs-head version number with a build step to replace those with a consistent major.minor will be removed. These runtime crates will begin having their actual next version number in the Cargo.toml file in smithy-rs. This introduces a new problem where a developer can forget to bump a runtime crate version, so a method of process enforcement needs to be introduced. This will be done through CI when merging into smithy-rs/main and repeated when merging into aws-sdk-rust/main. The following checks need to be run for runtime crates: flowchart TD A[Check runtime crate] --> B{A. Crate has changed?} B -- Yes --> C{B. Minor bumped?} B -- No --> H{C. Version changed?} C -- Yes --> K[Pass] C -- No --> E{D. Patch bumped?} E -- Yes --> F{E. Semverver passes?} E -- No --> L[Fail] F -- Yes --> D[Pass] F -- No --> G[Fail] H -- Yes --> I[Fail] H -- No --> J[Pass] A: Crate has changed? The crate's source files and manifest will be hashed for the previous version and the next version. If these hashes match, then the crate is considered unchanged. B: Minor bumped? The previous version is compared against the next version to see if the minor version number was bumped. C: Version changed? The previous version is compared against the next version to see if it changed. D: Patch bumped? The previous version is compared against the next version to see if the patch version number was bumped. E: Semverver passes? Runs rust-semverver against the old and new versions of the crate. If semverver fails to run (for example, if it needs to be updated to the latest nightly to succeed), then fail CI saying that either semverver needs maintenance, or that a minor version bump is required. If semverver results in errors, fail CI indicating a minor version bump is required. If semverver passes, then pass CI. When running semverver, the path dependencies of the crate under examination should be updated to be crates.io references if there were no changes in those crates since the last public to crates.io. Otherwise, the types referenced from those crates in the public API will always result in breaking changes since, as far as the Rust compiler is concerned, they are different types originating from separate path-dependency crates. For CI, the aws-sdk-rust/main branch's versions.toml file is the source of truth for the previous release's crate versions and source code.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Versioning for Runtime Crates","id":"194","title":"Versioning for Runtime Crates"},"195":{"body":"The publisher tool will be updated to read the versions.toml to yank all versions published in a release. This process will look as follows: Take a path to a local clone of the aws-sdk-rust repository Confirm the working tree is currently unmodified and on a release tag. Read versions.toml and print out summary of crates to yank Confirm with user before proceeding Yank crates","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Yanking","id":"195","title":"Yanking"},"196":{"body":"Update rust-semverver to a newer nightly that can compile aws-smithy-client Establish initial versions.toml in aws-sdk-rust/main Set version numbers in runtime crates in smithy-rs Update the auto-sync tool to generate versions.toml Create CI tool to check runtime crate version Integrate with smithy-rs/main CI Integrate with aws-sdk-rust/main CI Update CI to verify no older runtime crates are used. For example, if aws-smithy-client is bumped to 0.50.0, then verify no crates (generated or runtime) depend on 0.49.0 or lower. Estimate: 2-4 dev weeks","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Changes Checklist","id":"196","title":"Changes Checklist"},"197":{"body":"When stabilizing to 1.x, the version process will stay the same, but the minor version bumps caused by version bumping runtime crates, updating models, or changing the code generator will be candidate for automatic upgrade per semver. At that point, no further API breaking changes can be made without a major version bump.","breadcrumbs":"RFCs » RFC-0012: Independent Crate Versioning » Phase 2: Stability and 1.x","id":"197","title":"Phase 2: Stability and 1.x"},"198":{"body":"Status: RFC Adding a callback API to ByteStream and SdkBody will enable developers using the SDK to implement things like checksum validations and 'read progress' callbacks.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » RFC: Callback APIs for ByteStream and SdkBody","id":"198","title":"RFC: Callback APIs for ByteStream and SdkBody"},"199":{"body":"Note that comments starting with '//' are not necessarily going to be included in the actual implementation and are intended as clarifying comments for the purposes of this RFC. // in aws_smithy_http::callbacks... /// A callback that, when inserted into a request body, will be called for corresponding lifecycle events.\ntrait BodyCallback: Send { /// This lifecycle function is called for each chunk **successfully** read. If an error occurs while reading a chunk, /// this method will not be called. This method takes `&mut self` so that implementors may modify an implementing /// struct/enum's internal state. Implementors may return an error. fn update(&mut self, #[allow(unused_variables)] bytes: &[u8]) -> Result<(), BoxError> { Ok(()) } /// This callback is called once all chunks have been read. If the callback encountered one or more errors /// while running `update`s, this is how those errors are raised. Implementors may return a [`HeaderMap`][HeaderMap] /// that will be appended to the HTTP body as a trailer. This is only useful to do for streaming requests. fn trailers(&self) -> Result>, BoxError> { Ok(None) } /// Create a new `BodyCallback` from an existing one. This is called when a `BodyCallback` needs to be /// re-initialized with default state. For example: when a request has a body that needs to be /// rebuilt, all callbacks for that body need to be run again but with a fresh internal state. fn make_new(&self) -> Box;\n} impl BodyCallback for Box { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { BodyCallback::update(self, bytes) } fn trailers(&self) -> Result>, BoxError> { BodyCallback::trailers(self) } fn make_new(&self) -> Box { BodyCallback::make_new(self) }\n} The changes we need to make to ByteStream: (The current version of ByteStream and Inner can be seen here .) // in `aws_smithy_http::byte_stream`... // We add a new method to `ByteStream` for inserting callbacks\nimpl ByteStream { // ...other impls omitted // A \"builder-style\" method for setting callbacks pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.inner.with_body_callback(body_callback); self }\n} impl Inner { // `Inner` wraps an `SdkBody` which has a \"builder-style\" function for adding callbacks. pub fn with_body_callback(&mut self, body_callback: Box) -> &mut Self { self.body.with_body_callback(body_callback); self }\n} The changes we need to make to SdkBody: (The current version of SdkBody can be seen here .) // In aws_smithy_http::body... #[pin_project]\npub struct SdkBody { #[pin] inner: Inner, rebuild: Option Inner) + Send + Sync>>, // We add a `Vec` to store the callbacks #[pin] callbacks: Vec>,\n} impl SdkBody { // We update the various fns that create `SdkBody`s to create an empty `Vec` to store callbacks. // Those updates are very simple so I've omitted them from this code example. fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let mut this = self.project(); // This block is old. I've included for context. let polling_result = match this.inner.project() { InnerProj::Once(ref mut opt) => { let data = opt.take(); match data { Some(bytes) if bytes.is_empty() => Poll::Ready(None), Some(bytes) => Poll::Ready(Some(Ok(bytes))), None => Poll::Ready(None), } } InnerProj::Streaming(body) => body.poll_data(cx).map_err(|e| e.into()), InnerProj::Dyn(box_body) => box_body.poll_data(cx), InnerProj::Taken => { Poll::Ready(Some(Err(\"A `Taken` body should never be polled\".into()))) } }; // This block is new. match &polling_result { // When we get some bytes back from polling, pass those bytes to each callback in turn Poll::Ready(Some(Ok(bytes))) => { for callback in this.callbacks.iter_mut() { // Callbacks can run into errors when reading bytes. They'll be surfaced here callback.update(bytes)?; } } // When we're done polling for bytes, run each callback's `trailers()` method. If any calls to // `trailers()` return an error, propagate that error up. Otherwise, continue. Poll::Ready(None) => { for callback_result in this.callbacks.iter().map(BodyCallback::trailers) { if let Err(e) = callback_result { return Poll::Ready(Some(Err(e))); } } } _ => (), } // Now that we've inspected the polling result, all that's left to do is to return it. polling_result } // This function now has the added responsibility of cloning callback functions (but with fresh state) // in the case that the `SdkBody` needs to be rebuilt. pub fn try_clone(&self) -> Option { self.rebuild.as_ref().map(|rebuild| { let next = rebuild(); let callbacks = self .callbacks .iter() .map(Callback::make_new) .collect(); Self { inner: next, rebuild: self.rebuild.clone(), callbacks, } }) } pub fn with_callback(&mut self, callback: BodyCallback) -> &mut Self { self.callbacks.push(callback); self }\n} /// Given two [`HeaderMap`][HeaderMap]s, merge them together and return the merged `HeaderMap`. If the\n/// two `HeaderMap`s share any keys, values from the right `HeaderMap` be appended to the left `HeaderMap`.\n///\n/// # Example\n///\n/// ```rust\n/// let header_name = HeaderName::from_static(\"some_key\");\n///\n/// let mut left_hand_side_headers = HeaderMap::new();\n/// left_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"lhs value\").unwrap(),\n/// );\n///\n/// let mut right_hand_side_headers = HeaderMap::new();\n/// right_hand_side_headers.insert(\n/// header_name.clone(),\n/// HeaderValue::from_str(\"rhs value\").unwrap(),\n/// );\n///\n/// let merged_header_map =\n/// append_merge_header_maps(left_hand_side_headers, right_hand_side_headers);\n/// let merged_values: Vec<_> = merged_header_map\n/// .get_all(header_name.clone())\n/// .into_iter()\n/// .collect();\n///\n/// // Will print 'some_key: [\"lhs value\", \"rhs value\"]'\n/// println!(\"{}: {:?}\", header_name.as_str(), merged_values);\n/// ```\nfn append_merge_header_maps( mut lhs: HeaderMap, rhs: HeaderMap,\n) -> HeaderMap { let mut last_header_name_seen = None; for (header_name, header_value) in rhs.into_iter() { // For each yielded item that has None provided for the `HeaderName`, // then the associated header name is the same as that of the previously // yielded item. The first yielded item will have `HeaderName` set. // https://docs.rs/http/latest/http/header/struct.HeaderMap.html#method.into_iter-2 match (&mut last_header_name_seen, header_name) { (_, Some(header_name)) => { lhs.append(header_name.clone(), header_value); last_header_name_seen = Some(header_name); } (Some(header_name), None) => { lhs.append(header_name.clone(), header_value); } (None, None) => unreachable!(), }; } lhs\n} impl http_body::Body for SdkBody { // The other methods have been omitted because they haven't changed fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let header_map = self .callbacks .iter() .filter_map(|callback| { match callback.trailers() { Ok(optional_header_map) => optional_header_map, // early return if a callback encountered an error Err(e) => { return e }, } }) // Merge any `HeaderMap`s from the last step together, one by one. .reduce(append_merge_header_maps); Poll::Ready(Ok(header_map)) }\n}","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » The Implementation","id":"199","title":"The Implementation"},"2":{"body":"The Rust SDK is \"modular\" meaning that each AWS service is its own crate. Each crate provides two layers to access the service: The \"fluent\" API. For most use cases, a high level API that ties together connection management and serialization will be the quickest path to success. #[tokio::main]\nasync fn main() { let client = dynamodb::Client::from_env(); let tables = client .list_tables() .limit(10) .send() .await.expect(\"failed to load tables\");\n} The \"low-level\" API: It is also possible for customers to assemble the pieces themselves. This offers more control over operation construction & dispatch semantics: #[tokio::main]\nasync fn main() { let conf = dynamodb::Config::builder().build(); let conn = aws_hyper::Client::https(); let operation = dynamodb::ListTables::builder() .limit(10) .build(&conf) .expect(\"invalid operation\"); let tables = conn.call(operation).await.expect(\"failed to list tables\");\n} The Fluent API is implemented as a thin wrapper around the core API to improve ergonomics.","breadcrumbs":"Design Overview » External API Overview","id":"2","title":"External API Overview"},"20":{"body":"A customer interacts with the SDK builders to construct an input. The build() method on an input returns an Operation. This codifies the base HTTP request & all the configuration and middleware layers required to modify and dispatch the request. pub struct Operation { request: Request, response_handler: H, _retry_policy: R,\n} pub struct Request { inner: http::Request, properties: PropertyBag,\n} For most requests, .build() will NOT consume the input. A user can call .build() multiple times to produce multiple operations from the same input. By using a property bag, we can define the Operation in Smithy core. AWS specific configuration can be added later in the stack.","breadcrumbs":"Transport » HTTP Operations » Input Construction","id":"20","title":"Input Construction"},"200":{"body":"What follows is a simplified example of how this API could be used to introduce checksum validation for outgoing request payloads. In this example, the checksum calculation is fallible and no validation takes place. All it does it calculate the checksum of some data and then returns the checksum of that data when trailers is called. This is fine because it's being used to calculate the checksum of a streaming body for a request. #[derive(Default)]\nstruct Crc32cChecksumCallback { state: Option,\n} impl ReadCallback for Crc32cChecksumCallback { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => { self.state = Some(crc32c_append(crc, bytes)) } None => { Some(crc32c(&bytes)) } }; Ok(()) } fn trailers(&self) -> Result>, Box> { let mut header_map = HeaderMap::new(); // This checksum name is an Amazon standard and would be a `const` in the real implementation let key = HeaderName::from_static(\"x-amz-checksum-crc32c\"); // If no data was provided to this callback and no CRC was ever calculated, we return zero as the checksum. let crc = self.state.unwrap_or_default(); // Convert the CRC to a string, base 64 encode it, and then convert it into a `HeaderValue`. let value = HeaderValue::from_str(&base64::encode(crc.to_string())).expect(\"base64 will always produce valid header values\"); header_map.insert(key, value); Some(header_map) } fn make_new(&self) -> Box { Box::new(Crc32cChecksumCallback::default()) }\n} NOTE: If Crc32cChecksumCallback needed to validate a response, then we could modify it to check its internal state against a target checksum value and calling trailers would produce an error if the values didn't match. In order to use this in a request, we'd modify codegen for that request's service. We'd check if the user had requested validation and also check if they'd pre-calculated a checksum. If validation was requested but no pre-calculated checksum was given, we'd create a callback similar to the one above Then, we'd create a new checksum callback and: (if streaming) we'd set the checksum callback on the request body object (if non-streaming) we'd immediately read the body and call BodyCallback::update manually. Once all data was read, we'd get the checksum by calling trailers and insert that data as a request header.","breadcrumbs":"RFCs » RFC-0013: Body Callback APIs » Implementing Checksums","id":"200","title":"Implementing Checksums"},"201":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. While it is currently possible for users to implement request timeouts by racing operation send futures against timeout futures, this RFC proposes a more ergonomic solution that would also enable users to set timeouts for things like TLS negotiation and \"time to first byte\".","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » RFC: Fine-grained timeout configuration","id":"201","title":"RFC: Fine-grained timeout configuration"},"202":{"body":"There's a lot of terminology to define, so I've broken it up into three sections.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Terminology","id":"202","title":"Terminology"},"203":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. This is not generated and lives in the aws-smithy-client crate. Fluent Client : A code-generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier. AWS Client : A specialized Fluent Client that defaults to using a DynConnector, AwsMiddleware, and Standard retry policy. Shared Config : An aws_types::Config struct that is responsible for storing shared configuration data that is used across all services. This is not generated and lives in the aws-types crate. Service-specific Config : A code-generated Config that has methods for setting service-specific configuration. Each Config is defined in the config module of its parent service. For example, the S3-specific config struct is useable from aws_sdk_s3::config::Config and re-exported as aws_sdk_s3::Config. In this case, \"service\" refers to an AWS offering like S3.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » General terms","id":"203","title":"General terms"},"204":{"body":"Service : A trait defined in the tower-service crate . The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Layer : Layers are a higher-order abstraction over services that is used to compose multiple services together, creating a new service from that combination. Nothing prevents us from manually wrapping services within services, but Layers allow us to do it in a flexible and generic manner. Layers don't directly act on data but instead can wrap an existing service with additional functionality, creating a new service. Layers can be thought of as middleware. NOTE: The use of Layers can produce compiler errors that are difficult to interpret and defining a layer requires a large amount of boilerplate code. Middleware : a term with several meanings, Generically speaking, middleware are similar to Services and Layers in that they modify requests and responses. In the SDK, \"Middleware\" refers to a layer that can be wrapped around a DispatchService. In practice, this means that the resulting Service (and the inner service) must meet the bound T: where T: Service. Note: This doesn't apply to the middlewares we use when generating presigned request because those don't wrap a DispatchService. The most notable example of a Middleware is the AwsMiddleware . Other notable examples include MapRequest , AsyncMapRequest , and ParseResponse . DispatchService : The innermost part of a group of nested services. The Service that actually makes an HTTP call on behalf of a request. Responsible for parsing success and error responses. Connector : a term with several meanings, DynConnectors (a struct that implements DynConnect ) are Services with their specific type erased so that we can do dynamic dispatch. A term from hyper for any object that implements the Connect trait. Really just an alias for tower_service::Service . Sometimes referred to as a Connection. Stage : A form of middleware that's not related to tower. These currently function as a way of transforming requests and don't have the ability to transform responses. Stack : higher order abstraction over Layers defined in the tower crate e.g. Layers wrap services in one another and Stacks wrap layers within one another.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » HTTP stack terms","id":"204","title":"HTTP stack terms"},"205":{"body":"Connect Timeout : A limit on the amount of time after making an initial connect attempt on a socket to complete the connect-handshake. TODO: the runtime is based on Hyper which reuses connection and doesn't currently have a way of guaranteeing that a fresh connection will be use for a given request. TLS Negotiation Timeout : A limit on the amount of time a TLS handshake takes from when the CLIENT HELLO message is sent to the time the client and server have fully negotiated ciphers and exchanged keys. Time to First Byte Timeout : Sometimes referred to as a \"read timeout.\" A limit on the amount of time an application takes to attempt to read the first byte over an established, open connection after write request. HTTP Request Timeout For A Single Attempt : A limit on the amount of time it takes for the first byte to be sent over an established, open connection and when the last byte is received from the service. HTTP Request Timeout For Multiple Attempts : This timeout acts like the previous timeout but constrains the total time it takes to make a request plus any retries. NOTE: In a way, this is already possible in that users are free to race requests against timer futures with the futures::future::select macro or to use tokio::time::timeout . See relevant discussion in hyper#1097","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Timeout terms","id":"205","title":"Timeout terms"},"206":{"body":"Just like with Retry Behavior Configuration , these settings can be configured in several places and have the same precedence rules (paraphrased here for clarity) . Service-specific config builders Shared config builders Environment variables Profile config file (e.g., ~/.aws/credentials) The above list is in order of decreasing precedence e.g. configuration set in an app will override values from environment variables.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuring timeouts","id":"206","title":"Configuring timeouts"},"207":{"body":"The table below details the specific ways each timeout can be configured. In all cases, valid values are non-negative floats representing the number of seconds before a timeout is triggered. Timeout Environment Variable AWS Config Variable Builder Method Connect AWS_CONNECT_TIMEOUT connect_timeout connect_timeout TLS Negotiation AWS_TLS_NEGOTIATION_TIMEOUT tls_negotiation_timeout tls_negotiation_timeout Time To First Byte AWS_READ_TIMEOUT read_timeout read_timeout HTTP Request - single attempt AWS_API_CALL_ATTEMPT_TIMEOUT api_call_attempt_timeout api_call_attempt_timeout HTTP Request - all attempts AWS_API_CALL_TIMEOUT api_call_timeout api_call_timeout","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Configuration options","id":"207","title":"Configuration options"},"208":{"body":"QUESTION: How does the SDK currently handle these defaults?","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » SDK-specific defaults set by AWS service teams","id":"208","title":"SDK-specific defaults set by AWS service teams"},"209":{"body":"hjr3/hyper-timeout is a Connector for hyper that enables setting connect, read, and write timeouts sfackler/tokio-io-timeout provides timeouts for tokio IO operations. Used within hyper-timeout. [tokio::time::sleep_until] creates a Future that completes after some time has elapsed. Used within tokio-io-timeout.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Prior Art","id":"209","title":"Prior Art"},"21":{"body":"In order to construct an operation, the generated code injects appropriate middleware & configuration via the configuration property bag. It does this by reading the configuration properties out of the service config, copying them as necessary, and loading them into the Request: // This is approximately the generated code, I've cleaned a few things up for readability.\npub fn build(self, config: &dynamodb::config::Config) -> Operation { let op = BatchExecuteStatement::new(BatchExecuteStatementInput { statements: self.statements, }); let req = op.build_http_request().map(SdkBody::from); let mut req = operation::Request::new(req); let mut props = req.properties_mut(); props.insert_signing_config(config.signing_service()); props.insert_endpoint_resolver(config.endpoint_resolver.clone()); Operation::new(req)\n}","breadcrumbs":"Transport » HTTP Operations » Operation Construction","id":"21","title":"Operation Construction"},"210":{"body":"Timeouts are achieved by racing a future against a tokio::time::Sleep future. The question, then, is \"how can I create a future that represents a condition I want to watch for?\". For example, in the case of a ConnectTimeout, how do we watch an ongoing request to see if it's completed the connect-handshake? Our current stack of Middleware acts on requests at different levels of granularity. The timeout Middlewares will be no different.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Behind the scenes","id":"210","title":"Behind the scenes"},"211":{"body":"View AwsMiddleware in GitHub #[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsMiddleware;\nimpl tower::Layer for AwsMiddleware { type Service = >::Service; fn layer(&self, inner: S) -> Self::Service { let credential_provider = AsyncMapRequestLayer::for_mapper(CredentialsStage::new()); let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); let endpoint_resolver = MapRequestLayer::for_mapper(AwsAuthStage); let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); ServiceBuilder::new() .layer(endpoint_resolver) .layer(user_agent) .layer(credential_provider) .layer(signer) .service(inner) }\n} The above code is only included for context. This RFC doesn't define any timeouts specific to AWS so AwsMiddleware won't require any changes.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for AWS Client requests","id":"211","title":"Middlewares for AWS Client requests"},"212":{"body":"View aws_smithy_client::Client::call_raw in GitHub impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let mut svc = ServiceBuilder::new() // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} The Smithy Client creates a new Stack of services to handle each request it sends. Specifically: A method retry is used set the retry handler. The configuration for this was set during creation of the Client. ParseResponseLayer inserts a service for transforming responses into operation-specific outputs or errors. The O generic parameter of input is what decides exactly how the transformation is implemented. A middleware stack that was included during Client creation is inserted into the stack. In the case of the AWS SDK, this would be AwsMiddleware. DispatchLayer inserts a service for transforming an http::Request into an operation::Request. It's also responsible for re-attaching the property bag from the Operation that triggered the request. The innermost Service is a DynConnector wrapping a hyper client (which one depends on the TLS implementation was enabled by cargo features.) The HTTP Request Timeout For A Single Attempt and HTTP Request Timeout For Multiple Attempts can be implemented at this level. The same Layer can be used to create both TimeoutServices. The TimeoutLayer would require two inputs: sleep_fn: A runtime-specific implementation of sleep. The SDK is currently tokio-based and would default to tokio::time::sleep (this default is set in the aws_smithy_async::rt::sleep module.) The duration of the timeout as a std::time::Duration The resulting code would look like this: impl Client where C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ // ...other methods omitted pub async fn call_raw( &self, input: Operation, ) -> Result, SdkError> where R::Policy: bounds::SmithyRetryPolicy, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { let connector = self.connector.clone(); let sleep_fn = aws_smithy_async::rt::sleep::default_async_sleep(); let mut svc = ServiceBuilder::new() .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_timeout(), )) // Create a new request-scoped policy .retry(self.retry_policy.new_request_policy()) .layer(TimeoutLayer::new( sleep_fn, self.timeout_config.api_call_attempt_timeout(), )) .layer(ParseResponseLayer::::new()) // These layers can be considered as occurring in order. That is, first invoke the // customer-provided middleware, then dispatch dispatch over the wire. .layer(&self.middleware) .layer(DispatchLayer::new()) .service(connector); svc.ready().await?.call(input).await }\n} Note: Our HTTP client supports multiple TLS implementations. We'll likely have to implement this feature once per library. Timeouts will be implemented in the following places: HTTP request timeout for multiple requests will be implemented as the outermost Layer in Client::call_raw. HTTP request timeout for a single request will be implemented within RetryHandler::retry. Time to first byte, TLS negotiation, and connect timeouts will be implemented within the central hyper connector.","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Middlewares for Smithy Client requests","id":"212","title":"Middlewares for Smithy Client requests"},"213":{"body":"Changes are broken into to sections: HTTP requests (single or multiple) are implementable as layers within our current stack Other timeouts will require changes to our dependencies and may be slower to implement","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Changes checklist","id":"213","title":"Changes checklist"},"214":{"body":"Add TimeoutConfig to smithy-types Add TimeoutConfigProvider to aws-config Add provider that fetches config from environment variables Add provider that fetches config from profile Add timeout method to aws_types::Config for setting timeout configuration Add timeout method to generated Configs too Create a generic TimeoutService and accompanying Layer TimeoutLayer should accept a sleep function so that it doesn't have a hard dependency on tokio insert a TimeoutLayer before the RetryPolicy to handle timeouts for multiple-attempt requests insert a TimeoutLayer after the RetryPolicy to handle timeouts for single-attempt requests Add tests for timeout behavior test multi-request timeout triggers after 3 slow retries test single-request timeout triggers correctly test single-request timeout doesn't trigger if request completes in time","breadcrumbs":"RFCs » RFC-0014: Fine-grained timeout configuration » Implementing HTTP request timeouts","id":"214","title":"Implementing HTTP request timeouts"},"215":{"body":"Status: Accepted","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » RFC: How Cargo \"features\" should be used in the SDK and runtime crates","id":"215","title":"RFC: How Cargo \"features\" should be used in the SDK and runtime crates"},"216":{"body":"What is a feature? Here's a definition from the Cargo Book section on features : Cargo \"features\" provide a mechanism to express conditional compilation and optional dependencies. A package defines a set of named features in the [features] table of Cargo.toml, and each feature can either be enabled or disabled. Features for the package being built can be enabled on the command-line with flags such as --features. Features for dependencies can be enabled in the dependency declaration in Cargo.toml. We use features in a majority of our runtime crates and in all of our SDK crates. For example, aws-sigv4 uses them to enable event streams. Another common use case is exhibited by aws-sdk-s3 which uses them to enable the tokio runtime and the TLS implementation used when making requests.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Some background on features","id":"216","title":"Some background on features"},"217":{"body":"The Cargo book has this to say: When a dependency is used by multiple packages, Cargo will use the union of all features enabled on that dependency when building it. This helps ensure that only a single copy of the dependency is used. A consequence of this is that features should be additive . That is, enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change .","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Features should be additive","id":"217","title":"Features should be additive"},"218":{"body":"Despite the constraints outlined above, we should use features in the SDKs because of the benefits they bring: Features enable users to avoid compiling code that they won't be using. Additionally, features allow both general and specific control of compiled code, serving the needs of both novice and expert users. A single feature in a crate can activate or deactivate multiple features exposed by that crate's dependencies, freeing the user from having to specifically activate or deactivate them. Features can help users understand what a crate is capable of in the same way that looking at a graph of a crate's modules can. When using features, we should adhere to the guidelines outlined below.","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » What does this mean for the SDK?","id":"218","title":"What does this mean for the SDK?"},"219":{"body":"As noted earlier in an excerpt from the Cargo book: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features. A feature should not introduce a SemVer-incompatible change . #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn tls_adapter(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn tls_adapter( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} When the example code above is compiled with both features enabled, compilation will fail with a \"duplicate definitions with name tls_adapter\" error. Also, note that the return type of the function differs between the two versions. This is a SemVer-incompatible change. Here's an updated version of the example that fixes these issues: #[cfg(feature = \"rustls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using Rustls. pub fn rustls(self) -> ClientBuilder, M, R> { self.connector(Adapter::builder().build(crate::conns::https())) }\n} #[cfg(feature = \"native-tls\")]\nimpl ClientBuilder<(), M, R> { /// Connect to the service over HTTPS using the native TLS library on your platform. pub fn native_tls( self, ) -> ClientBuilder>, M, R> { self.connector(Adapter::builder().build(crate::conns::native_tls())) }\n} Both features can now be enabled at once without creating a conflict. Since both methods have different names, it's now Ok for them to have different return types. This is real code, see it in context","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Avoid writing code that relies on only activating one feature from a set of mutually exclusive features.","id":"219","title":"Avoid writing code that relies on only activating one feature from a set of mutually exclusive features."},"22":{"body":"The Rust SDK endeavors to behave as predictably as possible. This means that if at all possible we will not dispatch extra HTTP requests during the dispatch of normal operation. Making this work is covered in more detail in the design of credentials providers & endpoint resolution. The upshot is that we will always prefer a design where the user has explicit control of when credentials are loaded and endpoints are resolved. This doesn't mean that users can't use easy-to-use options (We will provide an automatically refreshing credentials provider), however, the credential provider won't load requests during the dispatch of an individual request.","breadcrumbs":"Transport » HTTP Operations » Operation Dispatch and Middleware","id":"22","title":"Operation Dispatch and Middleware"},"220":{"body":"At the risk of seeming repetitive, the Cargo book says: enabling a feature should not disable functionality, and it should usually be safe to enable any combination of features Conditionally compiling code when a feature is not activated can make it hard for users and maintainers to reason about what will happen when they activate a feature. This is also a sign that a feature may not be \"additive\". NOTE : It's ok to use #[cfg(not())] to conditionally compile code based on a user's OS. It's also useful when controlling what code gets rendered when testing or when generating docs. One case where using not is acceptable is when providing a fallback when no features are set: #[cfg(feature = \"rt-tokio\")]\npub fn default_async_sleep() -> Option> { Some(sleep_tokio())\n} #[cfg(not(feature = \"rt-tokio\"))]\npub fn default_async_sleep() -> Option> { None\n}","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » We should avoid using #[cfg(not(feature = \"some-feature\"))]","id":"220","title":"We should avoid using #[cfg(not(feature = \"some-feature\"))]"},"221":{"body":"Because Cargo will use the union of all features enabled on a dependency when building it, we should be wary of marking features as default. Once we do mark features as default, users that want to exclude code and dependencies brought in by those features will have a difficult time doing so. One need look no further than this issue submitted by a user that wanted to use Native TLS and struggled to make sure that Rustls was actually disabled (This issue was resolved in this PR which removed default features from our runtime crates.) This is not to say that we should never use them, as having defaults for the most common use cases means less work for those users. When a default feature providing some functionality is disabled, active features must not automatically replace that functionality As the SDK is currently designed, the TLS implementation in use can change depending on what features are pulled in. Currently, if a user disables default-features (which include rustls) and activates the native-tls feature, then we automatically use native-tls when making requests. For an example of what this looks like from the user's perspective, see this example . This RFC proposes that we should have a single default for any configurable functionality and that that functionality depends on a corresponding default feature being active. If default-features are disabled, then so is the corresponding default functionality. In its place would be functionality that fails fast with a message describing why it failed (a default was deactivated but the user didn't set a replacement) , and what the user should do to fix it (with links to documentation and examples where necessary) . We should use compile-time errors to communicate failures with users, or panics for cases that can't be evaluated at compile-time. For an example: Say you have a crate with features a, b, c that all provide some version of functionality foo. Feature a is part of default-features. When no-default-features = true but features b and c are active, don't automatically fall back to b or c. Instead, emit an error with a message like this: \"When default features are disabled, you must manually set foo. Features b and c active; You can use one of those. See an example of setting a custom foo here: link-to-docs.amazon.com/setting-foo \"","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Don't default to defining \"default features\"","id":"221","title":"Don't default to defining \"default features\""},"222":{"body":"How to tell what \"features\" are available per crate? How do I 'pass down' feature flags to subdependencies in Cargo? A small selection of feature-related GitHub issues submitted for popular crates The feature preserve_order is not \"purely additive,\" which makes it impossible to use serde_yaml 0.5.0 and clap in the same program cargo features (verbose-errors may be other?) should be additive Mutually exclusive features are present in profiling-procmacros Clang-sys features not additive","breadcrumbs":"RFCs » RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates » Further reading","id":"222","title":"Further reading"},"223":{"body":"Status: Implemented We can't currently update the S3 SDK because we don't support the new \"Flexible Checksums\" feature. This RFC describes this new feature and details how we should implement it in smithy-rs.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » RFC: Supporting Flexible Checksums","id":"223","title":"RFC: Supporting Flexible Checksums"},"224":{"body":"S3 has previously supported MD5 checksum validation of data. Now, it supports more checksum algorithms like CRC32, CRC32C, SHA-1, and SHA-256. This validation is available when putting objects to S3 and when getting them from S3. For more information, see this AWS News Blog post .","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » What is the \"Flexible Checksums\" feature?","id":"224","title":"What is the \"Flexible Checksums\" feature?"},"225":{"body":"Checksum callbacks were introduced as a result of the acceptance of RFC0013 and this RFC proposes a refactor to those callbacks, as well as several new wrappers for SdkBody that will provide new functionality.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementing Checksums","id":"225","title":"Implementing Checksums"},"226":{"body":"TLDR; This refactor of aws-smithy-checksums: Removes the \"callback\" terminology: As a word, \"callback\" doesn't carry any useful information, and doesn't aid in understanding. Removes support for the BodyCallback API: Instead of adding checksum callbacks to a body, we're going to use a \"body wrapping\" instead. \"Body wrapping\" is demonstrated in the ChecksumBody , AwsChunkedBody , and ChecksumValidatedBody sections. NOTE: This doesn't remove the BodyCallback trait. That will still exist, we just won't use it. Updates terminology to focus on \"headers\" instead of \"trailers\": Because the types we deal with in this module are named for HTTP headers, I chose to use that terminology instead. My hope is that this will be less strange to people reading this code. Adds fn checksum_algorithm_to_checksum_header_name: a function that's used in generated code to set a checksum request header. Adds fn checksum_header_name_to_checksum_algorithm: a function that's used in generated code when creating a checksum-validating response body. Add new checksum-related \"body wrapping\" HTTP body types : These are defined in the body module and will be shown later in this RFC. // In aws-smithy-checksums/src/lib.rs\n//! Checksum calculation and verification callbacks use aws_smithy_types::base64; use bytes::Bytes;\nuse http::header::{HeaderMap, HeaderName, HeaderValue};\nuse sha1::Digest;\nuse std::io::Write; pub mod body; // Valid checksum algorithm names\npub const CRC_32_NAME: &str = \"crc32\";\npub const CRC_32_C_NAME: &str = \"crc32c\";\npub const SHA_1_NAME: &str = \"sha1\";\npub const SHA_256_NAME: &str = \"sha256\"; pub const CRC_32_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32\");\npub const CRC_32_C_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-crc32c\");\npub const SHA_1_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha1\");\npub const SHA_256_HEADER_NAME: HeaderName = HeaderName::from_static(\"x-amz-checksum-sha256\"); // Preserved for compatibility purposes. This should never be used by users, only within smithy-rs\nconst MD5_NAME: &str = \"md5\";\nconst MD5_HEADER_NAME: HeaderName = HeaderName::from_static(\"content-md5\"); /// Given a `&str` representing a checksum algorithm, return the corresponding `HeaderName`\n/// for that checksum algorithm.\npub fn checksum_algorithm_to_checksum_header_name(checksum_algorithm: &str) -> HeaderName { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { CRC_32_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { CRC_32_C_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { SHA_1_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { SHA_256_HEADER_NAME } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { MD5_HEADER_NAME } else { // TODO what's the best way to handle this case? HeaderName::from_static(\"x-amz-checksum-unknown\") }\n} /// Given a `HeaderName` representing a checksum algorithm, return the name of that algorithm\n/// as a `&'static str`.\npub fn checksum_header_name_to_checksum_algorithm( checksum_header_name: &HeaderName,\n) -> &'static str { if checksum_header_name == CRC_32_HEADER_NAME { CRC_32_NAME } else if checksum_header_name == CRC_32_C_HEADER_NAME { CRC_32_C_NAME } else if checksum_header_name == SHA_1_HEADER_NAME { SHA_1_NAME } else if checksum_header_name == SHA_256_HEADER_NAME { SHA_256_NAME } else if checksum_header_name == MD5_HEADER_NAME { MD5_NAME } else { // TODO what's the best way to handle this case? \"unknown-checksum-algorithm\" }\n} /// When a response has to be checksum-verified, we have to check possible headers until we find the\n/// header with the precalculated checksum. Because a service may send back multiple headers, we have\n/// to check them in order based on how fast each checksum is to calculate.\npub const CHECKSUM_HEADERS_IN_PRIORITY_ORDER: [HeaderName; 4] = [ CRC_32_C_HEADER_NAME, CRC_32_HEADER_NAME, SHA_1_HEADER_NAME, SHA_256_HEADER_NAME,\n]; type BoxError = Box; /// Checksum algorithms are use to validate the integrity of data. Structs that implement this trait\n/// can be used as checksum calculators. This trait requires Send + Sync because these checksums are\n/// often used in a threaded context.\npub trait Checksum: Send + Sync { /// Given a slice of bytes, update this checksum's internal state. fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError>; /// Either return this checksum as a `HeaderMap` containing one HTTP header, or return an error /// describing why checksum calculation failed. fn headers(&self) -> Result>, BoxError>; /// Return the `HeaderName` used to represent this checksum algorithm fn header_name(&self) -> HeaderName; /// \"Finalize\" this checksum, returning the calculated value as `Bytes` or an error that /// occurred during checksum calculation. To print this value in a human-readable hexadecimal /// format, you can print it using Rust's builtin [formatter]. /// /// _**NOTE:** typically, \"finalizing\" a checksum in Rust will take ownership of the checksum /// struct. In this method, we clone the checksum's state before finalizing because checksums /// may be used in a situation where taking ownership is not possible._ /// /// [formatter]: https://doc.rust-lang.org/std/fmt/trait.UpperHex.html fn finalize(&self) -> Result; /// Return the size of this checksum algorithms resulting checksum, in bytes. For example, the /// CRC32 checksum algorithm calculates a 32 bit checksum, so a CRC32 checksum struct /// implementing this trait method would return 4. fn size(&self) -> u64;\n} /// Create a new `Box` from an algorithm name. Valid algorithm names are defined as\n/// `const`s in this module.\npub fn new_checksum(checksum_algorithm: &str) -> Box { if checksum_algorithm.eq_ignore_ascii_case(CRC_32_NAME) { Box::new(Crc32::default()) } else if checksum_algorithm.eq_ignore_ascii_case(CRC_32_C_NAME) { Box::new(Crc32c::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_1_NAME) { Box::new(Sha1::default()) } else if checksum_algorithm.eq_ignore_ascii_case(SHA_256_NAME) { Box::new(Sha256::default()) } else if checksum_algorithm.eq_ignore_ascii_case(MD5_NAME) { // It's possible to create an MD5 and we do this in some situations for compatibility. // We deliberately hide this from users so that they don't go using it. Box::new(Md5::default()) } else { panic!(\"unsupported checksum algorithm '{}'\", checksum_algorithm) }\n} #[derive(Debug, Default)]\nstruct Crc32 { hasher: crc32fast::Hasher,\n} impl Crc32 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.update(bytes); Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.hasher.clone().finalize().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32 checksum\") }\n} impl Checksum for Crc32 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Crc32c { state: Option,\n} impl Crc32c { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.state = match self.state { Some(crc) => Some(crc32c::crc32c_append(crc, bytes)), None => Some(crc32c::crc32c(bytes)), }; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( &self.state.unwrap_or_default().to_be_bytes(), )) } // Size of the checksum in bytes fn size() -> u64 { 4 } fn header_name() -> HeaderName { CRC_32_C_HEADER_NAME } fn header_value(&self) -> HeaderValue { // If no data was provided to this callback and no CRC was ever calculated, return zero as the checksum. let hash = self.state.unwrap_or_default(); HeaderValue::from_str(&base64::encode(u32::to_be_bytes(hash))) .expect(\"will always produce a valid header value from a CRC32C checksum\") }\n} impl Checksum for Crc32c { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha1 { hasher: sha1::Sha1,\n} impl Sha1 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 20 } fn header_name() -> HeaderName { SHA_1_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-1 checksum\") }\n} impl Checksum for Sha1 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Sha256 { hasher: sha2::Sha256,\n} impl Sha256 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 32 } fn header_name() -> HeaderName { SHA_256_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from a SHA-256 checksum\") }\n} impl Checksum for Sha256 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} #[derive(Debug, Default)]\nstruct Md5 { hasher: md5::Md5,\n} impl Md5 { fn update(&mut self, bytes: &[u8]) -> Result<(), BoxError> { self.hasher.write_all(bytes)?; Ok(()) } fn headers(&self) -> Result>, BoxError> { let mut header_map = HeaderMap::new(); header_map.insert(Self::header_name(), self.header_value()); Ok(Some(header_map)) } fn finalize(&self) -> Result { Ok(Bytes::copy_from_slice( self.hasher.clone().finalize().as_slice(), )) } // Size of the checksum in bytes fn size() -> u64 { 16 } fn header_name() -> HeaderName { MD5_HEADER_NAME } fn header_value(&self) -> HeaderValue { // We clone the hasher because `Hasher::finalize` consumes `self` let hash = self.hasher.clone().finalize(); HeaderValue::from_str(&base64::encode(&hash[..])) .expect(\"will always produce a valid header value from an MD5 checksum\") }\n} impl Checksum for Md5 { fn update( &mut self, bytes: &[u8], ) -> Result<(), Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::update(self, bytes) } fn headers( &self, ) -> Result, Box<(dyn std::error::Error + Send + Sync + 'static)>> { Self::headers(self) } fn header_name(&self) -> HeaderName { Self::header_name() } fn finalize(&self) -> Result { Self::finalize(self) } fn size(&self) -> u64 { Self::size() }\n} // We have existing tests for the checksums, those don't require an update","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Refactoring aws-smithy-checksums","id":"226","title":"Refactoring aws-smithy-checksums"},"227":{"body":"When creating a checksum-validated request with an in-memory request body, we can read the body, calculate a checksum, and insert the checksum header, all before sending the request. When creating a checksum-validated request with a streaming request body, we don't have that luxury. Instead, we must calculate a checksum while sending the body, and append that checksum as a trailer . We will accomplish this by wrapping the SdkBody that requires validation within a ChecksumBody. Afterwards, we'll need to wrap the ChecksumBody in yet another layer which we'll discuss in the AwsChunkedBody and AwsChunkedBodyOptions section. // In aws-smithy-checksums/src/body.rs\nuse crate::{new_checksum, Checksum}; use aws_smithy_http::body::SdkBody;\nuse aws_smithy_http::header::append_merge_header_maps;\nuse aws_smithy_types::base64; use bytes::{Buf, Bytes};\nuse http::header::HeaderName;\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::fmt::Display;\nuse std::pin::Pin;\nuse std::task::{Context, Poll}; /// A `ChecksumBody` will read and calculate a request body as it's being sent. Once the body has\n/// been completely read, it'll append a trailer with the calculated checksum.\n#[pin_project]\npub struct ChecksumBody { #[pin] inner: InnerBody, #[pin] checksum: Box,\n} impl ChecksumBody { /// Given an `SdkBody` and the name of a checksum algorithm as a `&str`, create a new /// `ChecksumBody`. Valid checksum algorithm names are defined in this crate's /// [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, } } /// Return the name of the trailer that will be emitted by this `ChecksumBody` pub fn trailer_name(&self) -> HeaderName { self.checksum.header_name() } /// Calculate and return the sum of the: /// - checksum when base64 encoded /// - trailer name /// - trailer separator /// /// This is necessary for calculating the true size of the request body for certain /// content-encodings. pub fn trailer_length(&self) -> u64 { let trailer_name_size_in_bytes = self.checksum.header_name().as_str().len() as u64; let base64_encoded_checksum_size_in_bytes = base64::encoded_length(self.checksum.size()); (trailer_name_size_in_bytes // HTTP trailer names and values may be separated by either a single colon or a single // colon and a whitespace. In the AWS Rust SDK, we use a single colon. + \":\".len() as u64 + base64_encoded_checksum_size_in_bytes) } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => Poll::Ready(None), Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} impl http_body::Body for ChecksumBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { let this = self.project(); match ( this.checksum.headers(), http_body::Body::poll_trailers(this.inner, cx), ) { // If everything is ready, return trailers, merging them if we have more than one map (Ok(outer_trailers), Poll::Ready(Ok(inner_trailers))) => { let trailers = match (outer_trailers, inner_trailers) { // Values from the inner trailer map take precedent over values from the outer map (Some(outer), Some(inner)) => Some(append_merge_header_maps(inner, outer)), // If only one or neither produced trailers, just combine the `Option`s with `or` (outer, inner) => outer.or(inner), }; Poll::Ready(Ok(trailers)) } // If the inner poll is Ok but the outer body's checksum callback encountered an error, // return the error (Err(e), Poll::Ready(Ok(_))) => Poll::Ready(Err(e)), // Otherwise return the result of the inner poll. // It may be pending or it may be ready with an error. (_, inner_poll) => inner_poll, } } fn is_end_stream(&self) -> bool { self.inner.is_end_stream() } fn size_hint(&self) -> SizeHint { let body_size_hint = self.inner.size_hint(); match body_size_hint.exact() { Some(size) => { let checksum_size_hint = self.checksum.size(); SizeHint::with_exact(size + checksum_size_hint) } // TODO is this the right behavior? None => { let checksum_size_hint = self.checksum.size(); let mut summed_size_hint = SizeHint::new(); summed_size_hint.set_lower(body_size_hint.lower() + checksum_size_hint); if let Some(body_size_hint_upper) = body_size_hint.upper() { summed_size_hint.set_upper(body_size_hint_upper + checksum_size_hint); } summed_size_hint } } }\n} // The tests I have written are omitted from this RFC for brevity. The request body checksum calculation and trailer size calculations are all tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumBody","id":"227","title":"ChecksumBody"},"228":{"body":"Users may request checksum validation for response bodies. That capability is provided by ChecksumValidatedBody, which will calculate a checksum as the response body is being read. Once all data has been read, the calculated checksum is compared to a precalculated checksum set during body creation. If the checksums don't match, then the body will emit an error. // In aws-smithy-checksums/src/body.rs\n/// A response body that will calculate a checksum as it is read. If all data is read and the\n/// calculated checksum doesn't match a precalculated checksum, this body will emit an\n/// [asw_smithy_http::body::Error].\n#[pin_project]\npub struct ChecksumValidatedBody { #[pin] inner: InnerBody, #[pin] checksum: Box, precalculated_checksum: Bytes,\n} impl ChecksumValidatedBody { /// Given an `SdkBody`, the name of a checksum algorithm as a `&str`, and a precalculated /// checksum represented as `Bytes`, create a new `ChecksumValidatedBody`. /// Valid checksum algorithm names are defined in this crate's [root module](super). /// /// # Panics /// /// This will panic if the given checksum algorithm is not supported. pub fn new(body: SdkBody, checksum_algorithm: &str, precalculated_checksum: Bytes) -> Self { Self { checksum: new_checksum(checksum_algorithm), inner: body, precalculated_checksum, } } fn poll_inner( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); let inner = this.inner; let mut checksum = this.checksum; match inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let len = data.chunk().len(); let bytes = data.copy_to_bytes(len); if let Err(e) = checksum.update(&bytes) { return Poll::Ready(Some(Err(e))); } Poll::Ready(Some(Ok(bytes))) } // Once the inner body has stopped returning data, check the checksum // and return an error if it doesn't match. Poll::Ready(None) => { let actual_checksum = { match checksum.finalize() { Ok(checksum) => checksum, Err(err) => { return Poll::Ready(Some(Err(err))); } } }; if *this.precalculated_checksum == actual_checksum { Poll::Ready(None) } else { // So many parens it's starting to look like LISP Poll::Ready(Some(Err(Box::new(Error::checksum_mismatch( this.precalculated_checksum.clone(), actual_checksum, ))))) } } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } }\n} /// Errors related to checksum calculation and validation\n#[derive(Debug, Eq, PartialEq)]\n#[non_exhaustive]\npub enum Error { /// The actual checksum didn't match the expected checksum. The checksummed data has been /// altered since the expected checksum was calculated. ChecksumMismatch { expected: Bytes, actual: Bytes },\n} impl Error { /// Given an expected checksum and an actual checksum in `Bytes` form, create a new /// `Error::ChecksumMismatch`. pub fn checksum_mismatch(expected: Bytes, actual: Bytes) -> Self { Self::ChecksumMismatch { expected, actual } }\n} impl Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> { match self { Error::ChecksumMismatch { expected, actual } => write!( f, \"body checksum mismatch. expected body checksum to be {:x} but it was {:x}\", expected, actual ), } }\n} impl std::error::Error for Error {} impl http_body::Body for ChecksumValidatedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { self.poll_inner(cx) } fn poll_trailers( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { self.project().inner.poll_trailers(cx) } // Once the inner body returns true for is_end_stream, we still need to // verify the checksum; Therefore, we always return false here. fn is_end_stream(&self) -> bool { false } fn size_hint(&self) -> SizeHint { self.inner.size_hint() }\n} // The tests I have written are omitted from this RFC for brevity. The response body checksum verification is tested.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » ChecksumValidatedBody","id":"228","title":"ChecksumValidatedBody"},"229":{"body":"In order to send a request with checksum trailers, we must use an AWS-specific content encoding called aws-chunked. This encoding requires that we: Divide the original body content into one or more chunks. For our purposes we only ever use one chunk. Append a hexadecimal chunk size header to each chunk. Suffix each chunk with a CRLF (carriage return line feed) . Send a 0 and CRLF to close the original body content section. Send trailers as part of the request body, suffixing each with a CRLF. Send a final CRLF to close the request body. As an example, Sending a regular request body with a SHA-256 checksum would look similar to this: PUT SOMEURL HTTP/1.1\nx-amz-checksum-sha256: ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\nContent-Length: 11\n... Hello world and the aws-chunked version would look like this: PUT SOMEURL HTTP/1.1\nx-amz-trailer: x-amz-checksum-sha256\nx-amz-decoded-content-length: 11\nContent-Encoding: aws-chunked\nContent-Length: 87\n... B\\r\\n\nHello world\\r\\n\n0\\r\\n\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\n\\r\\n NOTES: In the second example, B is the hexadecimal representation of 11. Authorization and other headers are omitted from the examples above for brevity. When using aws-chunked content encoding, S3 requires that we send the x-amz-decoded-content-length with the length of the original body content. This encoding scheme is performed by AwsChunkedBody and configured with AwsChunkedBodyOptions. // In aws-http/src/content_encoding.rs\nuse aws_smithy_checksums::body::ChecksumBody;\nuse aws_smithy_http::body::SdkBody; use bytes::{Buf, Bytes, BytesMut};\nuse http::{HeaderMap, HeaderValue};\nuse http_body::{Body, SizeHint};\nuse pin_project::pin_project; use std::pin::Pin;\nuse std::task::{Context, Poll}; const CRLF: &str = \"\\r\\n\";\nconst CHUNK_TERMINATOR: &str = \"0\\r\\n\"; /// Content encoding header value constants\npub mod header_value { /// Header value denoting \"aws-chunked\" encoding pub const AWS_CHUNKED: &str = \"aws-chunked\";\n} /// Options used when constructing an [`AwsChunkedBody`][AwsChunkedBody].\n#[derive(Debug, Default)]\n#[non_exhaustive]\npub struct AwsChunkedBodyOptions { /// The total size of the stream. For unsigned encoding this implies that /// there will only be a single chunk containing the underlying payload, /// unless ChunkLength is also specified. pub stream_length: Option, /// The maximum size of each chunk to be sent. /// /// If ChunkLength and stream_length are both specified, the stream will be /// broken up into chunk_length chunks. The encoded length of the aws-chunked /// encoding can still be determined as long as all trailers, if any, have a /// fixed length. pub chunk_length: Option, /// The length of each trailer sent within an `AwsChunkedBody`. Necessary in /// order to correctly calculate the total size of the body accurately. pub trailer_lens: Vec,\n} impl AwsChunkedBodyOptions { /// Create a new [`AwsChunkedBodyOptions`][AwsChunkedBodyOptions] pub fn new() -> Self { Self::default() } /// Set stream length pub fn with_stream_length(mut self, stream_length: u64) -> Self { self.stream_length = Some(stream_length); self } /// Set chunk length pub fn with_chunk_length(mut self, chunk_length: u64) -> Self { self.chunk_length = Some(chunk_length); self } /// Set a trailer len pub fn with_trailer_len(mut self, trailer_len: u64) -> Self { self.trailer_lens.push(trailer_len); self }\n} #[derive(Debug, PartialEq, Eq)]\nenum AwsChunkedBodyState { WritingChunkSize, WritingChunk, WritingTrailers, Closed,\n} /// A request body compatible with `Content-Encoding: aws-chunked`\n///\n/// Chunked-Body grammar is defined in [ABNF] as:\n///\n/// ```txt\n/// Chunked-Body = *chunk\n/// last-chunk\n/// chunked-trailer\n/// CRLF\n///\n/// chunk = chunk-size CRLF chunk-data CRLF\n/// chunk-size = 1*HEXDIG\n/// last-chunk = 1*(\"0\") CRLF\n/// chunked-trailer = *( entity-header CRLF )\n/// entity-header = field-name \":\" OWS field-value OWS\n/// ```\n/// For more info on what the abbreviations mean, see https://datatracker.ietf.org/doc/html/rfc7230#section-1.2\n///\n/// [ABNF]:https://en.wikipedia.org/wiki/Augmented_Backus%E2%80%93Naur_form\n#[derive(Debug)]\n#[pin_project]\npub struct AwsChunkedBody { #[pin] inner: InnerBody, #[pin] state: AwsChunkedBodyState, options: AwsChunkedBodyOptions,\n} // Currently, we only use this in terms of a streaming request body with checksum trailers\ntype Inner = ChecksumBody; impl AwsChunkedBody { /// Wrap the given body in an outer body compatible with `Content-Encoding: aws-chunked` pub fn new(body: Inner, options: AwsChunkedBodyOptions) -> Self { Self { inner: body, state: AwsChunkedBodyState::WritingChunkSize, options, } } fn encoded_length(&self) -> Option { if self.options.chunk_length.is_none() && self.options.stream_length.is_none() { return None; } let mut length = 0; let stream_length = self.options.stream_length.unwrap_or_default(); if stream_length != 0 { if let Some(chunk_length) = self.options.chunk_length { let num_chunks = stream_length / chunk_length; length += num_chunks * get_unsigned_chunk_bytes_length(chunk_length); let remainder = stream_length % chunk_length; if remainder != 0 { length += get_unsigned_chunk_bytes_length(remainder); } } else { length += get_unsigned_chunk_bytes_length(stream_length); } } // End chunk length += CHUNK_TERMINATOR.len() as u64; // Trailers for len in self.options.trailer_lens.iter() { length += len + CRLF.len() as u64; } // Encoding terminator length += CRLF.len() as u64; Some(length) }\n} fn prefix_with_chunk_size(data: Bytes, chunk_size: u64) -> Bytes { // Len is the size of the entire chunk as defined in `AwsChunkedBodyOptions` let mut prefixed_data = BytesMut::from(format!(\"{:X?}\\r\\n\", chunk_size).as_bytes()); prefixed_data.extend_from_slice(&data); prefixed_data.into()\n} fn get_unsigned_chunk_bytes_length(payload_length: u64) -> u64 { let hex_repr_len = int_log16(payload_length); hex_repr_len + CRLF.len() as u64 + payload_length + CRLF.len() as u64\n} fn trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes: u64, trailer_map: Option,\n) -> Bytes { use std::fmt::Write; // On 32-bit operating systems, we might not be able to convert the u64 to a usize, so we just // use `String::new` in that case. let mut trailers = match usize::try_from(total_length_of_trailers_in_bytes) { Ok(total_length_of_trailers_in_bytes) => { String::with_capacity(total_length_of_trailers_in_bytes) } Err(_) => String::new(), }; let mut already_wrote_first_trailer = false; if let Some(trailer_map) = trailer_map { for (header_name, header_value) in trailer_map.into_iter() { match header_name { // New name, new value Some(header_name) => { if already_wrote_first_trailer { // First trailer shouldn't have a preceding CRLF, but every trailer after it should trailers.write_str(CRLF).unwrap(); } else { already_wrote_first_trailer = true; } trailers.write_str(header_name.as_str()).unwrap(); trailers.write_char(':').unwrap(); } // Same name, new value None => { trailers.write_char(',').unwrap(); } } trailers.write_str(header_value.to_str().unwrap()).unwrap(); } } // Write CRLF to end the body trailers.write_str(CRLF).unwrap(); // If we wrote at least one trailer, we need to write an extra CRLF if total_length_of_trailers_in_bytes != 0 { trailers.write_str(CRLF).unwrap(); } trailers.into()\n} impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { tracing::info!(\"polling AwsChunkedBody\"); let mut this = self.project(); match *this.state { AwsChunkedBodyState::WritingChunkSize => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(data))) => { // A chunk must be prefixed by chunk size in hexadecimal tracing::info!(\"writing chunk size and start of chunk\"); *this.state = AwsChunkedBodyState::WritingChunk; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); Poll::Ready(Some(Ok(prefix_with_chunk_size(data, total_chunk_size)))) } Poll::Ready(None) => { tracing::info!(\"chunk was empty, writing last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingChunk => match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { tracing::info!(\"writing rest of chunk data\"); Poll::Ready(Some(Ok(data.copy_to_bytes(data.len())))) } Poll::Ready(None) => { tracing::info!(\"no more chunk data, writing CRLF and last-chunk\"); *this.state = AwsChunkedBodyState::WritingTrailers; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, }, AwsChunkedBodyState::WritingTrailers => { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.state = AwsChunkedBodyState::Closed; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().fold(0, |acc, n| acc + n); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(Err(e)) => Poll::Ready(Some(Err(e))), }; } AwsChunkedBodyState::Closed => { return Poll::Ready(None); } } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // Trailers were already appended to the body because of the content encoding scheme Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.state == AwsChunkedBodyState::Closed } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n} // Used for finding how many hexadecimal digits it takes to represent a base 10 integer\nfn int_log16(mut i: T) -> u64\nwhere T: std::ops::DivAssign + PartialOrd + From + Copy,\n{ let mut len = 0; let zero = T::from(0); let sixteen = T::from(16); while i > zero { i /= sixteen; len += 1; } len\n} #[cfg(test)]\nmod tests { use super::AwsChunkedBody; use crate::content_encoding::AwsChunkedBodyOptions; use aws_smithy_checksums::body::ChecksumBody; use aws_smithy_http::body::SdkBody; use bytes::Buf; use bytes_utils::SegmentedBuf; use http_body::Body; use std::io::Read; #[tokio::test] async fn test_aws_chunked_encoded_body() { let input_text = \"Hello world\"; let sdk_body = SdkBody::from(input_text); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(input_text.len() as u64), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"B\\r\\nHello world\\r\\n0\\r\\nx-amz-checksum-sha256:ZOyIygCyaOW6GjVnihtTFtIS9PNmskdyMlNKiuyjfzw=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); } #[tokio::test] async fn test_empty_aws_chunked_encoded_body() { let sdk_body = SdkBody::from(\"\"); let checksum_body = ChecksumBody::new(sdk_body, \"sha256\"); let aws_chunked_body_options = AwsChunkedBodyOptions { stream_length: Some(0), chunk_length: None, trailer_lens: vec![ \"x-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\".len() as u64, ], }; let mut aws_chunked_body = AwsChunkedBody::new(checksum_body, aws_chunked_body_options); let mut output = SegmentedBuf::new(); while let Some(buf) = aws_chunked_body.data().await { output.push(buf.unwrap()); } let mut actual_output = String::new(); output .reader() .read_to_string(&mut actual_output) .expect(\"Doesn't cause IO errors\"); let expected_output = \"0\\r\\nx-amz-checksum-sha256:47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU=\\r\\n\\r\\n\"; // Verify data is complete and correctly encoded assert_eq!(expected_output, actual_output); assert!( aws_chunked_body .trailers() .await .expect(\"checksum generation was without error\") .is_none(), \"aws-chunked encoded bodies don't have normal HTTP trailers\" ); }\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » AwsChunkedBody and AwsChunkedBodyOptions","id":"229","title":"AwsChunkedBody and AwsChunkedBodyOptions"},"23":{"body":"The fundamental trait for HTTP-based protocols is ParseHttpResponse","breadcrumbs":"Transport » HTTP Operations » Operation Parsing and Response Loading","id":"23","title":"Operation Parsing and Response Loading"},"230":{"body":"When sending checksum-verified requests with a streaming body, we must update the usual signing process. Instead of signing the request based on the request body's checksum, we must sign it with a special header instead: Authorization: \nx-amz-content-sha256: STREAMING-UNSIGNED-PAYLOAD-TRAILER Setting STREAMING-UNSIGNED-PAYLOAD-TRAILER tells the signer that we're sending an unsigned streaming body that will be followed by trailers. We can achieve this by: Adding a new variant to SignableBody: /// A signable HTTP request body\n#[derive(Debug, Clone, Eq, PartialEq)]\n#[non_exhaustive]\npub enum SignableBody<'a> { // existing variants have been omitted for brevity... /// An unsigned payload with trailers /// /// StreamingUnsignedPayloadTrailer is used for streaming requests where the contents of the /// body cannot be known prior to signing **AND** which include HTTP trailers. StreamingUnsignedPayloadTrailer,\n} Updating the CanonicalRequest::payload_hash method to include the new SignableBody variant: fn payload_hash<'b>(body: &'b SignableBody<'b>) -> Cow<'b, str> { // Payload hash computation // // Based on the input body, set the payload_hash of the canonical request: // Either: // - compute a hash // - use the precomputed hash // - use `UnsignedPayload` // - use `StreamingUnsignedPayloadTrailer` match body { SignableBody::Bytes(data) => Cow::Owned(sha256_hex_string(data)), SignableBody::Precomputed(digest) => Cow::Borrowed(digest.as_str()), SignableBody::UnsignedPayload => Cow::Borrowed(UNSIGNED_PAYLOAD), SignableBody::StreamingUnsignedPayloadTrailer => { Cow::Borrowed(STREAMING_UNSIGNED_PAYLOAD_TRAILER) } }\n} (in generated code) Inserting the SignableBody into the request property bag when making a checksum-verified streaming request: if self.checksum_algorithm.is_some() { request .properties_mut() .insert(aws_sig_auth::signer::SignableBody::StreamingUnsignedPayloadTrailer);\n} It's possible to send aws-chunked requests where each chunk is signed individually. Because this feature isn't strictly necessary for flexible checksums, I've avoided implementing it.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Sigv4 Update","id":"230","title":"Sigv4 Update"},"231":{"body":"In order to avoid writing lots of Rust in Kotlin, I have implemented request and response building functions as inlineables: Building checksum-validated requests with in-memory request bodies: // In aws/rust-runtime/aws-inlineable/src/streaming_body_with_checksum.rs\n/// Given a `&mut http::request::Request`, and checksum algorithm name, calculate a checksum and\n/// then modify the request to include the checksum as a header.\npub fn build_checksum_validated_request( request: &mut http::request::Request, checksum_algorithm: &str,\n) -> Result<(), aws_smithy_http::operation::BuildError> { let data = request.body().bytes().unwrap_or_default(); let mut checksum = aws_smithy_checksums::new_checksum(checksum_algorithm); checksum .update(data) .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; let checksum = checksum .finalize() .map_err(|err| aws_smithy_http::operation::BuildError::Other(err))?; request.headers_mut().insert( aws_smithy_checksums::checksum_algorithm_to_checksum_header_name(checksum_algorithm), aws_smithy_types::base64::encode(&checksum[..]) .parse() .expect(\"base64-encoded checksums are always valid header values\"), ); Ok(())\n} Building checksum-validated requests with streaming request bodies: /// Given an `http::request::Builder`, `SdkBody`, and a checksum algorithm name, return a\n/// `Request` with checksum trailers where the content is `aws-chunked` encoded.\npub fn build_checksum_validated_request_with_streaming_body( request_builder: http::request::Builder, body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str,\n) -> Result, aws_smithy_http::operation::BuildError> { use http_body::Body; let original_body_size = body .size_hint() .exact() .expect(\"body must be sized if checksum is requested\"); let body = aws_smithy_checksums::body::ChecksumBody::new(body, checksum_algorithm); let checksum_trailer_name = body.trailer_name(); let aws_chunked_body_options = aws_http::content_encoding::AwsChunkedBodyOptions::new() .with_stream_length(original_body_size as usize) .with_trailer_len(body.trailer_length() as usize); let body = aws_http::content_encoding::AwsChunkedBody::new(body, aws_chunked_body_options); let encoded_content_length = body .size_hint() .exact() .expect(\"encoded_length must return known size\"); let request_builder = request_builder .header( http::header::CONTENT_LENGTH, http::HeaderValue::from(encoded_content_length), ) .header( http::header::HeaderName::from_static(\"x-amz-decoded-content-length\"), http::HeaderValue::from(original_body_size), ) .header( http::header::HeaderName::from_static(\"x-amz-trailer\"), checksum_trailer_name, ) .header( http::header::CONTENT_ENCODING, aws_http::content_encoding::header_value::AWS_CHUNKED.as_bytes(), ); let body = aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body)); request_builder .body(body) .map_err(|err| aws_smithy_http::operation::BuildError::Other(Box::new(err)))\n} Building checksum-validated responses: /// Given a `Response`, checksum algorithm name, and pre-calculated checksum, return a\n/// `Response` where the body will processed with the checksum algorithm and checked\n/// against the pre-calculated checksum.\npub fn build_checksum_validated_sdk_body( body: aws_smithy_http::body::SdkBody, checksum_algorithm: &str, precalculated_checksum: bytes::Bytes,\n) -> aws_smithy_http::body::SdkBody { let body = aws_smithy_checksums::body::ChecksumValidatedBody::new( body, checksum_algorithm, precalculated_checksum.clone(), ); aws_smithy_http::body::SdkBody::from_dyn(http_body::combinators::BoxBody::new(body))\n} /// Given the name of a checksum algorithm and a `HeaderMap`, extract the checksum value from the\n/// corresponding header as `Some(Bytes)`. If the header is unset, return `None`.\npub fn check_headers_for_precalculated_checksum( headers: &http::HeaderMap,\n) -> Option<(&'static str, bytes::Bytes)> { for header_name in aws_smithy_checksums::CHECKSUM_HEADERS_IN_PRIORITY_ORDER { if let Some(precalculated_checksum) = headers.get(&header_name) { let checksum_algorithm = aws_smithy_checksums::checksum_header_name_to_checksum_algorithm(&header_name); let precalculated_checksum = bytes::Bytes::copy_from_slice(precalculated_checksum.as_bytes()); return Some((checksum_algorithm, precalculated_checksum)); } } None\n}","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Inlineables","id":"231","title":"Inlineables"},"232":{"body":"Codegen will be updated to insert the appropriate inlineable functions for operations that are tagged with the @httpchecksum trait. Some operations will require an MD5 checksum fallback if the user hasn't set a checksum themselves. Users also have the option of supplying a precalculated checksum of their own. This is already handled by our current header insertion logic and won't require updating the existing implementation. Because this checksum validation behavior is AWS-specific, it will be defined in SDK codegen.","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Codegen","id":"232","title":"Codegen"},"233":{"body":"Implement codegen for building checksum-validated requests: In-memory request bodies Support MD5 fallback behavior for services that enable it. Streaming request bodies Implement codegen for building checksum-validated responses:","breadcrumbs":"RFCs » RFC-0016: Supporting Flexible Checksums » Implementation Checklist","id":"233","title":"Implementation Checklist"},"234":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. SDK customers occasionally need to add additional HTTP headers to requests, and currently, the SDK has no easy way to accomplish this. At time of writing, the lower level Smithy client has to be used to create an operation, and then the HTTP request augmented on that operation type. For example: let input = SomeOperationInput::builder().some_value(5).build()?; let operation = { let op = input.make_operation(&service_config).await?; let (request, response) = op.into_request_response(); let request = request.augment(|req, _props| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); Result::<_, Infallible>::Ok(req) })?; Operation::from_parts(request, response)\n}; let response = smithy_client.call(operation).await?; This approach is both difficult to discover and implement since it requires acquiring a Smithy client rather than the generated fluent client, and it's anything but ergonomic. This RFC proposes an easier way to augment requests that is compatible with the fluent client.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » RFC: Customizable Client Operations","id":"234","title":"RFC: Customizable Client Operations"},"235":{"body":"Smithy Client : A aws_smithy_client::Client struct that is responsible for gluing together the connector, middleware, and retry policy. Fluent Client : A code generated Client that has methods for each service operation on it. A fluent builder is generated alongside it to make construction easier.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Terminology","id":"235","title":"Terminology"},"236":{"body":"The code generated fluent builders returned by the fluent client should have a method added to them, similar to send, but that returns a customizable request. The customer experience should look as follows: let response = client.some_operation() .some_value(5) .customize() .await? .mutate_request(|mut req| { req.headers_mut().insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") ); }) .send() .await?; This new async customize method would return the following: pub struct CustomizableOperation { handle: Arc, operation: Operation,\n} impl CustomizableOperation { // Allows for customizing the operation's request fn map_request( mut self, f: impl FnOnce(Request) -> Result, E>, ) -> Result { let (request, response) = self.operation.into_request_response(); let request = request.augment(|req, _props| f(req))?; self.operation = Operation::from_parts(request, response); Ok(self) } // Convenience for `map_request` where infallible direct mutation of request is acceptable fn mutate_request( mut self, f: impl FnOnce(&mut Request) -> (), ) -> Self { self.map_request(|mut req| { f(&mut req); Result::<_, Infallible>::Ok(req) }).expect(\"infallible\"); Ok(self) } // Allows for customizing the entire operation fn map_operation( mut self, f: impl FnOnce(Operation) -> Result, E>, ) -> Result { self.operation = f(self.operation)?; Ok(self) } // Direct access to read the request fn request(&self) -> &Request { self.operation.request() } // Direct access to mutate the request fn request_mut(&mut self) -> &mut Request { self.operation.request_mut() } // Sends the operation's request async fn send(self) -> Result> where O: ParseHttpResponse> + Send + Sync + Clone + 'static, E: std::error::Error, R: ClassifyResponse, SdkError> + Send + Sync, { self.handle.client.call(self.operation).await }\n} Additionally, for those who want to avoid closures, the Operation type will have request and request_mut methods added to it to get direct access to its underlying HTTP request. The CustomizableOperation type will then mirror these functions so that the experience can look as follows: let mut operation = client.some_operation() .some_value(5) .customize() .await?;\noperation.request_mut() .headers_mut() .insert( HeaderName::from_static(\"x-some-header\"), HeaderValue::from_static(\"some-value\") );\nlet response = operation.send().await?;","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Proposal","id":"236","title":"Proposal"},"237":{"body":"In the proposal above, customers must await the result of customize in order to get the CustomizableOperation. This is a result of the underlying map_operation function that customize needs to call being async, which was made async during the implementation of customizations for Glacier (see #797, #801, and #1474). It is possible to move these Glacier customizations into middleware to make map_operation sync, but keeping it async is much more future-proof since if a future customization or feature requires it to be async, it won't be a breaking change in the future.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why not remove async from customize to make this more ergonomic?","id":"237","title":"Why not remove async from customize to make this more ergonomic?"},"238":{"body":"Alternatively, the name build could be used, but this increases the odds that customers won't realize that they can call send directly, and then call a longer build/send chain when customization isn't needed: client.some_operation() .some_value() .build() // Oops, didn't need to do this .send() .await?; vs. client.some_operation() .some_value() .send() .await?; Additionally, no AWS services at time of writing have a member named customize that would conflict with the new function, so adding it would not be a breaking change.","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Why the name customize?","id":"238","title":"Why the name customize?"},"239":{"body":"Create CustomizableOperation as an inlinable, and code generate it into client so that it has access to Handle Code generate the customize method on fluent builders Update the RustReservedWords class to include customize Add ability to mutate the HTTP request on Operation Add examples for both approaches Comment on older discussions asking about how to do this with this improved approach","breadcrumbs":"RFCs » RFC-0017: Customizable Client Operations » Changes Checklist","id":"239","title":"Changes Checklist"},"24":{"body":"Signing, endpoint specification, and logging are all handled as middleware. The Rust SDK takes a minimalist approach to middleware: Middleware is defined as minimally as possible, then adapted into the middleware system used by the IO layer. Tower is the de facto standard for HTTP middleware in Rust—we will probably use it. But we also want to make our middleware usable for users who aren't using Tower (or if we decide to not use Tower in the long run). Because of this, rather than implementing all our middleware as \"Tower Middleware\", we implement it narrowly (e.g. as a function that operates on operation::Request), then define optional adapters to make our middleware tower compatible.","breadcrumbs":"Transport » HTTP Middleware » HTTP middleware","id":"24","title":"HTTP middleware"},"240":{"body":"Status: Accepted Smithy provides a sensitive trait which exists as a @sensitive field annotation syntactically and has the following semantics: Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). This RFC is concerned with solving the problem of honouring this specification in the context of logging. Progress has been made towards this goal in the form of the Sensitive Trait PR , which uses code generation to remove sensitive fields from Debug implementations. The problem remains open due to the existence of HTTP binding traits and a lack of clearly defined user guidelines which customers may follow to honour the specification. This RFC proposes: A new logging middleware is generated and applied to each OperationHandler Service. A developer guideline is provided on how to avoid violating the specification.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » RFC: Logging in the Presence of Sensitive Data","id":"240","title":"RFC: Logging in the Presence of Sensitive Data"},"241":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Runtime crate : A crate existing within the rust-runtime folder, used to implement shared functionalities that do not have to be code-generated. Service : The tower::Service trait. The lowest level of abstraction we deal with when making HTTP requests. Services act directly on data to transform and modify that data. A Service is what eventually turns a request into a response. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Potentially sensitive : Data that could be bound to a sensitive field of a structure, for example via the HTTP Binding Traits .","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Terminology","id":"241","title":"Terminology"},"242":{"body":"","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Background","id":"242","title":"Background"},"243":{"body":"Smithy provides various HTTP binding traits. These allow protocols to configure a HTTP request by way of binding fields to parts of the request. For this reason sensitive data might be unintentionally leaked through logging of a bound request. Trait Configurable httpHeader Headers httpPrefixHeaders Headers httpLabel URI httpPayload Payload httpQuery Query Parameters httpResponseCode Status Code Each of these configurable parts must therefore be logged cautiously.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Binding Traits","id":"243","title":"HTTP Binding Traits"},"244":{"body":"It would be unfeasible to forbid the logging of sensitive data all together using the type system. With the current API, the customer will always have an opportunity to log a request containing sensitive data before it enters the Service> that we provide to them. // The API provides us with a `Service>`\nlet app: Router = OperationRegistryBuilder::default().build().expect(\"unable to build operation registry\").into(); // We can `ServiceExt::map_request` log a request with potentially sensitive data\nlet app = app.map_request(|request| { info!(?request); request }); A more subtle violation of the specification may occur when the customer enables verbose logging - a third-party dependency might simply log data marked as sensitive, for example tokio or hyper. These two cases illustrate that smithy-rs can only prevent violation of the specification in a restricted scope - logs emitted from generated code and the runtime crates. A smithy-rs specific guideline should be available to the customer which outlines how to avoid violating the specification in areas outside of our control.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Scope and Guidelines","id":"244","title":"Scope and Guidelines"},"245":{"body":"The sensitivity and HTTP bindings are declared within specific structures/operations. For this reason, in the general case, it's unknowable whether or not any given part of a request is sensitive until we determine which operation is tasked with handling the request and hence which fields are bound. Implementation wise, this means that any middleware applied before routing has taken place cannot log anything potentially sensitive without performing routing logic itself. Note that: We are not required to deserialize the entire request before we can make judgments on what data is sensitive or not - only which operation it has been routed to. We are permitted to emit logs prior to routing when: they contain no potentially sensitive data, or the request failed to route, in which case it's not subject to the constraints of an operation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Routing","id":"245","title":"Routing"},"246":{"body":"The crates existing in rust-runtime are not code generated - their source code is agnostic to the specific model in use. For this reason, if such a crate wanted to log potentially sensitive data then there must be a way to conditionally toggle that log without manipulation of the source code. Any proposed solution must acknowledge this concern.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Runtime Crates","id":"246","title":"Runtime Crates"},"247":{"body":"This proposal serves to honor the sensitivity specification via code generation of a logging middleware which is aware of the sensitivity, together with a developer contract disallowing logging potentially sensitive data in the runtime crates. A developer guideline should be provided in addition to the middleware. All data known to be sensitive should be replaced with \"{redacted}\" when logged. Implementation wise this means that tracing::Event s and tracing::Span s of the form debug!(field = \"sensitive data\") and span!(..., field = \"sensitive data\") must become debug!(field = \"{redacted}\") and span!(..., field = \"{redacted}\").","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Proposal","id":"247","title":"Proposal"},"248":{"body":"Developers might want to observe sensitive data for debugging purposes. It should be possible to opt-out of the redactions by enabling a feature flag unredacted-logging (which is disabled by default). To prevent excessive branches such as if cfg!(feature = \"unredacted-logging\") { debug!(%data, \"logging here\");\n} else { debug!(data = \"{redacted}\", \"logging here\");\n} the following wrapper should be provided from a runtime crate: pub struct Sensitive(T); impl Debug for Sensitive\nwhere T: Debug\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} impl Display for Sensitive\nwhere T: Display\n{ fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { if cfg!(feature = \"unredacted-logging\") { self.0.fmt(f) } else { \"{redacted}\".fmt(f) } }\n} In which case the branch above becomes debug!(sensitive_data = %Sensitive(data));","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Debug Logging","id":"248","title":"Debug Logging"},"249":{"body":"Using the smithy model, for each operation, a logging middleware should be generated. Through the model, the code generation knows which fields are sensitive and which HTTP bindings exist, therefore the logging middleware can be carefully crafted to avoid leaking sensitive data. As a request enters this middleware it should record the method, HTTP headers, status code, and URI in a tracing::span. As a response leaves this middleware it should record the HTTP headers and status code in a tracing::debug. The following model @readonly\n@http(uri: \"/inventory/{name}\", method: \"GET\")\noperation Inventory { input: Product, output: Stocked\n} @input\nstructure Product { @required @sensitive @httpLabel name: String\n} @output\nstructure Stocked { @sensitive @httpResponseCode code: String,\n} should generate the following // NOTE: This code is intended to show behavior - it does not compile pub struct InventoryLogging { inner: S, operation_name: &'static str\n} impl InventoryLogging { pub fn new(inner: S) -> Self { Self { inner } }\n} impl Service> for InventoryLogging\nwhere S: Service>\n{ type Response = Response; type Error = S::Error; type Future = /* Implementation detail */; fn call(&mut self, request: Request) -> Self::Future { // Remove sensitive data from parts of the HTTP let uri = /* redact {name} from URI */; let headers = /* no redactions */; let fut = async { let response = self.inner.call(request).await; let status_code = /* redact status code */; let headers = /* no redactions */; debug!(%status_code, ?headers, \"response\"); response }; // Instrument the future with a span let span = debug_span!(\"request\", operation = %self.operation_name, method = %request.method(), %uri, ?headers); fut.instrument(span) }\n}","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Code Generated Logging Middleware","id":"249","title":"Code Generated Logging Middleware"},"25":{"body":"The Smithy client provides a default TLS connector, but a custom one can be plugged in. rustls is enabled with the feature flag rustls. The client had previously (prior to version 0.56.0) supported native-tls. You can continue to use a client whose TLS implementation is backed by native-tls by passing in a custom connector. Check out the custom_connectors.rs tests in the pokemon-service-tls example crate.","breadcrumbs":"Transport » TLS Connector","id":"25","title":"Transport"},"250":{"body":"The Service::call path, seen in Code Generated Logging Middleware , is latency-sensitive. Careful implementation is required to avoid excess allocations during redaction of sensitive data. Wrapping Uri and HeaderMap then providing a new Display / Debug implementation which skips over the sensitive data is preferable over allocating a new String/HeaderMap and then mutating it. These wrappers should be provided alongside the Sensitive struct described in Debug Logging . If they are implemented on top of Sensitive, they will inherit the same behavior - allowing redactions to be toggled using unredacted-logging feature flag.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » HTTP Debug/Display Wrappers","id":"250","title":"HTTP Debug/Display Wrappers"},"251":{"body":"This logging middleware should be applied outside of the OperationHandler after its construction in the (generated) operation_registry.rs file. The middleware should preserve the associated types of the OperationHandler (Response = Response, Error = Infallible) to cause minimal disruption. An easy position to apply the logging middleware is illustrated below in the form of Logging{Operation}::new: let empty_operation = LoggingEmptyOperation::new(operation(registry.empty_operation));\nlet get_pokemon_species = LoggingPokemonSpecies::new(operation(registry.get_pokemon_species));\nlet get_server_statistics = LoggingServerStatistics::new(operation(registry.get_server_statistics));\nlet routes = vec![ (BoxCloneService::new(empty_operation), empty_operation_request_spec), (BoxCloneService::new(get_pokemon_species), get_pokemon_species_request_spec), (BoxCloneService::new(get_server_statistics), get_server_statistics_request_spec),\n];\nlet router = aws_smithy_http_server::routing::Router::new_rest_json_router(routes); Although an acceptable first step, putting logging middleware here is suboptimal - the Router allows a tower::Layer to be applied to the operation by using the Router::layer method. This middleware will be applied outside of the logging middleware and, as a result, will not be subject to the span of any middleware. Therefore, the Router must be changed to allow for middleware to be applied within the logging middleware rather than outside of it. This is a general problem, not specific to this proposal. For example, Use Request Extensions must also solve this problem. Fortunately, this problem is separable from the actual implementation of the logging middleware and we can get immediate benefit by application of it in the suboptimal position described above.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Middleware Position","id":"251","title":"Middleware Position"},"252":{"body":"There is need for logging within the Router implementation - this is a crucial area of business logic. As mentioned in the Routing section, we are permitted to log potentially sensitive data in cases where requests fail to get routed to an operation. In the case of AWS JSON 1.0 and 1.1 protocols, the request URI is always /, putting it outside of the reach of the @sensitive trait. We therefore have the option to log it before routing occurs. We make a choice not to do this in order to remove the special case - relying on the logging layer to log URIs when appropriate.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Logging within the Router","id":"252","title":"Logging within the Router"},"253":{"body":"A guideline should be made available, which includes: The HTTP bindings traits and why they are of concern in the presence of @sensitive. The Debug implementation on structures. How to use the Sensitive struct, HTTP wrappers, and the unredacted-logging feature flag described in Debug Logging and HTTP Debug/Display Wrappers . A warning against the two potential leaks described in Scope and Guidelines : Sensitive data leaking from third-party dependencies. Sensitive data leaking from middleware applied to the Router.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Developer Guideline","id":"253","title":"Developer Guideline"},"254":{"body":"All of the following proposals are compatible with, and benefit from, Debug Logging , HTTP Debug/Display Wrappers , and Developer Guideline portions of the main proposal. The main proposal disallows the logging of potentially sensitive data in the runtime crates, instead opting for a dedicated code generated logging middleware. In contrast, the following proposals all seek ways to accommodate logging of potentially sensitive data in the runtime crates.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Alternative Proposals","id":"254","title":"Alternative Proposals"},"255":{"body":"Request extensions can be used to adjoin data to a Request as it passes through the middleware. Concretely, they exist as the type map http::Extensions accessed via http::extensions and http::extensions_mut . These can be used to provide data to middleware interested in logging potentially sensitive data. struct Sensitivity { /* Data concerning which parts of the request are sensitive */\n} struct Middleware { inner: S\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if let Some(sensitivity) = request.extensions().get::() { if sensitivity.is_method_sensitive() { debug!(method = %request.method()); } } /* ... */ self.inner.call(request) }\n} A middleware layer must be code generated (much in the same way as the logging middleware) which is dedicated to inserting the Sensitivity struct into the extensions of each incoming request. impl Service> for SensitivityInserter\nwhere S: Service>\n{ /* ... */ fn call(&mut self, request: Request) -> Self::Future { let sensitivity = Sensitivity { /* .. */ }; request.extensions_mut().insert(sensitivity); self.inner.call(request) }\n} Advantages Applicable to all middleware which takes http::Request. Does not pollute the API of the middleware - code internal to middleware simply inspects the request's extensions and performs logic based on its value. Disadvantages The sensitivity and HTTP bindings are known at compile time whereas the insertion/retrieval of the extension data is done at runtime. http::Extensions is approximately a HashMap> so lookup/insertion involves indirection/cache misses/heap allocation.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Use Request Extensions","id":"255","title":"Use Request Extensions"},"256":{"body":"It is possible that sensitivity is a parameter passed to middleware during construction. This is similar in nature to Use Request Extensions except that the Sensitivity is passed to middleware during construction. struct Middleware { inner: S, sensitivity: Sensitivity\n} impl Middleware { pub fn new(inner: S) -> Self { /* ... */ } pub fn new_with_sensitivity(inner: S, sensitivity: Sensitivity) -> Self { /* ... */ }\n} impl Service> for Middleware { /* ... */ fn call(&mut self, request: Request) -> Self::Future { if self.sensitivity.is_method_sensitive() { debug!(method = %Sensitive(request.method())); } /* ... */ self.inner.call(request) }\n} It would then be required that the code generation responsible constructing a Sensitivity for each operation. Additionally, if any middleware is being applied to a operation then the code generation would be responsible for passing that middleware the appropriate Sensitivity before applying it. Advantages Applicable to all middleware. As the Sensitivity struct will be known statically, the compiler will remove branches, making it cheap. Disadvantages Pollutes the API of middleware.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Accommodate the Sensitivity in Middleware API","id":"256","title":"Accommodate the Sensitivity in Middleware API"},"257":{"body":"Distinct from tower::Layer, a tracing::Layer is a \"composable handler for tracing events\". It would be possible to write an implementation which would filter out events which contain sensitive data. Examples of filtering tracing::Layers already exist in the form of the EnvFilter and Targets . It is unlikely that we'll be able to leverage them for our use, but the underlying principle remains the same - the tracing::Layer inspects tracing::Events/tracing::Spans, filtering them based on some criteria. Code generation would be need to be used in order to produce the filtering criteria from the models. Internal developers would need to adhere to a common set of field names in order for them to be subject to the filtering. Spans would need to be opened after routing occurs in order for the tracing::Layer to know which operation Events are being produced within and hence which filtering rules to apply. Advantages Applicable to all middleware. Good separation of concerns: Does not pollute the API of the middleware No specific logic required within middleware. Disadvantages Complex implementation. Not necessarily fast. tracing::Layers seem to only support filtering entire Events, rather than more fine grained removal of fields.","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Redact values using a tracing Layer","id":"257","title":"Redact values using a tracing Layer"},"258":{"body":"Implement and integrate code generated logging middleware. https://github.com/smithy-lang/smithy-rs/pull/1550 Add logging to Router implementation. https://github.com/smithy-lang/smithy-rs/issues/1666 Write developer guideline. https://github.com/smithy-lang/smithy-rs/pull/1772 Refactor Router to allow for better positioning described in Middleware Position . https://github.com/smithy-lang/smithy-rs/pull/1620 https://github.com/smithy-lang/smithy-rs/pull/1679 https://github.com/smithy-lang/smithy-rs/pull/1693","breadcrumbs":"RFCs » RFC-0018: Logging in the Presence of Sensitive Data » Changes Checklist","id":"258","title":"Changes Checklist"},"259":{"body":"Status: Implemented For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how client and server will use errors defined in @streaming unions (event streams).","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » RFC: Errors for event streams","id":"259","title":"RFC: Errors for event streams"},"26":{"body":"The Rust SDK uses Smithy models and code generation tooling to generate an SDK. Smithy is an open source IDL (interface design language) developed by Amazon. Although the Rust SDK uses Smithy models for AWS services, smithy-rs and Smithy models in general are not AWS specific. Design documentation here covers both our implementation of Smithy Primitives (e.g. simple shape) as well as more complex Smithy traits like Endpoint .","breadcrumbs":"Smithy » Smithy","id":"26","title":"Smithy"},"260":{"body":"In the current version of smithy-rs, customers who want to use errors in event streams need to use them as so: stream! { yield Ok(EventStreamUnion::ErrorVariant ...)\n} Furthermore, there is no support for @errors in event streams being terminal; that is, when an error is sent, it does not signal termination and thus does not complete the stream. This RFC proposes to make changes to: terminate the stream upon receiving a modeled error change the API so that customers will write their business logic in a more Rust-like experience: stream! { yield Err(EventStreamUnionError::ErrorKind ...)\n} Thus any Err(_) from the stream is terminal, rather than any Ok(x) with x being matched against the set of modeled variant errors in the union.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » The user experience if this RFC is implemented","id":"260","title":"The user experience if this RFC is implemented"},"261":{"body":"In order to implement this feature: Errors modeled in streaming unions are going to be treated like operation errors They are in the error:: namespace They have the same methods operation errors have (name on the server, metadata on the client and so on) They are not variants in the corresponding error structure Errors need to be marshalled and unmarshalled Receiver must treat any error coming from the other end as terminal The code examples below have been generated using the following model : @http(uri: \"/capture-pokemon-event/{region}\", method: \"POST\")\noperation CapturePokemonOperation { input: CapturePokemonOperationEventsInput, output: CapturePokemonOperationEventsOutput, errors: [UnsupportedRegionError, ThrottlingError]\n} @input\nstructure CapturePokemonOperationEventsInput { @httpPayload events: AttemptCapturingPokemonEvent, @httpLabel @required region: String,\n} @output\nstructure CapturePokemonOperationEventsOutput { @httpPayload events: CapturePokemonEvents,\n} @streaming\nunion AttemptCapturingPokemonEvent { event: CapturingEvent, masterball_unsuccessful: MasterBallUnsuccessful,\n} structure CapturingEvent { @eventPayload payload: CapturingPayload,\n} structure CapturingPayload { name: String, pokeball: String,\n} @streaming\nunion CapturePokemonEvents { event: CaptureEvent, invalid_pokeball: InvalidPokeballError, throttlingError: ThrottlingError,\n} structure CaptureEvent { @eventHeader name: String, @eventHeader captured: Boolean, @eventHeader shiny: Boolean, @eventPayload pokedex_update: Blob,\n} @error(\"server\")\nstructure UnsupportedRegionError { @required region: String,\n}\n@error(\"client\")\nstructure InvalidPokeballError { @required pokeball: String,\n}\n@error(\"server\")\nstructure MasterBallUnsuccessful { @required message: String,\n}\n@error(\"client\")\nstructure ThrottlingError {} Wherever irrelevant, documentation and other lines are stripped out from the code examples below. Errors in streaming unions The error in AttemptCapturingPokemonEvent is modeled as follows. On the client, pub struct AttemptCapturingPokemonEventError { pub kind: AttemptCapturingPokemonEventErrorKind, pub(crate) meta: aws_smithy_types::Error,\n}\npub enum AttemptCapturingPokemonEventErrorKind { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful), Unhandled(Box),\n} On the server, pub enum AttemptCapturingPokemonEventError { MasterBallUnsuccessful(crate::error::MasterBallUnsuccessful),\n} Both are modeled as normal errors, where the name comes from Error with a prefix of the union's name. In fact, both the client and server generate operation errors and event stream errors the same way. Event stream errors have their own marshaller . To make it work for users to stream errors, EventStreamSender<>, in addition to the union type T, takes an error type E; that is, the AttemptCapturingPokemonEventError in the example. This means that an error from the stream is marshalled and sent as a data structure similarly to the union's non-error members. On the other side, the Receiver<> needs to terminate the stream upon receiving any error . A terminated stream has no more data and will always be a bug to use it. An example of how errors can be used on clients, extracted from this test : yield Err(AttemptCapturingPokemonEventError::new( AttemptCapturingPokemonEventErrorKind::MasterBallUnsuccessful(MasterBallUnsuccessful::builder().build()), Default::default()\n)); Because unions can be used in input or output of more than one operation, errors must be generated once as they are in the error:: namespace.","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » How to actually implement this RFC","id":"261","title":"How to actually implement this RFC"},"262":{"body":"Errors are in the error:: namespace and created as operation errors Errors can be sent to the stream Errors terminate the stream Customers' experience using errors mirrors the Rust way: Err(error::StreamingError ...)","breadcrumbs":"RFCs » RFC-0019: Event Streams Errors » Changes checklist","id":"262","title":"Changes checklist"},"263":{"body":"Status: Accepted One might characterize smithy-rs as a tool for transforming a Smithy service into a tower::Service builder. A Smithy model defines behavior of the generated service partially - handlers must be passed to the builder before the tower::Service is fully specified. This builder structure is the primary API surface we provide to the customer, as a result, it is important that it meets their needs. This RFC proposes a new builder, deprecating the existing one, which addresses API deficiencies and takes steps to improve performance.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » RFC: Service Builder Improvements","id":"263","title":"RFC: Service Builder Improvements"},"264":{"body":"Model : A Smithy Model , usually pertaining to the one in use by the customer. Smithy Service : The entry point of an API that aggregates resources and operations together within a Smithy model. Described in detail here . Service : The tower::Service trait is an interface for writing network applications in a modular and reusable way. Services act on requests to produce responses. Service Builder : A tower::Service builder, generated from a Smithy service, by smithy-rs. Middleware : Broadly speaking, middleware modify requests and responses. Concretely, these are exist as implementations of Layer /a Service wrapping an inner Service. Handler : A closure defining the behavior of a particular request after routing. These are provided to the service builder to complete the description of the service.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Terminology","id":"264","title":"Terminology"},"265":{"body":"To provide context for the proposal we perform a survey of the current state of affairs. The following is a reference model we will use throughout the RFC: operation Operation0 { input: Input0, output: Output0\n} operation Operation1 { input: Input1, output: Output1\n} @restJson1\nservice Service0 { operations: [ Operation0, Operation1, ]\n} We have purposely omitted details from the model that are unimportant to describing the proposal. We also omit distracting details from the Rust snippets. Code generation is linear in the sense that, code snippets can be assumed to extend to multiple operations in a predictable way. In the case where we do want to speak generally about an operation and its associated types, we use {Operation}, for example {Operation}Input is the input type of an unspecified operation. Here is a quick example of what a customer might write when using the service builder: async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler1(input: Operation1Input) -> Operation1Output { todo!()\n} let app: Router = OperationRegistryBuilder::default() // Use the setters .operation0(handler0) .operation1(handler1) // Convert to `OperationRegistry` .build() .unwrap() // Convert to `Router` .into(); During the survey we touch on the major mechanisms used to achieve this API.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Background","id":"265","title":"Background"},"266":{"body":"A core concept in the service builder is the Handler trait: pub trait Handler { async fn call(self, req: http::Request) -> http::Response;\n} Its purpose is to provide an even interface over closures of the form FnOnce({Operation}Input) -> impl Future and FnOnce({Operation}Input, State) -> impl Future. It's this abstraction which allows the customers to supply both async fn handler(input: {Operation}Input) -> {Operation}Output and async fn handler(input: {Operation}Input, state: Extension) -> {Operation}Output to the service builder. We generate Handler implementations for said closures in ServerOperationHandlerGenerator.kt : impl Handler<(), Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input let output = self(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} impl Handler, Operation0Input> for Fun\nwhere Fun: FnOnce(Operation0Input, Extension) -> Fut, Fut: Future,\n{ async fn call(self, request: http::Request) -> http::Response { let input = /* Create `Operation0Input` from `request: http::Request` */; // Use closure on the input and fetched extension data let extension = Extension(request.extensions().get::().clone()); let output = self(input, extension).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Creating {Operation}Input from a http::Request and http::Response from a {Operation}Output involves protocol aware serialization/deserialization, for example, it can involve the HTTP binding traits . The RuntimeError enumerates error cases such as serialization/deserialization failures, extensions().get::() failures, etc. We omit error handling in the snippet above, but, in full, it also involves protocol aware conversions from the RuntimeError to http::Response. The reader should make note of the influence of the model on the different sections of this procedure. The request.extensions().get::() present in the Fun: FnOnce(Operation0Input, Extension) -> Fut implementation is the current approach to injecting state into handlers. The customer is required to apply a AddExtensionLayer to the output of the service builder so that, when the request reaches the handler, the extensions().get::() will succeed. To convert the closures described above into a Service an OperationHandler is used: pub struct OperationHandler { handler: H,\n} impl Service> for OperationHandler\nwhere H: Handler,\n{ type Response = http::Response; type Error = Infallible; #[inline] fn poll_ready(&mut self, _cx: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, req: Request) -> Result { self.handler.call(req).await.map(Ok) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Handlers","id":"266","title":"Handlers"},"267":{"body":"The service builder we provide to the customer is the OperationRegistryBuilder, generated from ServerOperationRegistryGenerator.kt . Currently, the reference model would generate the following OperationRegistryBuilder and OperationRegistry: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option,\n} pub struct OperationRegistry { operation1: Op0, operation2: Op1,\n} The OperationRegistryBuilder includes a setter per operation, and a fallible build method: impl OperationRegistryBuilder { pub fn operation0(mut self, value: Op0) -> Self { self.operation0 = Some(value); self } pub fn operation1(mut self, value: Op1) -> Self { self.operation1 = Some(value); self } pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) }\n} The OperationRegistry does not include any methods of its own, however it does enjoy a From for Router implementation: impl From> for Router\nwhere Op0: Handler, Op1: Handler,\n{ fn from(registry: OperationRegistry) -> Self { let operation0_request_spec = /* Construct Operation0 routing information */; let operation1_request_spec = /* Construct Operation1 routing information */; // Convert handlers into boxed services let operation0_svc = Box::new(OperationHandler::new(registry.operation0)); let operation1_svc = Box::new(OperationHandler::new(registry.operation1)); // Initialize the protocol specific router // We demonstrate it here with `new_rest_json_router`, but note that there is a different router constructor // for each protocol. aws_smithy_http_server::routing::Router::new_rest_json_router(vec![ ( operation0_request_spec, operation0_svc ), ( operation1_request_spec, operation1_svc ) ]) }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Builder","id":"267","title":"Builder"},"268":{"body":"The aws_smithy_http::routing::Router provides the protocol aware routing of requests to their target , it exists as pub struct Route { service: Box>,\n} enum Routes { RestXml(Vec<(Route, RequestSpec)>), RestJson1(Vec<(Route, RequestSpec)>), AwsJson1_0(TinyMap), AwsJson11(TinyMap),\n} pub struct Router { routes: Routes,\n} and enjoys the following Service implementation: impl Service for Router\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll> { Poll::Ready(Ok(())) } async fn call(&mut self, request: http::Request) -> Result { match &self.routes { Routes::/* protocol */(routes) => { let route: Result = /* perform route matching logic */; match route { Ok(ok) => ok.oneshot().await, Err(err) => /* Convert routing error into http::Response */ } } } }\n} Along side the protocol specific constructors, Router includes a layer method. This provides a way for the customer to apply a tower::Layer to all routes. For every protocol, Router::layer has the approximately the same behavior: let new_routes = old_routes .into_iter() // Apply the layer .map(|route| layer.layer(route)) // Re-box the service, to restore `Route` type .map(|svc| Box::new(svc)) // Collect the iterator back into a collection (`Vec` or `TinyMap`) .collect();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Router","id":"268","title":"Router"},"269":{"body":"Historically, smithy-rs has borrowed from axum . Despite various divergences the code bases still have much in common: Reliance on Handler trait to abstract over different closure signatures: axum::handler::Handler Handlers A mechanism for turning H: Handler into a tower::Service: axum::handler::IntoService OperationHandler A Router to route requests to various handlers: axum::Router aws_smithy_http_server::routing::Router To identify where the implementations should differ we should classify in what ways the use cases differ. There are two primary areas which we describe below. Extractors and Responses In axum there is a notion of Extractor , which allows the customer to easily define a decomposition of an incoming http::Request by specifying the arguments to the handlers. For example, async fn request(Json(payload): Json, Query(params): Query>, headers: HeaderMap) { todo!()\n} is a valid handler - each argument satisfies the axum::extract::FromRequest trait, therefore satisfies one of axums blanket Handler implementations: macro_rules! impl_handler { ( $($ty:ident),* $(,)? ) => { impl Handler<($($ty,)*)> for F where F: FnOnce($($ty,)*) -> Fut + Clone + Send + 'static, Fut: Future + Send, Res: IntoResponse, $( $ty: FromRequest + Send,)* { fn call(self, req: http::Request) -> Self::Future { async { let mut req = RequestParts::new(req); $( let $ty = match $ty::from_request(&mut req).await { Ok(value) => value, Err(rejection) => return rejection.into_response(), }; )* let res = self($($ty,)*).await; res.into_response() } } } };\n} The implementations of Handler in axum and smithy-rs follow a similar pattern - convert http::Request into the closure's input, run the closure, convert the output of the closure to http::Response. In smithy-rs we do not need a general notion of \"extractor\" - the http::Request decomposition is specified by the Smithy model, whereas in axum it's defined by the handlers signature. Despite the Smithy specification the customer may still want an \"escape hatch\" to allow them access to data outside of the Smithy service inputs, for this reason we should continue to support a restricted notion of extractor. This will help support use cases such as passing lambda_http::Context through to the handler despite it not being modeled in the Smithy model. Dual to FromRequest is the axum::response::IntoResponse trait. This plays the role of converting the output of the handler to http::Response. Again, the difference between axum and smithy-rs is that smithy-rs has the conversion from {Operation}Output to http::Response specified by the Smithy model, whereas in axum the customer is free to specify a return type which implements axum::response::IntoResponse. Routing The Smithy model not only specifies the http::Request decomposition and http::Response composition for a given service, it also determines the routing. The From implementation, described in Builder , yields a fully formed router based on the protocol and http traits specified. This is in contrast to axum, where the user specifies the routing by use of various combinators included on the axum::Router, applied to other tower::Services. In an axum application one might encounter the following code: let user_routes = Router::new().route(\"/:id\", /* service */); let team_routes = Router::new().route(\"/\", /* service */); let api_routes = Router::new() .nest(\"/users\", user_routes) .nest(\"/teams\", team_routes); let app = Router::new().nest(\"/api\", api_routes); Note that, in axum handlers are eagerly converted to a tower::Service (via IntoService) before they are passed into the Router. In contrast, in smithy-rs, handlers are passed into a builder and then the conversion to tower::Service is performed (via OperationHandler). Introducing state to handlers in axum is done in the same way as smithy-rs, described briefly in Handlers - a layer is used to insert state into incoming http::Requests and the Handler implementation pops it out of the type map layer. In axum, if a customer wanted to scope state to all routes within /users/ they are able to do the following: async fn handler(Extension(state): Extension) -> /* Return Type */ {} let api_routes = Router::new() .nest(\"/users\", user_routes.layer(Extension(/* state */))) .nest(\"/teams\", team_routes); In smithy-rs a customer is only able to apply a layer around the aws_smithy_http::routing::Router or around every route via the layer method described above.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Comparison to Axum","id":"269","title":"Comparison to Axum"},"27":{"body":"Smithy introduces a few concepts that are defined here: Shape: The core Smithy primitive. A smithy model is composed of nested shapes defining an API. Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt . Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately. Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a \"Rust block\" of code. writer.rustBlock(\"struct Model\") { model.fields.forEach { write(\"${field.name}: #T\", field.symbol) }\n} This would produce something like: struct Model { field1: u32, field2: String\n} Generators: A Generator, e.g. StructureGenerator, UnionGenerator generates more complex Rust code from a Smithy model. Protocol generators pull these individual tools together to generate code for an entire service / protocol. A developer's view of code generation can be found in this document .","breadcrumbs":"Smithy » Internals","id":"27","title":"Internals"},"270":{"body":"The proposal is presented as a series of compatible transforms to the existing service builder, each paired with a motivation. Most of these can be independently implemented, and it is stated in the cases where an interdependency exists. Although presented as a mutation to the existing service builder, the actual implementation should exist as an entirely separate builder, living in a separate namespace, reusing code generation from the old builder, while exposing a new Rust API. Preserving the old API surface will prevent breakage and make it easier to perform comparative benchmarks and testing.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Proposal","id":"270","title":"Proposal"},"271":{"body":"As described in Builder , the customer is required to perform two conversions. One from OperationRegistryBuilder via OperationRegistryBuilder::build, the second from OperationRegistryBuilder to Router via the From for Router implementation. The intermediary stop at OperationRegistry is not required and can be removed.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Remove two-step build procedure","id":"271","title":"Remove two-step build procedure"},"272":{"body":"As described in Builder , the OperationRegistryBuilder::build method is fallible - it yields a runtime error when one of the handlers has not been set. pub fn build( self, ) -> Result, OperationRegistryBuilderError> { Ok(OperationRegistry { operation0: self.operation0.ok_or(/* OperationRegistryBuilderError */)?, operation1: self.operation1.ok_or(/* OperationRegistryBuilderError */)?, }) } We can do away with fallibility if we allow for on Op0, Op1 to switch types during build and remove the Option from around the fields. The OperationRegistryBuilder then becomes struct OperationRegistryBuilder { operation_0: Op0, operation_1: Op1\n} impl OperationRegistryBuilder { pub fn operation0(mut self, value: NewOp0) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: value, operation1: self.operation1 } } pub fn operation1(mut self, value: NewOp1) -> OperationRegistryBuilder { OperationRegistryBuilder { operation0: self.operation0, operation1: value } }\n} impl OperationRegistryBuilder\nwhere Op0: Handler, Op1: Handler,\n{ pub fn build(self) -> OperationRegistry { OperationRegistry { operation0: self.operation0, operation1: self.operation1, } }\n} The customer will now get a compile time error rather than a runtime error when they fail to specify a handler.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Statically check for missing Handlers","id":"272","title":"Statically check for missing Handlers"},"273":{"body":"To construct a Router, the customer must either give a type ascription let app: Router = /* Service builder */.into(); or be explicit about the Router namespace let app = Router::from(/* Service builder */); If we switch from a From for Router to a build method on OperationRegistry the customer may simply let app = /* Service builder */.build(); There already exists a build method taking OperationRegistryBuilder to OperationRegistry, this is removed in Remove two-step build procedure . These two transforms pair well together for this reason.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Switch From for Router to an OperationRegistry::build method","id":"273","title":"Switch From for Router to an OperationRegistry::build method"},"274":{"body":"As mentioned in Comparison to Axum: Routing and Handlers , the smithy-rs service builder accepts handlers and only converts them into a tower::Service during the final conversion into a Router. There are downsides to this: The customer has no opportunity to apply middleware to a specific operation before they are all collected into Router. The Router does have a layer method, described in Router , but this applies the middleware uniformly across all operations. The builder has no way to apply middleware around customer applied middleware. A concrete example of where this would be useful is described in the Middleware Position section of RFC: Logging in the Presence of Sensitive Data . The customer has no way of expressing readiness of the underlying operation - all handlers are converted to services with Service::poll_ready returning Poll::Ready(Ok(())). The three use cases described above are supported by axum by virtue of the Router::route method accepting a tower::Service. The reader should consider a similar approach where the service builder setters accept a tower::Service rather than the Handler. Throughout this section we purposely ignore the existence of handlers accepting state alongside the {Operation}Input, this class of handlers serve as a distraction and can be accommodated with small perturbations from each approach. Approach A: Customer uses OperationHandler::new It's possible to make progress with a small changeset, by requiring the customer eagerly uses OperationHandler::new rather than it being applied internally within From for Router (see Handlers ). The setter would then become: pub struct OperationRegistryBuilder { operation1: Option, operation2: Option\n} impl OperationRegistryBuilder { pub fn operation0(self, value: Op0) -> Self { self.operation1 = Some(value); self }\n} The API usage would then become async fn handler0(input: Operation0Input) -> Operation0Output { todo!()\n} // Create a `Service` eagerly\nlet svc = OperationHandler::new(handler0); // Middleware can be applied at this point\nlet operation0 = /* A HTTP `tower::Layer` */.layer(op1_svc); OperationRegistryBuilder::default() .operation0(operation0) /* ... */ Note that this requires that the OperationRegistryBuilder stores services, rather than Handlers. An unintended and superficial benefit of this is that we are able to drop In{n} from the OperationRegistryBuilder - only Op{n} remains and it parametrizes each operation's tower::Service. It is still possible to retain the original API which accepts Handler by introducing the following setters: impl OperationRegistryBuilder { fn operation0_handler(self, handler: H) -> OperationRegistryBuilder, Op2> { OperationRegistryBuilder { operation0: OperationHandler::new(handler), operation1: self.operation1 } }\n} There are two points at which the customer might want to apply middleware: around tower::Service<{Operation}Input, Response = {Operation}Output> and tower::Service, that is, before and after the serialization/deserialization is performed. The change described only succeeds in the latter, and therefore is only a partial solution to (1). This solves (2), the service builder may apply additional middleware around the service. This does not solve (3), as the customer is not able to provide a tower::Service<{Operation}Input, Response = {Operation}Output>. Approach B: Operations as Middleware In order to achieve all three we model operations as middleware: pub struct Operation0 { inner: S,\n} impl Service for Operation0\nwhere S: Service\n{ type Response = http::Response; type Error = Infallible; fn poll_ready(&mut self, cx: &mut Context) -> Poll> { // We defer to the inner service for readiness self.inner.poll_ready(cx) } async fn call(&mut self, request: http::Request) -> Result { let input = /* Create `Operation0Input` from `request: http::Request` */; self.inner.call(input).await; let response = /* Create `http::Response` from `output: Operation0Output` */ response }\n} Notice the similarity between this and the OperationHandler, the only real difference being that we hold an inner service rather than a closure. In this way we have separated all model aware serialization/deserialization, we noted in Handlers , into this middleware. A consequence of this is that the user Operation0 must have two constructors: from_service, which takes a tower::Service. from_handler, which takes an async Operation0Input -> Operation0Output. A brief example of how this might look: use tower::util::{ServiceFn, service_fn}; impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, } }\n} impl Operation0> { pub fn from_handler(inner: F) -> Self { // Using `service_fn` here isn't strictly correct - there is slight misalignment of closure signatures. This // still serves to illustrate the proposal. Operation0::from_service(service_fn(inner)) }\n} The API usage then becomes: async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} // These are both `tower::Service` and hence can have middleware applied to them\nlet operation_0 = Operation0::from_handler(handler);\nlet operation_1 = Operation1::from_service(/* some service */); OperationRegistryBuilder::default() .operation0(operation_0) .operation1(operation_1) /* ... */ Approach C: Operations as Middleware Constructors While Attempt B solves all three problems, it fails to adequately model the Smithy semantics. An operation cannot uniquely define a tower::Service without reference to a parent Smithy service - information concerning the serialization/deserialization, error modes are all inherited from the Smithy service an operation is used within. In this way, Operation0 should not be a standalone middleware, but become middleware once accepted by the service builder. Any solution which provides an {Operation} structure and wishes it to be accepted by multiple service builders must deal with this problem. We currently build one library per service and hence have duplicate structures when service closures overlap. This means we wouldn't run into this problem today, but it would be a future obstruction if we wanted to reduce the amount of generated code. use tower::layer::util::{Stack, Identity};\nuse tower::util::{ServiceFn, service_fn}; // This takes the same form as `Operation0` defined in the previous attempt. The difference being that this is now\n// private.\nstruct Service0Operation0 { inner: S\n} impl Service for ServiceOperation0\nwhere S: Service\n{ /* Same as above */\n} pub struct Operation0 { inner: S, layer: L\n} impl Operation0 { pub fn from_service(inner: S) -> Self { Self { inner, layer: Identity } }\n} impl Operation0, Identity> { pub fn from_handler(inner: F) -> Self { Operation0::from_service(service_fn(inner)) }\n} impl Operation0 { pub fn layer(self, layer: L) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, layer) } } pub fn logging(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, LoggingLayer::new(/* args */)) } } pub fn auth(self, /* args */) -> Operation0> { Operation0 { inner: self.inner, layer: Stack::new(self.layer, /* Construct auth middleware */) } }\n} impl OperationRegistryBuilder { pub fn operation0(self, operation: Operation0) -> OperationRegistryBuilder<>::Service, Op2> where L: Layer> { // Convert `Operation0` to a `tower::Service`. let http_svc = Service0Operation0 { inner: operation.inner }; // Apply the layers operation.layer(http_svc) }\n} Notice that we get some additional type safety here when compared to Approach A and Approach B - operation0 accepts a Operation0 rather than a general tower::Service. We also get a namespace to include utility methods - notice the logging and auth methods. The RFC favours this approach out of all those presented. Approach D: Add more methods to the Service Builder An alternative to Approach C is to simply add more methods to the service builder while internally storing a tower::Service: operation0_from_service, accepts a tower::Service. operation0_from_handler, accepts an async Fn(Operation0Input) -> Operation0Output. operation0_layer, accepts a tower::Layer. This is functionally similar to Attempt C except that all composition is done internal to the service builder and the namespace exists in the method name, rather than the {Operation} struct.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Operations as Middleware Constructors","id":"274","title":"Operations as Middleware Constructors"},"275":{"body":"Currently the Router stores Box. As a result the Router::layer method, seen in Router , must re-box a service after every tower::Layer applied. The heap allocation Box::new itself is not cause for concern because Routers are typically constructed once at startup, however one might expect the indirection to regress performance when the server is running. Having the service type parameterized as Router, allows us to write: impl Router { fn layer(self, layer: &L) -> Router where L: Layer { /* Same internal implementation without boxing */ }\n}","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Service parameterized Routers","id":"275","title":"Service parameterized Routers"},"276":{"body":"Currently there is a single Router structure, described in Router , situated in the rust-runtime/aws-smithy-http-server crate, which is output by the service builder. This, roughly, takes the form of an enum listing the different protocols. #[derive(Debug)]\nenum Routes { RestXml(/* Container */), RestJson1(/* Container */), AwsJson1_0(/* Container */), AwsJson1_1(/* Container */),\n} Recall the form of the Service::call method, given in Router , which involved matching on the protocol and then performing protocol specific logic. Two downsides of modelling Router in this way are: Router is larger and has more branches than a protocol specific implementation. If a third-party wanted to extend smithy-rs to additional protocols Routes would have to be extended. A synopsis of this obstruction is presented in Should we generate the Router type issue. After taking the Switch From for Router to an OperationRegistry::build method transform, code generation is free to switch between return types based on the model. This allows for a scenario where a @restJson1 causes the service builder to output a specific RestJson1Router.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Routers","id":"276","title":"Protocol specific Routers"},"277":{"body":"Currently, protocol specific routing errors are either: Converted to RuntimeErrors and then http::Response (see unknown_operation ). Converted directly to a http::Response (see method_not_allowed ). This is an outlier to the common pattern. The from_request functions yield protocol specific errors which are converted to RequestRejections then RuntimeErrors (see ServerHttpBoundProtocolGenerator.kt ). In these scenarios protocol specific errors are converted into RuntimeError before being converted to a http::Response via into_response method. Two downsides of this are: RuntimeError enumerates all possible errors across all existing protocols, so is larger than modelling the errors for a specific protocol. If a third-party wanted to extend smithy-rs to additional protocols with differing failure modes RuntimeError would have to be extended. As in Protocol specific Errors , a synopsis of this obstruction is presented in Should we generate the Router type issue. Switching from using RuntimeError to protocol specific errors which satisfy a common interface, IntoResponse, would resolve these problem.","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Protocol specific Errors","id":"277","title":"Protocol specific Errors"},"278":{"body":"Currently the service builder is named OperationRegistryBuilder. Despite the name being model agnostic, the OperationRegistryBuilder mutates when the associated service mutates. Renaming OperationRegistryBuilder to {Service}Builder would reflect the relationship between the builder and the Smithy service and prevent naming conflicts if multiple service builders are to exist in the same namespace. Similarly, the output of the service builder is Router. This ties the output of the service builder to a structure in rust-runtime. Introducing a type erasure here around Router using a newtype named {Service} would: Ensure we are free to change the implementation of {Service} without changing the Router implementation. Hide the router type, which is determined by the protocol specified in the model. Allow us to put a builder method on {Service} which returns {Service}Builder. This is compatible with Protocol specific Routers , we simply newtype the protocol specific router rather than Router. With both of these changes the API would take the form: let service_0: Service0 = Service0::builder() /* use the setters */ .build() .unwrap() .into(); With Remove two-step build procedure , Switch From for Router to a OperationRegistry::build method , and Statically check for missing Handlers we obtain the following API: let service_0: Service0 = Service0::builder() /* use the setters */ .build();","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Type erasure with the name of the Smithy service","id":"278","title":"Type erasure with the name of the Smithy service"},"279":{"body":"A combination of all the proposed transformations results in the following API: struct Context { /* fields */\n} async fn handler(input: Operation0Input) -> Operation0Output { todo!()\n} async fn handler_with_ext(input: Operation0Input, extension: Extension) -> Operation0Output { todo!()\n} struct Operation1Service { /* fields */\n} impl Service for Operation1Service { type Response = Operation1Output; /* implementation */\n} struct Operation1ServiceWithExt { /* fields */\n} impl Service<(Operation1Input, Extension)> for Operation1Service { type Response = Operation1Output; /* implementation */\n} // Create an operation from a handler\nlet operation_0 = Operation0::from_handler(handler); // Create an operation from a handler with extension\nlet operation_0 = Operation::from_handler(handler_with_ext); // Create an operation from a `tower::Service`\nlet operation_1_svc = Operation1Service { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Create an operation from a `tower::Service` with extension\nlet operation_1_svc = Operation1ServiceWithExtension { /* initialize */ };\nlet operation_1 = Operation::from_service(operation_1_svc); // Apply a layer\nlet operation_0 = operation_0.layer(/* layer */); // Use the service builder\nlet service_0 = Service0::builder() .operation_0(operation_0) .operation_1(operation_1) .build(); A toy implementation of the combined proposal is presented in this PR .","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Combined Proposal","id":"279","title":"Combined Proposal"},"28":{"body":"Smithy Type (links to design discussions) Rust Type (links to Rust documentation) blob Vec boolean bool string String byte i8 short i16 integer i32 long i64 float f32 double f64 bigInteger BigInteger (Not implemented yet) bigDecimal BigDecimal (Not implemented yet) timestamp DateTime document Document","breadcrumbs":"Smithy » Simple Shapes » Simple Shapes","id":"28","title":"Simple Shapes"},"280":{"body":"Add protocol specific routers to rust-runtime/aws-smithy-http-server. https://github.com/smithy-lang/smithy-rs/pull/1666 Add middleware primitives and error types to rust-runtime/aws-smithy-http-server. https://github.com/smithy-lang/smithy-rs/pull/1679 Add code generation which outputs new service builder. https://github.com/smithy-lang/smithy-rs/pull/1693 Deprecate OperationRegistryBuilder, OperationRegistry and Router. https://github.com/smithy-lang/smithy-rs/pull/1886 https://github.com/smithy-lang/smithy-rs/pull/2161","breadcrumbs":"RFCs » RFC-0020: Service Builder Improvements » Changes Checklist","id":"280","title":"Changes Checklist"},"281":{"body":"Status: Accepted Applies to: Client and Server This RFC outlines how Rust dependency versions are selected for the smithy-rs project, and strives to meet the following semi-conflicting goals: Dependencies are secure Vended libraries have dependency ranges that overlap other Rust libraries as much as possible When in conflict, the security goal takes priority over the compatibility goal.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » RFC: Dependency Versions","id":"281","title":"RFC: Dependency Versions"},"282":{"body":"The Rust crates within smithy-rs can be divided up into two categories: Library Crates: Crates that are published to crates.io with the intention that other projects will depend on them via their Cargo.toml files. This category does NOT include binaries that are published to crates.io with the intention of being installed with cargo install. Application Crates: All examples, binaries, tools, standalone tests, or other crates that are not published to crates.io with the intent of being depended on by other projects. All generated crates must be considered library crates even if they're not published since they are intended to be pulled into other Rust projects with other dependencies.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Categorization of Crates","id":"282","title":"Categorization of Crates"},"283":{"body":"The aws-smithy-http-server-python crate doesn't fit the categorization rules well since it is a runtime crate for a generated Rust application with bindings to Python. This RFC establishes this crate as an application crate since it needs to pull in application-specific dependencies such as tracing-subscriber in order to implement its full feature set.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Support crates for Applications","id":"283","title":"Support crates for Applications"},"284":{"body":"Application crates should use the latest versions of dependencies, but must use a version greater than or equal to the minimum secure version as determined by the RUSTSEC advisories database . Library crates must use the minimum secure version. This is illustrated at a high level below: graph TD S[Add Dependency] --> T{Crate Type?} T -->|Application Crate?| A[Use latest version] T -->|Library Crate?| L[Use minimum secure version]","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Dependency Version Rules","id":"284","title":"Dependency Version Rules"},"285":{"body":"If a dependency has multiple supported major versions, then the latest major version must be selected unless there is a compelling reason to do otherwise (such as the previous major version having been previously exposed in our public API). Choosing newer major versions will reduce the amount of upgrade work that needs to be done at a later date when support for the older version is inevitably dropped.","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » What is a minimum secure version when there are multiple major versions?","id":"285","title":"What is a minimum secure version when there are multiple major versions?"},"286":{"body":"Some work needs to be done to establish these guidelines: Establish automation for enforcing minimum secure versions for the direct dependencies of library crates","breadcrumbs":"RFCs » RFC-0021: Dependency Versions » Changes Checklist","id":"286","title":"Changes Checklist"},"287":{"body":"Status: Implemented Applies to: Generated clients and shared rust-runtime crates This RFC proposes a pattern for writing Rust errors to provide consistent error context AND forwards/backwards compatibility. The goal is to strike a balance between these four goals: Errors are forwards compatible, and changes to errors are backwards compatible Errors are idiomatic and ergonomic. It is easy to match on them and extract additional information for cases where that's useful. The type system prevents errors from being used incorrectly (for example, incorrectly retrieving context for a different error variant) Error messages are easy to debug Errors implement best practices with Rust's Error trait (for example, implementing the optional source() function where possible) Note: This RFC is not about error backwards compatibility when it comes to error serialization/deserialization for transfer over the wire. The Smithy protocols cover that aspect.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » RFC: Error Context and Compatibility","id":"287","title":"RFC: Error Context and Compatibility"},"288":{"body":"This section examines some examples found in aws-config that illustrate different problems that this RFC will attempt to solve, and calls out what was done well, and what could be improved upon.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Past approaches in smithy-rs","id":"288","title":"Past approaches in smithy-rs"},"289":{"body":"To start, let's examine InvalidFullUriError (doc comments omitted): #[derive(Debug)]\n#[non_exhaustive]\npub enum InvalidFullUriError { #[non_exhaustive] InvalidUri(InvalidUri), #[non_exhaustive] NoDnsService, #[non_exhaustive] MissingHost, #[non_exhaustive] NotLoopback, DnsLookupFailed(io::Error),\n} impl Display for InvalidFullUriError { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { InvalidFullUriError::InvalidUri(err) => write!(f, \"URI was invalid: {}\", err), InvalidFullUriError::MissingHost => write!(f, \"URI did not specify a host\"), // ... omitted ... } }\n} impl Error for InvalidFullUriError { fn source(&self) -> Option<&(dyn Error + 'static)> { match self { InvalidFullUriError::InvalidUri(err) => Some(err), InvalidFullUriError::DnsLookupFailed(err) => Some(err), _ => None, } }\n} This error does a few things well: Using #[non_exhaustive] on the enum allows new errors to be added in the future. Breaking out different error types allows for more useful error messages, potentially with error-specific context. Customers can match on these different error variants to change their program flow, although it's not immediately obvious if such use cases exist for this error. The error cause is available through the Error::source() impl for variants that have a cause. However, there are also a number of things that could be improved: All tuple/struct enum members are public, and InvalidUri is an error from the http crate. Exposing a type from another crate can potentially lock the GA SDK into a specific crate version if breaking changes are ever made to the exposed types. In this specific case, it prevents using alternate HTTP implementations that don't use the http crate. DnsLookupFailed is missing #[non_exhaustive], so new members can never be added to it. Use of enum tuples, even with #[non_exhaustive], adds friction to evolving the API since the tuple members cannot be named. Printing the source error in the Display impl leads to error repetition by reporters that examine the full source chain. The source() impl has a _ match arm, which means future implementers could forget to propagate a source when adding new error variants. The error source can be downcasted to InvalidUri type from http in customer code. This is a leaky abstraction where customers can start to rely on the underlying library the SDK uses in its implementation, and if that library is replaced/changed, it can silently break the customer's application. Note: later in the RFC, I'll demonstrate why fixing this issue is not practical.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: InvalidFullUriError","id":"289","title":"Case study: InvalidFullUriError"},"29":{"body":"Rust currently has no standard library or universally accepted large-number crate. Until one is stabilized, a string representation is a reasonable compromise: pub struct BigInteger(String);\npub struct BigDecimal(String); This will enable us to add helpers over time as requested. Users will also be able to define their own conversions into their preferred large-number libraries. As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here .","breadcrumbs":"Smithy » Simple Shapes » Big Numbers","id":"29","title":"Big Numbers"},"290":{"body":"Next, let's look at a much simpler error. The ProfileParseError is focused purely on the parsing logic for the SDK config file: #[derive(Debug, Clone)]\npub struct ProfileParseError { location: Location, message: String,\n} impl Display for ProfileParseError { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!( f, \"error parsing {} on line {}:\\n {}\", self.location.path, self.location.line_number, self.message ) }\n} impl Error for ProfileParseError {} What this error does well: The members are private, so #[non_exhaustive] isn't even necessary The error is completely opaque (maximizing compatibility) while still being debuggable thanks to the flexible messaging What could be improved: It needlessly implements Clone, which may prevent it from holding an error source in the future since errors are often not Clone. In the future, if more error variants are needed, a private inner error kind enum could be added to change messaging, but there's not a nice way to expose new variant-specific information to the customer. Programmatic access to the error Location may be desired, but this can be trivially added in the future without a breaking change by adding an accessor method.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: ProfileParseError","id":"290","title":"Case study: ProfileParseError"},"291":{"body":"The SDK currently generates errors such as the following (from S3): #[non_exhaustive]\npub enum Error { BucketAlreadyExists(BucketAlreadyExists), BucketAlreadyOwnedByYou(BucketAlreadyOwnedByYou), InvalidObjectState(InvalidObjectState), NoSuchBucket(NoSuchBucket), NoSuchKey(NoSuchKey), NoSuchUpload(NoSuchUpload), NotFound(NotFound), ObjectAlreadyInActiveTierError(ObjectAlreadyInActiveTierError), ObjectNotInActiveTierError(ObjectNotInActiveTierError), Unhandled(Box),\n} Each error variant gets its own struct, which can hold error-specific contextual information. Except for the Unhandled variant, both the error enum and the details on each variant are extensible. The Unhandled variant should move the error source into a struct so that its type can be hidden. Otherwise, the code generated errors are already aligned with the goals of this RFC.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Case study: code generated client errors","id":"291","title":"Case study: code generated client errors"},"292":{"body":"","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Approaches from other projects","id":"292","title":"Approaches from other projects"},"293":{"body":"The standard library uses an Error struct with an accompanying ErrorKind enum for its IO error. Roughly: #[derive(Debug)]\n#[non_exhaustive]\npub enum ErrorKind { NotFound, // ... omitted ... Other,\n} #[derive(Debug)]\npub struct Error { kind: ErrorKind, source: Box,\n} What this error does well: It is extensible since the ErrorKind is non-exhaustive It has an Other error type that can be instantiated by users in unit tests, making it easier to unit test error handling What could be improved: There isn't an ergonomic way to add programmatically accessible error-specific context to this error in the future The source error can be downcasted, which could be a trap for backwards compatibility.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » std::io::Error","id":"293","title":"std::io::Error"},"294":{"body":"Hyper has outlined some problems they want to address with errors for the coming 1.0 release. To summarize: It's difficult to match on specific errors (Hyper 0.x's Error relies on is_x methods for error matching rather than enum matching). Error reporters duplicate information since the hyper 0.x errors include the display of their error sources Error::source() can leak internal dependencies","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Hyper 1.0","id":"294","title":"Hyper 1.0"},"295":{"body":"There is discussion in the errors working group about how to avoid leaking internal dependency error types through error source downcasting. One option is to create an opaque error wrapping new-type that removes the ability to downcast to the other library's error. This, however, can be circumvented via unsafe code, and also breaks the ability for error reporters to properly display the error (for example, if the error has backtrace information, that would be inaccessible to the reporter). This situation might improve if the nightly request_value/request_ref/provide functions on std::error::Error are stabilized, since then contextual information needed for including things such as a backtrace could still be retrieved through the opaque error new-type. This RFC proposes that error types from other libraries not be directly exposed in the API, but rather, be exposed indirectly through Error::source as &dyn Error + 'static. Errors should not require downcasting to be useful. Downcasting the error's source should be a last resort, and with the understanding that the type could change at a later date with no compile-time guarantees.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Opaque Error Sources","id":"295","title":"Opaque Error Sources"},"296":{"body":"Taking a customer's perspective, there are two broad categories of errors: Actionable: Errors that can/should influence program flow; where it's useful to do different work based on additional error context or error variant information Informative: Errors that inform that something went wrong, but where it's not useful to match on the error to change program flow This RFC proposes that a consistent pattern be introduced to cover these two use cases for all errors in the public API for the Rust runtime crates and generated client crates.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Proposal","id":"296","title":"Error Proposal"},"297":{"body":"Actionable errors are represented as enums. If an error variant has an error source or additional contextual information, it must use a separate context struct that is referenced via tuple in the enum. For example: // Good: new error types can be added in the future\n#[non_exhaustive]\npub enum Error { // Good: This is exhaustive and uses a tuple, but its sole member is an extensible struct with private fields VariantA(VariantA), // Bad: The fields are directly exposed and can't have accessor methods. The error // source type also can't be changed at a later date since. #[non_exhaustive] VariantB { some_additional_info: u32, source: AnotherError // AnotherError is from this crate }, // Bad: There's no way to add additional contextual information to this error in the future, even // though it is non-exhaustive. Changing it to a tuple or struct later leads to compile errors in existing // match statements. #[non_exhaustive] VariantC, // Bad: Not extensible if additional context is added later (unless that context can be added to `AnotherError`) #[non_exhaustive] VariantD(AnotherError), // Bad: Not extensible. If new context is added later (for example, a second endpoint), there's no way to name it. #[non_exhaustive] VariantE(Endpoint, AnotherError), // Bad: Exposes another library's error type in the public API, // which makes upgrading or replacing that library a breaking change #[non_exhaustive] VariantF { source: http::uri::InvalidUri }, // Bad: The error source type is public, and even though its a boxed error, it won't // be possible to change it to an opaque error type later (for example, if/when // opaque errors become practical due to standard library stabilizations). #[non_exhaustive] VariantG { source: Box, }\n} pub struct VariantA { some_field: u32, // This is private, so it's fine to reference the external library's error type source: http::uri::InvalidUri\n} impl VariantA { fn some_field(&self) -> u32 { self.some_field }\n} Error variants that contain a source must return it from the Error::source method. The source implementation should not use the catch all (_) match arm, as this makes it easy to miss adding a new error variant's source at a later date. The error Display implementation must not include the source in its output: // Good\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), Self::VariantB { some_additional_info, .. } => write!(f, \"variant b ({some_additional_info})\"), // ... and so on } }\n} // Bad\nimpl fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { match self { Self::VariantA => write!(f, \"variant a\"), // Bad: includes the source in the `Display` output, which leads to duplicate error information Self::VariantB { some_additional_info, source } => write!(f, \"variant b ({some_additional_info}): {source}\"), // ... and so on } }\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Actionable error pattern","id":"297","title":"Actionable error pattern"},"298":{"body":"Informative errors must be represented as structs. If error messaging changes based on an underlying cause, then a private error kind enum can be used internally for this purpose. For example: #[derive(Debug)]\npub struct InformativeError { some_additional_info: u32, source: AnotherError,\n} impl fmt::Display for InformativeError { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write!(f, \"some informative message with {}\", self.some_additional_info) }\n} impl Error for InformativeError { fn source(&self) -> Option<&(dyn Error + 'static)> { Some(&self.source) }\n} In general, informative errors should be referenced by variants in actionable errors since they cannot be converted to actionable errors at a later date without a breaking change. This is not a hard rule, however. Use your best judgement for the situation.","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Informative error pattern","id":"298","title":"Informative error pattern"},"299":{"body":"In code where errors are logged rather than returned to the customer, the full error source chain must be displayed. This will be made easy by placing a DisplayErrorContext struct in aws-smithy-types that is used as a wrapper to get the better error formatting: tracing::warn!(err = %DisplayErrorContext(err), \"some message\"); This might be implemented as follows: #[derive(Debug)]\npub struct DisplayErrorContext(pub E); impl fmt::Display for DisplayErrorContext { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { write_err(f, &self.0)?; // Also add a debug version of the error at the end write!(f, \" ({:?})\", self) }\n} fn write_err(f: &mut fmt::Formatter<'_>, err: &dyn Error) -> fmt::Result { write!(f, \"{}\", err)?; if let Some(source) = err.source() { write!(f, \": \")?; write_err(f, source)?; } Ok(())\n}","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Displaying full error context","id":"299","title":"Displaying full error context"},"3":{"body":"The Rust SDK is built on Tower Middleware, Tokio & Hyper. We're continuing to iterate on the internals to enable running the AWS SDK in other executors & HTTP stacks. As an example, you can see a demo of adding reqwest as a custom HTTP stack to gain access to its HTTP Proxy support! For more details about the SDK internals see Operation Design","breadcrumbs":"Design Overview » Internals","id":"3","title":"Internals"},"30":{"body":"chrono is the current de facto library for datetime in Rust, but it is pre-1.0. DateTimes are represented by an SDK defined structure modeled on std::time::Duration from the Rust standard library. /// DateTime in time.\n///\n/// DateTime in time represented as seconds and sub-second nanos since\n/// the Unix epoch (January 1, 1970 at midnight UTC/GMT).\n///\n/// This type can be converted to/from the standard library's [`SystemTime`](std::time::SystemTime):\n/// ```rust\n/// # fn doc_fn() -> Result<(), aws_smithy_types::date_time::ConversionError> {\n/// # use aws_smithy_types::date_time::DateTime;\n/// # use std::time::SystemTime;\n/// use std::convert::TryFrom;\n///\n/// let the_millennium_as_system_time = SystemTime::try_from(DateTime::from_secs(946_713_600))?;\n/// let now_as_date_time = DateTime::from(SystemTime::now());\n/// # Ok(())\n/// # }\n/// ```\n///\n/// The [`aws-smithy-types-convert`](https://crates.io/crates/aws-smithy-types-convert) crate\n/// can be used for conversions to/from other libraries, such as\n/// [`time`](https://crates.io/crates/time) or [`chrono`](https://crates.io/crates/chrono).\n#[derive(Debug, PartialEq, Eq, Hash, Clone, Copy)]\npub struct DateTime { pub(crate) seconds: i64, /// Subsecond nanos always advances the wallclock time, even for times where seconds is negative /// /// Bigger subsecond nanos => later time pub(crate) subsecond_nanos: u32,\n} Functions in the aws-smithy-types-convert crate provide conversions to other crates, such as time or chrono.","breadcrumbs":"Smithy » Simple Shapes » Timestamps","id":"30","title":"Timestamps"},"300":{"body":"Update every struct/enum that implements Error in all the non-server Rust runtime crates Hide error source type in Unhandled variant in code generated errors Remove Clone from ProfileParseError and any others that have it","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Changes Checklist","id":"300","title":"Changes Checklist"},"301":{"body":"This is a checklist meant to aid code review of new errors: The error fits either the actionable or informative pattern If the error is informative, it's clear that it will never be expanded with additional variants in the future The Display impl does not write the error source to the formatter The catch all _ match arm is not used in the Display or Error::source implementations Error types from external libraries are not exposed in the public API Error enums are #[non_exhaustive] Error enum variants that don't have a separate error context struct are #[non_exhaustive] Error context is exposed via accessors rather than by public fields Actionable errors and their context structs are in an error submodule for any given module. They are not mixed with other non-error code","breadcrumbs":"RFCs » RFC-0022: Error Context and Compatibility » Error Code Review Checklist","id":"301","title":"Error Code Review Checklist"},"302":{"body":"Status: Accepted Applies to: Server RFC 20 introduced a new service builder API. It supports fine-grained configuration at multiple levels (per-handler middlewares, router middlewares, plugins) while trying to prevent some misconfiguration issues at compile-time (i.e. missing operation handlers). There is consensus that the new API is an improvement over the pre-existing OperationRegistryBuilder/OperationRegistry, which is now on its way to deprecation in one of the next releases. This RFC builds on top of RFC 20 to explore an alternative API design prior to its stabilisation. The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » RFC: Evolving the new service builder API","id":"302","title":"RFC: Evolving the new service builder API"},"303":{"body":"Type-heavy builders can lead to a poor developer experience when it comes to writing function signatures, conditional branches and clarity of error messages. This RFC provides examples for the issues we are trying to mitigate and showcases an alternative design for the service builder, cutting generic parameters from 2*(N+1) to 2, where N is the number of operations on the service. We rely on eagerly upgrading the registered handlers and operations to Route to achieve this reduction. Goals: Maximise API ergonomics, with a particular focus on the developer experience for Rust beginners. Strategy: Reduce type complexity, exposing a less generic API; Provide clearer errors when the service builder is misconfigured. Trade-offs: Reduce compile-time safety. Missing handlers will be detected at runtime instead of compile-time. Constraints: There should be no significant degradation in runtime performance (i.e. startup time for applications).","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Overview","id":"303","title":"Overview"},"304":{"body":"Let's start by reviewing the API proposed in RFC 20 . We will use the Pokemon service as our driving example throughout the RFC. This is what the startup code looks like: #[tokio::main]\npub async fn main() { // [...] let app = PokemonService::builder() .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .check_health(check_health) .build(); // Setup shared state and middlewares. let shared_state = Arc::new(State::default()); let app = app.layer(&AddExtensionLayer::new(shared_state)); // Start the [`hyper::Server`]. let bind: SocketAddr = /* */; let server = hyper::Server::bind(&bind).serve(app.into_make_service()); // [...]\n} The builder is infallible: we are able to verify at compile-time that all handlers have been provided using the typestate builder pattern .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Handling missing operations","id":"304","title":"Handling missing operations"},"305":{"body":"What happens if we stray away from the happy path? We might forget, for example, to add the check_health handler. The compiler greets us with this error: error[E0277]: the trait bound `MissingOperation: Upgradable` is not satisfied --> pokemon-service/src/bin/pokemon-service.rs:38:10 |\n38 | .build(); | ^^^^^ the trait `Upgradable` is not implemented for `MissingOperation` | = help: the following other types implement trait `Upgradable`: FailOnMissingOperation Operation The compiler complains that MissingOperation does not implement the Upgradable trait. Neither MissingOperation nor Upgradable appear in the startup code we looked at. This is likely to be the first time the developer sees those traits, assuming they haven't spent time getting familiar with aws-smithy-http-server's internals. The help section is unhelpful, if not actively misdirecting. How can the developer figure out that the issue lies with check_health? They need to inspect the generic parameters attached to Upgradable in the code label or the top-level error message - we see, among other things, a CheckHealth parameter. That is the hint they need to follow to move forward. We unfortunately do not have agency on the compiler error we just examined. Rust does not expose hooks for crate authors to tweak the errors returned when a type does not implement a trait we defined. All implementations of the typestate builder pattern accept this shortcoming in exchange for compile-time safety. Is it a good tradeoff in our case?","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Compiler errors cannot be tuned","id":"305","title":"Compiler errors cannot be tuned"},"306":{"body":"If build returns an error, the HTTP server is never launched. The application fails to start. Let's examine the cost of this runtime error along two dimensions: Impact on developer productivity; Impact on end users. We'd love for this issue to be caught on the developer machine - it provides the shortest feedback loop. The issue won't be surfaced by a cargo check or cargo build invocation, as it happens with the typestate builder approach. It should be surfaced by executing the application test suite, assuming that the developer has written at least a single integration test - e.g. a test that passes a request to the call method exposed by PokemonService or launches a full-blown instance of the application which is then probed via an HTTP client. If there are no integration tests, the issue won't be detected on the developer machine nor in CI. Nonetheless, it is unlikely to cause any end-user impact even if it manages to escape detection and reach production. The deployment will never complete if they are using a progressive rollout strategy: instances of the new version will crash as soon as they are launched, never getting a chance to mark themselves as healthy; all traffic will keep being handled by the old version, with no visible impact on end users of the application. Given the above, we think that the impact of a runtime error is low enough to be worth exploring designs that do not guarantee compile-safety for the builder API [1] .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » The cost of a runtime error","id":"306","title":"The cost of a runtime error"},"307":{"body":"Moving from a compile-time error to a runtime error does not require extensive refactoring. The definition of PokemonServiceBuilder goes from: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Op1, do_nothing: Op2, get_pokemon_species: Op3, get_server_statistics: Op4, capture_pokemon: Op5, get_storage: Op6, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} to: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} All operation fields are now Option-wrapped. We introduce a new MissingOperationsError error to hold the names of the missing operations and their respective setter methods: #[derive(Debug)]\npub struct MissingOperationsError { service_name: &'static str, operation_names2setter_methods: HashMap<&'static str, &'static str>,\n} impl Display for MissingOperationsError { /* */ }\nimpl std::error::Error for MissingOperationsError {} which is then used in build as error type (not shown here for brevity) . We can now try again to stray away from the happy path by forgetting to register a handler for the CheckHealth operation. The code compiles just fine this time, but the application fails when launched via cargo run: ERROR pokemon_service: You must specify a handler for all operations attached to the `Pokemon` service.\nWe are missing handlers for the following operations:\n- com.aws.example#CheckHealth Use the dedicated methods on `PokemonServiceBuilder` to register the missing handlers:\n- PokemonServiceBuilder::check_health The error speaks the language of the domain, Smithy's interface definition language: it mentions operations, services, handlers. Understanding the error requires no familiarity with smithy-rs' internal type machinery or advanced trait patterns in Rust. We can also provide actionable suggestions: Rust beginners should be able to easily process the information, rectify the mistake and move on quickly.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Providing clear feedback","id":"307","title":"Providing clear feedback"},"308":{"body":"Let's take a second look at the (updated) definition of PokemonServiceBuilder: pub struct PokemonServiceBuilder< Op1, Op2, Op3, Op4, Op5, Op6, Exts1 = (), Exts2 = (), Exts3 = (), Exts4 = (), Exts5 = (), Exts6 = (), Pl = aws_smithy_http_server::plugin::IdentityPlugin,\n> { check_health: Option, do_nothing: Option, get_pokemon_species: Option, get_server_statistics: Option, capture_pokemon: Option, get_storage: Option, #[allow(unused_parens)] _exts: std::marker::PhantomData<(Exts1, Exts2, Exts3, Exts4, Exts5, Exts6)>, plugin: Pl,\n} We have 13 generic parameters: 1 for plugins (Pl); 2 for each operation (OpX and ExtsX); All those generic parameters were necessary when we were using the typestate builder pattern . They kept track of which operation handlers were missing: if any OpX was set to MissingOperation when calling build -> compilation error! Do we still need all those generic parameters if we move forward with this RFC? You might be asking yourselves: why do those generics bother us? Is there any harm in keeping them around? We'll look at the impact of those generic parameters on two scenarios: Branching in startup logic; Breaking down a monolithic startup function into multiple smaller functions.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Simplifying PokemonServiceBuilder's signature","id":"308","title":"Simplifying PokemonServiceBuilder's signature"},"309":{"body":"Conditional statements appear quite often in the startup logic for an application (or in the setup code for its integration tests). Let's consider a toy example: if a check_database flag is set to true, we want to register a different check_health handler - one that takes care of pinging the database to make sure it's up. The \"obvious\" solution would look somewhat like this: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\napp.build(); The compiler is not pleased: error[E0308]: `if` and `else` have incompatible types --> pokemon-service/src/bin/pokemon-service.rs:39:9 |\n36 | let app = if check_database { | _______________-\n37 | | app.check_health(check_health) | | ------------------------------ expected because of this\n38 | | } else {\n39 | | app.check_health(check_health_with_database) | | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected fn item, found a different fn item\n40 | | }; | |_____- `if` and `else` have incompatible types | = note: expected struct `PokemonServiceBuilder impl Future {check_health}>>, _, _, _, _, _, _, _, _, _, _, _>` found struct `PokemonServiceBuilder impl Future {check_health_with_database}>>, _, _, _, _, _, _, _, _, _, _, _>` The developer must be aware of the following facts to unpack the error message: The two branches of an if/else statement need to return the same type. Each function closure has a new unique type (represented as fn(CheckHealthInput) -> impl Future {check_health} for check_health); The handler function type becomes part of the overall PokemonServiceBuilder type, a cog in the larger Op1 generic parameter used to hold the handler for the CheckHealth operation (i.e. Operation impl Future {check_health}>>); The second fact requires an intermediate understanding of Rust's closures and opaque types (impl Trait). It's quite likely to confuse Rust beginners. The developer has three options to move forward: Convert check_health and check_health_with_database into a common type that can be passed as a handler to PokemonServiceBuilder::check_health; Invoke the build method inside the two branches in order to return a \"plain\" PokemonService> from both branches. Embed the configuration parameter (check_database) in the application state, retrieve it inside check_health and perform the branching there. I can't easily see a way to accomplish 1) using the current API. Pursuing 2) is straight-forward with a single conditional: let check_database: bool = /* */;\nlet app = if check_database { app.check_health(check_health).build()\n} else { app.check_health(check_health_with_database).build()\n}; It becomes more cumbersome when we have more than a single conditional: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nmatch (check_database, include_cpu_statics) { (true, true) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics_with_cpu) .build(), (true, false) => app .check_health(check_health_with_database) .get_server_statistics(get_server_statistics) .build(), (false, true) => app .check_health(check_health) .get_server_statistics(get_server_statistics_with_cpu()) .build(), (false, false) => app .check_health(check_health) .get_server_statistics(get_server_statistics) .build(),\n} A lot of repetition compared to the code for the \"obvious\" approach: let check_database: bool = /* */;\nlet include_cpu_statics: bool = /* */;\nlet app = if check_database { app.check_health(check_health)\n} else { app.check_health(check_health_with_database)\n};\nlet app = if include_cpu_statistics { app.get_server_statistics(get_server_statistics_with_cpu)\n} else { app.get_server_statistics(get_server_statistics)\n};\napp.build(); The obvious approach becomes viable if we stop embedding the handler function type in PokemonServiceBuilder's overall type.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Branching -> \"Incompatible types\"","id":"309","title":"Branching -> \"Incompatible types\""},"31":{"body":"Rust has two different String representations: String, an owned, heap allocated string. &str, a reference to a string, owned elsewhere. In ideal world, input shapes, where there is no reason for the strings to be owned would use &'a str. Outputs would likely use String. However, Smithy does not provide a distinction between input and output shapes. A third compromise could be storing Arc, an atomic reference counted pointer to a String. This may be ideal for certain advanced users, but is likely to confuse most users and produces worse ergonomics. This is an open design area where we will seek user feedback. Rusoto uses String and there has been one feature request to date to change that. Current models represent strings as String.","breadcrumbs":"Smithy » Simple Shapes » Strings","id":"31","title":"Strings"},"310":{"body":"Services with a high number of routes can lead to fairly long startup routines. Developers might be tempted to break down the startup routine into smaller functions, grouping together operations with common requirements (similar domain, same middlewares, etc.). What does the signature of those smaller functions look like? The service builder must be one of the arguments if we want to register handlers. We must also return it to allow the orchestrating function to finish the application setup (our setters take ownership of self). A first sketch: fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { /* */\n} The compiler demands to see those generic parameters in the signature: error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:27 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` error[E0107]: missing generics for struct `PokemonServiceBuilder` --> pokemon-service/src/bin/pokemon-service.rs:28:53 |\n28 | fn partial_setup(builder: PokemonServiceBuilder) -> PokemonServiceBuilder { | ^^^^^^^^^^^^^^^^^^^^^ expected at least 6 generic arguments |\nnote: struct defined here, with at least 6 generic parameters: `Op1`, `Op2`, `Op3`, `Op4`, `Op5`, `Op6` We could try to nudge the compiler into inferring them: fn partial_setup( builder: PokemonServiceBuilder<_, _, _, _, _, _>,\n) -> PokemonServiceBuilder<_, _, _, _, _, _> { /* */\n} but that won't fly either: error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types --> pokemon-service/src/bin/pokemon-service.rs:30:28 |\n30 | ) -> PokemonServiceBuilder<_, _, _, _, _, _> { | ^ ^ ^ ^ ^ ^ not allowed in type signatures | | | | | | | | | | | not allowed in type signatures | | | | not allowed in type signatures | | | not allowed in type signatures | | not allowed in type signatures | not allowed in type signatures We must type it all out: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} That compiles, at last. Let's try to register an operation handler now: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder.get_server_statistics(get_server_statistics)\n} That looks innocent, but it doesn't fly: error[E0308]: mismatched types --> pokemon-service/src/bin/pokemon-service.rs:31:5 |\n28 | fn partial_setup( | --- this type parameter\n29 | builder: PokemonServiceBuilder,\n30 | ) -> PokemonServiceBuilder { | --------------------------------------------------- expected `PokemonServiceBuilder` because of return type\n31 | builder.get_server_statistics(get_server_statistics) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected type parameter `Op4`, found struct `Operation` | = note: expected struct `PokemonServiceBuilder<_, _, _, Op4, _, _, _>` found struct `PokemonServiceBuilder<_, _, _, Operation>) -> impl Future {get_server_statistics}>>, _, _, _> By registering a handler we have changed the corresponding OpX generic parameter. Fixing this error requires some non-trivial type gymnastic - I gave up after trying for ~15 minutes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Refactoring into smaller functions -> Prepare for some type juggling!","id":"310","title":"Refactoring into smaller functions -> Prepare for some type juggling!"},"311":{"body":"The previous two examples should have convinced you that the 2N+1 generic parameters on PokemonServiceBuilder harm the ergonomics of our API. Can we get rid of them? Yes! Let's look at one possible approach: pub struct PokemonServiceBuilder { check_health: Option>, do_nothing: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, capture_pokemon: Option>, get_storage: Option>, plugin: Plugin,\n} We no longer store the raw handlers inside PokemonServiceBuilder. We eagerly upgrade the operation handlers to a Route instance when they are registered with the builder. impl PokemonServiceBuilder { pub fn get_pokemon_species(mut self, handler: Handler) -> Self /* Complex trait bounds */ { let route = Route::new(Operation::from_handler(handler).upgrade(&self.plugin)); self.get_pokemon_species = Some(route); self } /* other setters and methods */\n} The existing API performs the upgrade when build is called, forcing PokemonServiceBuilder to store the raw handlers and keep two generic parameters around (OpX and ExtsX) for each operation. The proposed API requires plugins to be specified upfront, when creating an instance of the builder. They cannot be modified after a PokemonServiceBuilder instance has been built: impl PokemonService<()> { /// Constructs a builder for [`PokemonService`]. pub fn builder(plugin: Plugin) -> PokemonServiceBuilder { PokemonServiceBuilder { check_health: None, do_nothing: None, get_pokemon_species: None, get_server_statistics: None, capture_pokemon: None, get_storage: None, plugin, } }\n} This constraint guarantees that all operation handlers are upgraded to a Route using the same set of plugins. Having to specify all plugins upfront is unlikely to have a negative impact on developers currently using smithy-rs. We have seen how cumbersome it is to break the startup logic into different functions using the current service builder API. Developers are most likely specifying all plugins and routes in the same function even if the current API allows them to intersperse route registrations and plugin registrations: they would simply have to re-order their registration statements to adopt the API proposed in this RFC.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Cut them down: going from 2N+1 to 2 generic parameters","id":"311","title":"Cut them down: going from 2N+1 to 2 generic parameters"},"312":{"body":"The new design prohibits the following invocation style: let plugin = ColorPlugin::new();\nPokemonService::builder(plugin) // [...] .get_pokemon_species(get_pokemon_species) // Add PrintPlugin .print() .get_storage(get_storage) .build() We could choose to remove this limitation and allow handlers to be upgraded using a different set of plugins depending on where they were registered. In the snippet above, for example, we would have: get_pokemon_species is upgraded using just the ColorPlugin; get_storage is upgraded using both the ColorPlugin and the PrintPlugin. There are no technical obstacles preventing us from implementing this API, but I believe it could easily lead to confusion and runtime surprises due to a mismatch between what the developer might expect PrintPlugin to apply to (all handlers) and what it actually applies to (handlers registered after .print()). We can provide developers with other mechanisms to register plugins for a single operation or a subset of operations without introducing ambiguity. For attaching additional plugins to a single operation, we could introduce a blanket Pluggable implementation for all operations in aws-smithy-http-server: impl Pluggable for Operation where Pl: Plugin { type Output = Operation; fn apply(self, new_plugin: Pl) -> Self::Output { new_plugin.map(self) }\n} which would allow developers to invoke op.apply(MyPlugin) or call extensions methods such as op.print() where op is an Operation. For attaching additional plugins to a subgroup of operations, instead, we could introduce nested builders: let initial_plugins = ColorPlugin;\nlet mut builder = PokemonService::builder(initial_plugins) .get_pokemon_species(get_pokemon_species);\nlet additional_plugins = PrintPlugin;\n// PrintPlugin will be applied to all handlers registered on the scoped builder returned by `scope`.\nlet nested_builder = builder.scoped(additional_plugins) .get_storage(get_storage) .capture_pokemon(capture_pokemon) // Register all the routes on the scoped builder with the parent builder. // API names are definitely provisional and bikesheddable. .attach(builder);\nlet app = builder.build(); Both proposals are outside the scope of this RFC, but they are shown here for illustrative purposes.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: allow new plugins to be registered after builder creation","id":"312","title":"Alternatives: allow new plugins to be registered after builder creation"},"313":{"body":"A lot of our issues stem from type mismatch errors: we are encoding the type of our handlers into the overall type of the service builder and, as a consequence, we end up modifying that type every time we set a handler or modify its state. Type erasure is a common approach for mitigating these issues - reduce those generic parameters to a common type to avoid the mismatch errors. This whole RFC can be seen as a type erasure proposal - done eagerly, as soon as the handler is registered, using Option> as our \"common type\" after erasure. We could try to strike a different balance - i.e. avoid performing type erasure eagerly, but allow developers to erase types on demand. Based on my analysis, this could happen in two ways: We cast handlers into a Box> to which we can later apply plugins (lazy type erasure); We upgrade registered handlers to Route and apply plugins in the process (eager type erasure on-demand). Let's ignore these implementation issues for the time being to focus on what the ergonomics would look like assuming we can actually perform type erasure. In practice, we are going to assume that: In approach 1), we can call .boxed() on a registered operation and get a Box back; In approach 2), we can call .erase() on the entire service builder and convert all registered operations to Route while keeping the MissingOperation entries as they are. After erase has been called, you can no longer register plugins (or, alternatively, the plugins you register will only apply new handlers). We are going to explore both approaches under the assumption that we want to preserve compile-time verification for missing handlers. If we are willing to abandon compile-time verification, we get better ergonomics since all OpX and ExtsX generic parameters can be erased (i.e. we no longer need to worry about MissingOperation). On Box> This is the current definition of the Upgradable trait: /// Provides an interface to convert a representation of an operation to a HTTP [`Service`](tower::Service) with\n/// canonical associated types.\npub trait Upgradable { type Service: Service, Response = http::Response>; /// Performs an upgrade from a representation of an operation to a HTTP [`Service`](tower::Service). fn upgrade(self, plugin: &Plugin) -> Self::Service;\n} In order to perform type erasure, we need to determine: what type parameters we are going to pass as generic arguments to Upgradable; what type we are going to use for the associated type Service. We have: there is a single known protocol for a service, therefore we can set Protocol to its concrete type (e.g. AwsRestJson1); each handler refers to a different operation, therefore we cannot erase the Operation and the Exts parameters; both Body and Plugin appear as generic parameters on the service builder itself, therefore we can set them to the same type; we can use Route to normalize the Service associated type. The above leaves us with two unconstrained type parameters, Operation and Exts, for each operation. Those unconstrained type parameters leak into the type signature of the service builder itself. We therefore find ourselves having, again, 2N+2 type parameters. Branching Going back to the branching example: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health(check_health)\n} else { builder.check_health(check_health_with_database)\n};\nlet app = builder.build(); In approach 1), we could leverage the .boxed() method to convert the actual OpX type into a Box, thus ensuring that both branches return the same type: let check_database: bool = /* */;\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder.check_health_operation(Operation::from_handler(check_health_with_database).boxed())\n};\nlet app = builder.build(); The same cannot be done when conditionally registering a route, because on the else branch we cannot convert MissingOperation into a Box since MissingOperation doesn't implement Upgradable - the pillar on which we built all our compile-time safety story. // This won't compile!\nlet builder = if check_database { builder.check_health_operation(Operation::from_handler(check_health).boxed())\n} else { builder\n}; In approach 2), we can erase the whole builder in both branches when they both register a route: let check_database: bool = /* */;\nlet boxed_builder = if check_database { builder.check_health(check_health).erase()\n} else { builder.check_health(check_health_with_database).erase()\n};\nlet app = boxed_builder.build(); but, like in approach 1), we will still get a type mismatch error if one of the two branches leaves the route unset. Refactoring into smaller functions Developers would still have to spell out all generic parameters when writing a function that takes in a builder as a parameter: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder { builder\n} Writing the signature after having modified the builder becomes easier though. In approach 1), they can explicitly change the touched operation parameters to the boxed variant: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder< Op1, Op2, Op3, Box>, Op5, Op6, Body, Plugin, Body, Plugin, Exts4=Exts > { builder.get_server_statistics(get_server_statistics)\n} It becomes trickier in approach 2), since to retain compile-time safety on the builder we expect erase to map MissingOperation into MissingOperation. Therefore, we can't write something like this: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder, Route, Route, Route, Route, Route> { builder.get_server_statistics(get_server_statistics).()\n} The compiler would reject it since it can't guarantee that all other operations can be erased to a Route. This is likely to require something along the lines of: fn partial_setup( builder: PokemonServiceBuilder,\n) -> PokemonServiceBuilder<::Erased, ::Erased, ::Erased, ::Erased, ::Erased, ::Erased>\nwhere // Omitting a bunch of likely needed additional generic parameters and bounds here Op1: TypeErase, Op2: TypeErase, Op3: TypeErase, Op4: TypeErase, Op5: TypeErase, Op6: TypeErase,\n{ builder.get_server_statistics(get_server_statistics).()\n} Summary Both approaches force us to have a number of generic parameters that scales linearly with the number of operations on the service, affecting the ergonomics of the resulting API in both the branching and the refactoring scenarios. We believe that the ergonomics advantages of the proposal advanced by this RFC outweigh the limitation of having to specify your plugins upfront, when creating the builder instance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Alternatives: lazy and eager-on-demand type erasure","id":"313","title":"Alternatives: lazy and eager-on-demand type erasure"},"314":{"body":"The Pluggable trait was an interesting development out of RFC 20 : it allows you to attach methods to a service builder using an extension trait. /// An extension to service builders to add the `print()` function.\npub trait PrintExt: aws_smithy_http_server::plugin::Pluggable { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> Self::Output where Self: Sized, { self.apply(PrintPlugin) }\n} This pattern needs to be revisited if we want to move forward with this RFC, since new plugins cannot be registered after the builder has been instantiated. My recommendation would be to implement Pluggable for PluginStack, providing the same pattern ahead of the creation of the builder: // Currently you'd have to go for `PluginStack::new(IdentityPlugin, IdentityPlugin)`,\n// but that can be smoothed out even if this RFC isn't approved.\nlet plugin_stack = PluginStack::default() // Use the extension method .print();\nlet app = PokemonService::builder(plugin_stack) .get_pokemon_species(get_pokemon_species) .get_storage(get_storage) .get_server_statistics(get_server_statistics) .capture_pokemon(capture_pokemon) .do_nothing(do_nothing) .build()?;","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Builder extensions: what now?","id":"314","title":"Builder extensions: what now?"},"315":{"body":"The API proposed in this RFC has been manually implemented for the Pokemon service. You can find the code here .","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Playing around with the design","id":"315","title":"Playing around with the design"},"316":{"body":"Update codegen-server to generate the proposed service builder API https://github.com/smithy-lang/smithy-rs/pull/1954 Implement Pluggable for PluginStack https://github.com/smithy-lang/smithy-rs/pull/1954 Evaluate the introduction of a PluginBuilder as the primary API to compose multiple plugins (instead of PluginStack::new(IdentityPlugin, IdentityPlugin).apply(...)) https://github.com/smithy-lang/smithy-rs/pull/1971 The impact of a runtime error on developer productivity can be further minimised by encouraging adoption of integration testing; this can be achieved, among other options, by authoring guides that highlight its benefits and provide implementation guidance.","breadcrumbs":"RFCs » RFC-0023: Evolving the new service builder API » Changes checklist","id":"316","title":"Changes checklist"},"317":{"body":"Status: Implemented Applies to: server For a summarized list of proposed changes, see the Changes Checklist section.","breadcrumbs":"RFCs » RFC-0024: RequestID » RFC: RequestID in business logic handlers","id":"317","title":"RFC: RequestID in business logic handlers"},"318":{"body":"RequestID : a service-wide request's unique identifier UUID : a universally unique identifier RequestID is an element that uniquely identifies a client request. RequestID is used by services to map all logs, events and specific data to a single operation. This RFC discusses whether and how smithy-rs can make that value available to customers. Services use a RequestID to collect logs related to the same request and see its flow through the various operations, help clients debug requests by sharing this value and, in some cases, use this value to perform their business logic. RequestID is unique across a service at least within a certain timeframe. This value for the purposes above must be set by the service. Having the client send the value brings the following challenges: The client could repeatedly send the same RequestID The client could send no RequestID The client could send a malformed or malicious RequestID (like in 1 and 2 ). To minimise the attack surface and provide a uniform experience to customers, servers should generate the value. However, services should be free to read the ID sent by clients in HTTP headers: it is common for services to read the request ID a client sends, record it and send it back upon success. A client may want to send the same value to multiple services. Services should still decide to have their own unique request ID per actual call. RequestIDs are not to be used by multiple services, but only within a single service.","breadcrumbs":"RFCs » RFC-0024: RequestID » Terminology","id":"318","title":"Terminology"},"319":{"body":"The proposal is to implement a RequestId type and make it available to middleware and business logic handlers, through FromParts and as a Service. To aid customers already relying on clients' request IDs, there will be two types: ClientRequestId and ServerRequestId. Implementing FromParts for Extension gives customers the ability to write their handlers: pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... pub async fn handler( input: input::Input, request_id: Extension,\n) -> ... ServerRequestId and ClientRequestId will be injected into the extensions by a layer. This layer can also be used to open a span that will log the request ID: subsequent logs will be in the scope of that span. ServerRequestId format: Common formats for RequestIDs are: UUID: a random string, represented in hex, of 128 bits from IETF RFC 4122: 7c038a43-e499-4162-8e70-2d4d38595930 The hash of a sequence such as date+thread+server: 734678902ea938783a7200d7b2c0b487 A verbose description: current_ms+hostname+increasing_id For privacy reasons, any format that provides service details should be avoided. A random string is preferred. The proposed format is to use UUID, version 4. A Service that inserts a RequestId in the extensions will be implemented as follows: impl Service> for ServerRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { req.extensions_mut().insert(ServerRequestId::new()); self.inner.call(req) }\n} For client request IDs, the process will be, in order: If a header is found matching one of the possible ones, use it Otherwise, None Option is used to distinguish whether a client had provided an ID or not. impl Service> for ClientRequestIdProvider\nwhere S: Service>,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, mut req: http::Request) -> Self::Future { for possible_header in self.possible_headers { if let Some(id) = req.headers.get(possible_header) { req.extensions_mut().insert(Some(ClientRequestId::new(id))); return self.inner.call(req) } } req.extensions_mut().insert(None); self.inner.call(req) }\n} The string representation of a generated ID will be valid for this regex: For ServerRequestId: /^[A-Za-z0-9_-]{,48}$/ For ClientRequestId: see the spec Although the generated ID is opaque, this will give guarantees to customers as to what they can expect, if the server ID is ever updated to a different format.","breadcrumbs":"RFCs » RFC-0024: RequestID » The user experience if this RFC is implemented","id":"319","title":"The user experience if this RFC is implemented"},"32":{"body":"Smithy defines the concept of \"Document Types\": [Documents represent] protocol-agnostic open content that is accessed like JSON data. Open content is useful for modeling unstructured data that has no schema, data that can't be modeled using rigid types, or data that has a schema that evolves outside of the purview of a model. The serialization format of a document is an implementation detail of a protocol and MUST NOT have any effect on the types exposed by tooling to represent a document value. Individual protocols define their own document serialization behavior, with some protocols such as AWS and EC2 Query not supporting document types.","breadcrumbs":"Smithy » Simple Shapes » Document Types","id":"32","title":"Document Types"},"320":{"body":"Implement ServerRequestId: a new() function that generates a UUID, with Display, Debug and ToStr implementations Implement ClientRequestId: new() that wraps a string (the header value) and the header in which the value could be found, with Display, Debug and ToStr implementations Implement FromParts for Extension Implement FromParts for Extension","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes checklist","id":"320","title":"Changes checklist"},"321":{"body":"This RFC has been changed to only implement ServerRequestId.","breadcrumbs":"RFCs » RFC-0024: RequestID » Changes since the RFC has been approved","id":"321","title":"Changes since the RFC has been approved"},"322":{"body":"Status: Implemented. See the description of the PR that laid the foundation for the implementation of constraint traits for a complete reference. See the Better Constraint Violations RFC too for subsequent improvements to this design. See the uber tracking issue for pending work. Constraint traits are used to constrain the values that can be provided for a shape. For example, given the following Smithy model, @length(min: 18)\nInteger Age the integer Age must take values greater than or equal to 18. Constraint traits are most useful when enforced as part of input model validation to a service. When a server receives a request whose contents deserialize to input data that violates the modeled constraints, the operation execution's preconditions are not met, and as such rejecting the request without executing the operation is expected behavior. Constraint traits can also be applied to operation output member shapes, but the expectation is that service implementations not fail to render a response when an output value does not meet the specified constraints. From awslabs/smithy#1039 : This might seem counterintuitive, but our philosophy is that a change in server-side state should not be hidden from the caller unless absolutely necessary. Refusing to service an invalid request should always prevent server-side state changes, but refusing to send a response will not, as there's generally no reasonable route for a server implementation to unwind state changes due to a response serialization failure. In general , clients should not enforce constraint traits in generated code. Clients must also never enforce constraint traits when sending requests. This is because: addition and removal of constraint traits are backwards-compatible from a client's perspective (although this is not documented anywhere in the Smithy specification), the client may have been generated with an older version of the model; and the most recent model version might have lifted some constraints. On the other hand, server SDKs constitute the source of truth for the service's behavior, so they interpret the model in all its strictness. The Smithy spec defines 8 constraint traits: enum , idRef , length , pattern , private , range , required ; and uniqueItems . The idRef and private traits are enforced at SDK generation time by the awslabs/smithy libraries and bear no relation to generated Rust code. The only constraint trait enforcement that is generated by smithy-rs clients should be and is the enum trait, which renders Rust enums. The required trait is already and only enforced by smithy-rs servers since #1148 . That leaves 4 traits: length, pattern, range, and uniqueItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » RFC: Constraint traits","id":"322","title":"RFC: Constraint traits"},"323":{"body":"This section addresses how to implement and enforce the length, pattern, range, and uniqueItems traits. We will use the length trait applied to a string shape as a running example. The implementation of this trait mostly carries over to the other three.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Implementation","id":"323","title":"Implementation"},"324":{"body":"Consider the following Smithy model: @length(min: 1, max: 69)\nstring NiceString The central idea to the implementation of constraint traits is: parse, don't validate . Instead of code-generating a Rust String to represent NiceString values and perform the validation at request deserialization, we can leverage Rust's type system to guarantee domain invariants . We can generate a wrapper tuple struct that parses the string's value and is \"tight\" in the set of values it can accept: pub struct NiceString(String); impl TryFrom for NiceString { type Error = nice_string::ConstraintViolation; fn try_from(value: String) -> Result { let num_code_points = value.chars().count(); if 1 <= num_code_points && num_code_points <= 69 { Ok(Self(value)) } else { Err(nice_string::ConstraintViolation::Length(num_code_points)) } }\n} (Note that we're using the linear time check chars().count() instead of len() on the input value, since the Smithy specification says the length trait counts the number of Unicode code points when applied to string shapes .) The goal is to enforce, at the type-system level, that these constrained structs always hold valid data. It should be impossible for the service implementer, without resorting to unsafe Rust, to construct a NiceString that violates the model. The actual check is performed in the implementation of TryFrom for the generated struct, which makes it convenient to use the ? operator for error propagation . Each constrained struct will have a related std::error::Error enum type to signal the first parsing failure, with one enum variant per applied constraint trait: pub mod nice_string { pub enum ConstraintViolation { /// Validation error holding the number of Unicode code points found, when a value between `1` and /// `69` (inclusive) was expected. Length(usize), } impl std::error::Error for ConstraintViolation {}\n} std::error::Error requires Display and Debug . We will #[derive(Debug)], unless the shape also has the sensitive trait , in which case we will just print the name of the struct: impl std::fmt::Debug for ConstraintViolation { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"ConstraintViolation\"); formatter.finish() }\n} Display is used to produce human-friendlier representations. Its implementation might be called when formatting a 400 HTTP response message in certain protocols, for example.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Example implementation for the length trait","id":"324","title":"Example implementation for the length trait"},"325":{"body":"We will continue to deserialize the different parts of the HTTP message into the regular Rust standard library types. However, just before the deserialization function returns, we will convert the type into the wrapper tuple struct that will eventually be handed over to the operation handler. This is what we're already doing when deserializing strings into enums. For example, given the Smithy model: @enum([ { name: \"Spanish\", value: \"es\" }, { name: \"English\", value: \"en\" }, { name: \"Japanese\", value: \"jp\" },\n])\nstring Language the code the client generates when deserializing a string from a JSON document into the Language enum is (excerpt): ...\nmatch key.to_unescaped()?.as_ref() { \"language\" => { builder = builder.set_language( aws_smithy_json::deserialize::token::expect_string_or_null( tokens.next(), )? .map(|s| { s.to_unescaped() .map(|u| crate::model::Language::from(u.as_ref())) }) .transpose()?, ); } _ => aws_smithy_json::deserialize::token::skip_value(tokens)?,\n}\n... Note how the String gets converted to the enum via Language::from(). impl std::convert::From<&str> for Language { fn from(s: &str) -> Self { match s { \"es\" => Language::Spanish, \"en\" => Language::English, \"jp\" => Language::Japanese, other => Language::Unknown(other.to_owned()), } }\n} For constrained shapes we would do the same to parse the inner deserialized value into the wrapper tuple struct, except for these differences: For enums, the client generates an Unknown variant that \"contains new variants that have been added since this code was generated\". The server does not need such a variant ( #1187 ). Conversions into the tuple struct are fallible (try_from() instead of from()). These errors will result in a my_struct::ConstraintViolation.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Request deserialization","id":"325","title":"Request deserialization"},"326":{"body":"We will enforce the length constraint by calling len() on Rust's Vec (list and set shapes), HashMap (map shapes) and our aws_smithy_types::Blob (bytes shapes). We will enforce the length constraint trait on String (string shapes) by calling .chars().count().","breadcrumbs":"RFCs » RFC-0025: Constraint traits » length trait","id":"326","title":"length trait"},"327":{"body":"The pattern trait restricts string shape values to a specified regular expression. We will implement this by using the regex's crate is_match . We will use once_cell to compile the regex only the first time it is required.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » pattern trait","id":"327","title":"pattern trait"},"328":{"body":"The uniqueItems trait indicates that the items in a List MUST be unique. If the list shape is sparse, more than one null value violates this constraint. We will enforce this by copying references to the Vec's elements into a HashSet and checking that the sizes of both containers coincide.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » uniqueItems trait","id":"328","title":"uniqueItems trait"},"329":{"body":"From the spec : Some constraints can be applied to shapes as well as structure members. If a constraint of the same type is applied to a structure member and the shape that the member targets, the trait applied to the member takes precedence. structure ShoppingCart { @range(min: 7, max:12) numberOfItems: PositiveInteger\n} @range(min: 1)\ninteger PositiveInteger In the above example, the range trait applied to numberOfItems takes precedence over the one applied to PositiveInteger. The resolved minimum will be 7, and the maximum 12. When the constraint trait is applied to a member shape, the tuple struct's name will be the PascalCased name of the member shape, NumberOfItems.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Trait precedence and naming of the tuple struct","id":"329","title":"Trait precedence and naming of the tuple struct"},"33":{"body":"Note: Throughout this document, the word \"box\" always refers to a Rust Box , a heap allocated pointer to T, and not the Smithy concept of boxed vs. unboxed. Recursive shapes pose a problem for Rust, because the following Rust code will not compile: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Option\n} |\n3 | struct TopStructure { | ^^^^^^^^^^^^^^^^^^^ recursive type has infinite size\n4 | intermediate: IntermediateStructure | ----------------------------------- recursive without indirection | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `main::TopStructure` representable This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt To support this, as the message suggests, we must \"Box\" the offending type. There is a touch of trickiness—only one element in the cycle needs to be boxed, but we need to select it deterministically such that we always pick the same element between multiple codegen runs. To do this the Rust SDK will: Topologically sort the graph of shapes. Identify cycles that do not pass through an existing Box, List, Set, or Map For each cycle, select the earliest shape alphabetically & mark it as Box in the Smithy model by attaching the custom RustBoxTrait to the member. Go back to step 1. This would produce valid Rust: struct TopStructure { intermediate: IntermediateStructure\n} struct IntermediateStructure { top: Box>\n} Backwards Compatibility Note! Box is not generally compatible with T in Rust. There are several unlikely but valid model changes that will cause the SDK to produce code that may break customers. If these are problematic, all are avoidable with customizations. A recursive link is added to an existing structure. This causes a member that was not boxed before to become Box. Workaround : Mark the new member as Box in a customization. A field is removed from a structure that removes the recursive dependency. The SDK would generate T instead of Box. Workaround : Mark the member that used to be boxed as Box in a customization. The Box will be unnecessary, but we will keep it for backwards compatibility.","breadcrumbs":"Smithy » Recursive Shapes » Recursive Shapes","id":"33","title":"Recursive Shapes"},"330":{"body":"Should we code-generate unsigned integer types (u16, u32, u64) when the range trait is applied with min set to a value greater than or equal to 0? A user has even suggested to use the std::num::NonZeroUX types (e.g. NonZeroU64 ) when range is applied with min set to a value greater than 0. UPDATE: This requires further design work. There are interoperability concerns: for example, the positive range of a u32 is strictly greater than that of an i32, so clients wouldn't be able to receive values within the non-overlapping range. In request deserialization, should we fail with the first violation and immediately render a response, or attempt to parse the entire request and provide a complete and structured report? UPDATE: We will provide a response containing all violations. See the \"Collecting Constraint Violations\" section in the Better Constraint Violations RFC. Should we provide a mechanism for the service implementer to construct a Rust type violating the modeled constraints in their business logic e.g. a T::new_unchecked() constructor? This could be useful (1) when the user knows the provided inner value does not violate the constraints and doesn't want to incur the performance penalty of the check; (2) when the struct is in a transient invalid state. However: (2) is arguably a modelling mistake and a separate struct to represent the transient state would be a better approach, the user could use unsafe Rust to bypass the validation; and adding this constructor is a backwards-compatible change, so it can always be added later if this feature is requested. UPDATE: We decided to punt on this until users express interest.","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Unresolved questions","id":"330","title":"Unresolved questions"},"331":{"body":"An alternative design with less public API surface would be to perform constraint validation at request deserialization, but hand over a regular \"loose\" type (e.g. String instead of NiceString) that allows for values violating the constraints. If we were to implement this approach, we can implement it by wrapping the incoming value in the aforementioned tuple struct to perform the validation, and immediately unwrap it. Comparative advantages: Validation remains an internal detail of the framework. If the semantics of a constraint trait change, the behavior of the service is still backwards-incompatibly affected, but user code is not. Less \"invasive\". Baking validation in the generated type might be deemed as the service framework overreaching responsibilities. Comparative disadvantages: It becomes possible to send responses with invalid operation outputs. All the service framework could do is log the validation errors. Baking validation at the type-system level gets rid of an entire class of logic errors. Less idiomatic (this is subjective). The pattern of wrapping a more primitive type to guarantee domain invariants is widespread in the Rust ecosystem. The standard library makes use of it extensively. Note that both designs are backwards incompatible in the sense that you can't migrate from one to the other without breaking user code. UPDATE: We ended up implementing both designs, adding a flag to opt into the alternative design. Refer to the mentions of the publicConstrainedTypes flag in the description of the Builders of builders PR .","breadcrumbs":"RFCs » RFC-0025: Constraint traits » Alternative design","id":"331","title":"Alternative design"},"332":{"body":"Status: Implemented Applies to: clients (and may impact servers due to shared codegen) This RFC proposes changing the organization structure of the generated client crates to: Make discovery in the crate documentation easier. Facilitate re-exporting types from runtime crates in related modules without name collisions. Facilitate feature gating operations for faster compile times in the future.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » RFC: Client Crate Organization","id":"332","title":"RFC: Client Crate Organization"},"333":{"body":"Previously, crates were organized as such: .\n├── client\n| ├── fluent_builders\n| | └── \n| ├── Builder (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| └── Sleep (*)\n├── error\n| ├── \n| ├── \n| ├── \n| └── \n├── http_body_checksum (empty)\n├── input\n| ├── \n| └── \n├── lens (empty)\n├── middleware\n| └── DefaultMiddleware\n├── model\n| ├── \n| └── \n├── operation\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | ├── RetryKind (*)\n| └── \n├── output\n| ├── \n| └── \n├── paginator\n| ├── \n| └── \n├── presigning\n| ├── config\n| | ├── Builder\n| | ├── Error\n| | └── PresigningConfig\n| └── request\n| └── PresignedRequest\n├── types\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| ├── DateTime (*)\n| └── SdkError (*)\n├── AppName (*)\n├── Client\n├── Config\n├── Credentials (*)\n├── Endpoint (*)\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region (*) (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Previous Organization","id":"333","title":"Previous Organization"},"334":{"body":"This RFC proposes reorganizing types by operation first and foremost, and then rearranging other pieces to reduce codegen collision risk.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Proposed Changes","id":"334","title":"Proposed Changes"},"335":{"body":"Builders (distinct from fluent builders) are generated alongside all inputs, outputs, models, and errors. They all follow the same overall pattern (where shapeType is Input, Output, or empty for models/errors): .\n└── module ├── └── This results in large lists of modules that all have exactly one item in them, which makes browsing the documentation difficult, and introduces the possibility of name collisions when re-exporting modules from the runtime crates. Builders should adopt a prefix and go into a single builders module, similar to how the fluent builders currently work: .\n├── module\n| └── builders\n| └── \n└──---- ","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Establish a pattern for builder organization","id":"335","title":"Establish a pattern for builder organization"},"336":{"body":"All code generated for an operation that isn't shared between operations will go into operation-specific modules. This includes inputs, outputs, errors, parsers, and paginators. Types shared across operations will remain in another module (discussed below), and serialization/deserialization logic for those common types will also reside in that common location for now. If operation feature gating occurs in the future, further optimization can be done to track which of these are used by feature, or they can be reorganized (this would be discussed in a future RFC and is out of scope here). With code generated operations living in crate::operation, there is a high chance of name collision with the customize module. To resolve this, customize will be moved into crate::client. The new crate::operation module will look as follows: .\n└── operation └── ├── paginator | ├── `${operation}Paginator` | └── `${operation}PaginatorItems` ├── builders | ├── `${operation}FluentBuilder` | ├── `${operation}InputBuilder` | └── `${operation}OutputBuilder` ├── `${operation}Error` ├── `${operation}Input` ├── `${operation}Output` └── `${operation}Parser` (private/doc hidden)","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Organize code generated types by operation","id":"336","title":"Organize code generated types by operation"},"337":{"body":"The crate root should only host the most frequently used types, or phrased differently, the types that are critical to making a service call with default configuration, or that are required for the most frequent config changes (such as setting credentials, or changing the region/endpoint). Previously, the following were exported in root: .\n├── AppName\n├── Client\n├── Config\n├── Credentials\n├── Endpoint\n├── Error\n├── ErrorExt (for some services)\n├── PKG_VERSION\n└── Region The AppName is infrequently set, and will be moved into crate::config. Customers are encouraged to use aws-config crate to resolve credentials, region, and endpoint. Thus, these types no longer need to be at the top-level, and will be moved into crate::config. ErrorExt will be moved into crate::error, but Error will stay in the crate root so that customers that alias the SDK crate can easily reference it in their Results: use aws_sdk_s3 as s3; fn some_function(/* ... */) -> Result<(), s3::Error> { /* ... */\n} The PKG_VERSION should move into a new meta module, which can also include other values in the future such as the SHA-256 hash of the model used to produce the crate, or the version of smithy-rs that generated it.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Reorganize the crate root","id":"337","title":"Reorganize the crate root"},"338":{"body":"Previously, the Smithy Client builder was re-exported alongside the SDK fluent Client so that non-SDK clients could easily customize the underlying Smithy client by using the fluent client's Client::with_config function or From> trait implementation. This makes sense for non-SDK clients where customization of the connector and middleware types is supported generically, but less sense for SDKs since the SDK clients are hardcoded to use DynConnector and DynMiddleware. Thus, the Smithy client Builder should not be re-exported for SDKs.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Conditionally remove Builder from crate::client","id":"338","title":"Conditionally remove Builder from crate::client"},"339":{"body":"Previously, crate::types held re-exported types from aws-smithy-types that are used by code generated structs/enums. This module will be renamed to crate::primitives so that the name types can be repurposed in the next section.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Create a primitives module","id":"339","title":"Create a primitives module"},"34":{"body":"Smithy Type Rust Type List Vec Set Vec Map HashMap Structure struct Union enum Most generated types are controlled by SymbolVisitor .","breadcrumbs":"Smithy » Aggregate Shapes » Aggregate Shapes","id":"34","title":"Aggregate Shapes"},"340":{"body":"The name model is meaningless outside the context of code generation (although there is precedent since both the Java V2 and Kotlin SDKs use the term). Previously, this module held all the generated structs/enums that are referenced by inputs, outputs, and errors. This RFC proposes that this module be renamed to types, and that all code generated types for shapes that are reused between operations (basically anything that is not an input, output, or error) be moved here. This would look as follows: .\n└── types ├── error | ├── builders | | └── | └── ├── builders | └── └── Customers using the fluent builder should be able to just use ${crate}::types::*; to immediately get access to all the shared types needed by the operations they are calling. Additionally, moving the top-level code generated error types into crate::types will eliminate a name collision issue in the crate::error module.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the types module","id":"340","title":"Repurpose the types module"},"341":{"body":"The error module is significantly smaller after all the code generated error types are moved out of it. This top-level module is now available for re-exports and utilities. The following will be re-exported in crate::error: aws_smithy_http::result::SdkError aws_smithy_types::error::display::DisplayErrorContext For crates that have an ErrorExt, it will also be moved into crate::error.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Repurpose the original crate::error module","id":"341","title":"Repurpose the original crate::error module"},"342":{"body":"The crate::presigning module only has four members, so it should be flattened from: .\n└── presigning ├── config | ├── Builder | ├── Error | └── PresigningConfig └── request └── PresignedRequest to: .\n└── presigning ├── PresigningConfigBuilder ├── PresigningConfigError ├── PresigningConfig └── PresignedRequest At the same time, Builder and Error will be renamed to PresigningConfigBuilder and PresigningConfigError respectively since these will rarely be referred to directly (preferring PresigningConfig::builder() instead; the error will almost always be unwrapped).","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Flatten the presigning module","id":"342","title":"Flatten the presigning module"},"343":{"body":"The lens and http_body_checksum modules have nothing inside them, and their documentation descriptions are not useful to customers: lens: Generated accessors for nested fields http_body_checksum: Functions for modifying requests and responses for the purposes of checksum validation These modules hold private functions that are used by other generated code, and should just be made private or #[doc(hidden)] if necessary.","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Remove the empty modules","id":"343","title":"Remove the empty modules"},"344":{"body":"All combined, the following is the new publicly visible organization: .\n├── client\n| ├── customize\n| | ├── ClassifyRetry (*)\n| | ├── CustomizableOperation\n| | ├── Operation (*)\n| | └── RetryKind (*)\n| ├── Builder (only in non-SDK crates) (*)\n| └── Client\n├── config\n| ├── retry\n| | ├── RetryConfig (*)\n| | ├── RetryConfigBuilder (*)\n| | └── RetryMode (*)\n| ├── timeout\n| | ├── TimeoutConfig (*)\n| | └── TimeoutConfigBuilder (*)\n| ├── AppName (*)\n| ├── AsyncSleep (*)\n| ├── Builder\n| ├── Config\n| ├── Credentials (*)\n| ├── Endpoint (*)\n| ├── Region (*)\n| └── Sleep (*)\n├── error\n| ├── DisplayErrorContext (*)\n| ├── ErrorExt (for some services)\n| └── SdkError (*)\n├── meta\n| └── PKG_VERSION\n├── middleware\n| └── DefaultMiddleware\n├── operation\n| └── \n| ├── paginator\n| | ├── `${operation}Paginator`\n| | └── `${operation}PaginatorItems`\n| ├── builders\n| | ├── `${operation}FluentBuilder`\n| | ├── `${operation}InputBuilder`\n| | └── `${operation}OutputBuilder`\n| ├── `${operation}Error`\n| ├── `${operation}Input`\n| ├── `${operation}Output`\n| └── `${operation}Parser` (private/doc hidden)\n├── presigning\n| ├── PresigningConfigBuilder\n| ├── PresigningConfigError\n| ├── PresigningConfig\n| └── PresignedRequest\n├── primitives\n| ├── AggregatedBytes (*)\n| ├── Blob (*)\n| ├── ByteStream (*)\n| └── DateTime (*)\n├── types\n| ├── error\n| | ├── builders\n| | | └── \n| | └── \n| ├── builders\n| | └── \n| └── \n├── Client\n├── Config\n└── Error (*) - signifies that a type is re-exported from one of the runtime crates","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » New Organization","id":"344","title":"New Organization"},"345":{"body":"Move crate::AppName into crate::config Move crate::PKG_VERSION into a new crate::meta module Move crate::Endpoint into crate::config Move crate::Credentials into crate::config Move crate::Region into crate::config Move crate::operation::customize into crate::client Finish refactor to decouple client/server modules Organize code generated types by operation Reorganize builders Rename crate::types to crate::primitives Rename crate::model to crate::types Move crate::error into crate::types Only re-export aws_smithy_client::client::Builder for non-SDK clients (remove from SDK clients) Move crate::ErrorExt into crate::error Re-export aws_smithy_types::error::display::DisplayErrorContext and aws_smithy_http::result::SdkError in crate::error Move crate::paginator into crate::operation Flatten crate::presigning Hide or remove crate::lens and crate::http_body_checksum Move fluent builders into crate::operation::x::builders Remove/hide operation ParseResponse implementations in crate::operation Update \"Crate Organization\" top-level section in generated crate docs Update all module docs Break up modules/files so that they're not 30k lines of code models/types; each struct/enum should probably get its own file with pub-use models/types::builders: now this needs to get split up client.rs Fix examples Write changelog","breadcrumbs":"RFCs » RFC-0026: Client Crate Organization » Changes Checklist","id":"345","title":"Changes Checklist"},"346":{"body":"Status: RFC For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how the Rust SDK will integrate with the next generation of endpoint resolution logic (Endpoints 2.0). Endpoints 2.0 defines a rules language for resolving endpoints. The Rust SDK will code-generate Rust code from this intermediate language and use this to create service-specific endpoint resolvers. Endpoints 2.0 will be a core feature and be available for generic clients as well as the AWS SDK.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » RFC: Endpoints 2.0","id":"346","title":"RFC: Endpoints 2.0"},"347":{"body":"Generic client : In reference to features/code that is not AWS specific and is supported for all Smithy clients. Rules language : A JSON-based rules language used to resolve endpoints Smithy Endpoint : An endpoint, as returned from the rules-language. This contains a URI, headers, and configuration map of String -> Document (properties). This must undergo another level of transformation before it can be used as an AwsEndpoint. AWS Endpoint : An endpoint with explicit signing configuration applied. AWS Endpoints need to contain region & service metadata to control signing. Middleware : A transformation applied to a request, prior to request dispatch Endpoint Parameters : A code-generated structure for each service which contains service-specific (and general) endpoint parameters.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Terminology","id":"347","title":"Terminology"},"348":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The user experience if this RFC is implemented","id":"348","title":"The user experience if this RFC is implemented"},"349":{"body":"SDKs will generate a new, public, endpoint module. The module will contain a Params structure and a DefaultResolver . Supporting these modules, a private endpoints_impl module will be generated. Why generate two modules ? Generating two separate modules, endpoint and endpoint_impl ensures that we don't have namespace collisions between hand-written and generated code. SDK middleware will be updated to use the new smithy_types::Endpoint . During request construction in make_operation, a smithy endpoint will be inserted into the property bag. The endpoint middleware will be updated to extract the Smithy endpoint from the property bag and set the request endpoint & signing information accordingly (see: Converting to AWS Endpoint . The following flow chart traces the endpoints 2.0 influence on a request via the green boxes. flowchart TD globalConfig(\"SDK global configuration (e.g. region provider, UseFIPS, etc.)\") serviceConfig(\"Modeled, service specific configuration information (clientContextParams)\") operationConfig(\"Operation-specific configuration (S3 Bucket, accountId, etc.)\") getObject[\"S3::GetObject\"] params[\"Create endpoint parameters\"] evaluate[\"Evaluate ruleset\"] rules[\"Generated Endpoint Ruleset for S3\"] middleware[\"Apply endpoint & properties to request via endpoint middleware\"] style getObject fill:green,stroke:#333,stroke-width:4px style params fill:green,stroke:#333,stroke-width:4px style evaluate fill:green,stroke:#333,stroke-width:4px style middleware fill:green,stroke:#333,stroke-width:4px getObject ==> params globalConfig ---> params operationConfig --> params serviceConfig ---> params rules --> evaluate params --> evaluate evaluate --> middleware","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overview","id":"349","title":"Overview"},"35":{"body":"List objects in Smithy are transformed into vectors in Rust. Based on the output of the NullableIndex , the generated list may be Vec or Vec>.","breadcrumbs":"Smithy » Aggregate Shapes » List","id":"35","title":"List"},"350":{"body":"In the general case, users will not be impacted by Endpoints 2.0 with one exception: today, users can provide a global endpoint provider that can override different services. There is a single ResolveAwsEndpoint trait that is shared across all services. However, this isn't the case for Endpoints 2.0 where the trait actually has a generic parameter: pub trait ResolveEndpoint: Send + Sync { fn resolve_endpoint(&self, params: &T) -> Result;\n} The trait itself would then be parameterized by service-specific endpoint parameter, eg: aws_sdk_s3::endpoint::Params. The endpoint parameters we would use for S3 (e.g. including Bucket) are different from the endpoint parameters we might use for a service like DynamoDB which, today, doesn't have any custom endpoint behavior. Going forward we will to provide two different avenues for customers to customize endpoints: Configuration driven URL override. This mechanism hasn't been specified, but suppose that the Rust SDK supported an SDK_ENDPOINT environment variable. This variable would be an input to the existing endpoint resolver. machinery and would be backwards compatible with other SDKs (e.g. by prefixing the bucket as a host label for S3). Wholesale endpoint resolver override. In this case, customers would gain access to all endpoint parameters and be able to write their own resolver. This RFC proposes making the following changes: For the current global ability to override an endpoint, instead of accepting an AwsEndpoint, accept a URI. This will simplify the interface for most customers who don't actually need logic-driven endpoint construction. The Endpoint that can be set will be passed in as the SDK::Endpoint built-in. This will be renamed to endpoint_url for clarity. All AWS services MUST accept the SDK::Endpoint built-in. For complex, service-specific behavior, customers will be able to provide a service specific endpoint resolver at client construction time. This resolver will be parameterized with the service-specific parameters type, ( eg. aws_sdk_s3::endpoint::Params). Finally, customers will be able to access the default_resolver() for AWS services directly. This will enable them to utilize the default S3 endpoint resolver in their resolver implementation. Example: overriding the endpoint URI globally async fn main() { let sdk_conf = aws_config::from_env().endpoint_url(\"http://localhost:8123\").load().await; let dynamo = aws_sdk_dynamodb::Client::new(&sdk_conf); // snip ...\n} Example: overriding the endpoint resolver for a service /// Resolve to Localhost when an environment variable is set\nstruct CustomDdbResolver; impl ResolveEndpoint for CustomDdbResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // custom resolver to redirect to DDB local if a flag is set let base_endpoint = aws_sdk_dynamodb::endpoint::default_resolver().resolve_endpoint(params).expect(\"valid endpoint should be resolved\"); if env::var(\"LOCAL\") == Ok(\"true\") { // update the URI on the returned endpoint to localhost while preserving the other properties Ok(base_endpoint.builder().uri(\"http://localhost:8888\").build()) } else { Ok(base_endpoint) } }\n} async fn main() { let conf = aws_config::load_from_env().await; let ddb_conf = aws_sdk_dynamodb::config::Builder::from(&conf).endpoint_resolver(CustomDdbResolver); let dynamodb = aws_sdk_dynamodb::Client::from_conf(ddb_conf);\n} Note: for generic clients, they cannot use endpoint_url—this is because endpoint_url is dependent on rules and generic clients do not necessarily rules. However, they can use the impl ResolveEndpoint for &'static str { ... } implementation. What about alternative S3 implementations? How do we say \"don't put prefix bucket on this?\" For cases where users want to use the provided URL directly with no modification users will need to rely on service specific configuration, like forcing path style addressing for S3. Alternative Design : Context Aware Endpoint Trait Optional addition : We could add an additional EndpointResolver parameter to SdkConfig that exposed a global trait where Params is &dyn Any similar to Context Aware Endpoint Trait . If these were both set, a runtime panic would alert users to the misconfiguration.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Overriding Endpoints","id":"350","title":"Overriding Endpoints"},"351":{"body":"The new endpoint resolution trait and Endpoint struct will be available for generic clients. AWS endpoint middleware will pull the Endpoint out of the property bag and read the properties to determine auth/signing + any other AWS metadata that may be required. An example of the Endpoint struct is below. This struct will be in aws-smithy-types, however, it should initially be gated with documentation warning about stability. The Endpoint Struct // module: `aws_smithy_types::endpoint`\n// potential optimization to reduce / remove allocations for keys which are almost always static\n// this can also just be `String`\ntype MaybeStatic = Cow<'static, T>; /// Endpoint\n#[derive(Debug, PartialEq)]\npub struct Endpoint { // Note that this allows `Endpoint` to contain an invalid URI. During conversion to an actual endpoint, the // the middleware can fail, returning a `ConstructionFailure` to the user url: MaybeStatic, headers: HashMap, Vec>>, properties: HashMap, aws_smithy_types::Document>,\n} // not shown:\n// - impl block with standard accessors\n// - builder, designed to be invoked / used by generated code What's an Endpoint property? Endpoint properties, on their own, have no intrinsic meaning. Endpoint properties have established conventions for AWS SDKs. Other Smithy implementors may choose a different pattern. For AWS SDKs, the authSchemes key is an ordered list of authentication/signing schemes supported by the Endpoint that the SDK should use. To perform produce an Endpoint struct we have a generic ResolveEndpoint trait which will be both generic in terms of parameters and being \"smithy-generic: // module: `smithy_types::endpoint` or `aws_smithy_client`??\npub trait ResolveEndpoint: Send + Sync { /// Resolves an `Endpoint` for `Params` fn resolve_endpoint(&self, params: &Params) -> Result;\n} All Smithy services that have the @endpointRuleSet trait applied to the service shape will code generate a default endpoint resolver implementation. The default endpoint resolver MUST be public, so that customers can delegate to it if they wish to override the endpoint resolver.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » New Endpoint Traits","id":"351","title":"New Endpoint Traits"},"352":{"body":"We've mentioned \"service specific endpoint parameters\" a few times. In Endpoints 2.0, we will code generate Endpoint Parameters for every service based on their rules. Note : the endpoint parameters themselves are generated solely from the ruleset. The Smithy model provides additional information about parameter binding, but that only influences how the parameters are set, not how they are generated. Example Params struct for S3: #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\n/// Configuration parameters for resolving the correct endpoint\npub struct Params { pub(crate) bucket: std::option::Option, pub(crate) region: std::option::Option, pub(crate) use_fips: bool, pub(crate) use_dual_stack: bool, pub(crate) endpoint: std::option::Option, pub(crate) force_path_style: std::option::Option, pub(crate) accelerate: bool, pub(crate) disable_access_points: std::option::Option, pub(crate) disable_mrap: std::option::Option,\n} impl Params { /// Create a builder for [`Params`] pub fn builder() -> crate::endpoint_resolver::Builder { crate::endpoint_resolver::Builder::default() } /// Gets the value for bucket pub fn bucket(&self) -> std::option::Option<&str> { self.bucket.as_deref() } /// Gets the value for region pub fn region(&self) -> std::option::Option<&str> { self.region.as_deref() } /// Gets the value for use_fips pub fn use_fips(&self) -> std::option::Option { Some(self.use_fips) } /// Gets the value for use_dual_stack pub fn use_dual_stack(&self) -> std::option::Option { Some(self.use_dual_stack) } // ... more accessors\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Endpoint Params","id":"352","title":"Endpoint Params"},"353":{"body":"When an endpoint ruleset is present, Smithy will code generate an endpoint resolver from that ruleset. The endpoint resolver MUST be a struct so that it can store/cache computations (such as a partition resolver that has compiled regexes). pub struct DefaultEndpointResolver { partition_resolver: PartitionResolver\n} impl ResolveEndpoint for DefaultEndpointResolver { fn resolve_endpoint(&self, params: &Params) -> Result { // delegate to private impl crate::endpoints_impl::resolve_endpoint(params) }\n} DefaultEndpointResolver MUST be publicly accessible and offer both a default constructor and the ability to configure resolution behavior (e.g. by supporting adding additional partitions.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » The default endpoint resolver","id":"353","title":"The default endpoint resolver"},"354":{"body":"To describe how this feature will work, let's take a step-by-step path through endpoint resolution. A user defines a service client, possibly with some client specific configuration like region. @clientContextParams are code generated onto the client Config . Code generating @clientContextParams A user invokes an operation like s3::GetObject. A params object is created . In the body of make_operation(), this is passed to config.endpoint_resolver to load a generic endpoint. The Result of the of the endpoint resolution is written into the property bag. The generic smithy middleware (SmithyEndpointStage) sets the request endpoint. The AWS auth middleware (AwsAuthStage) reads the endpoint out of the property bag and applies signing overrides. The request is signed & dispatched The other major piece of implementation required is actually implementing the rules engine. To learn more about rules-engine internals, skip to implementing the rules engine .","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » How to actually implement this RFC","id":"354","title":"How to actually implement this RFC"},"355":{"body":"When a smithy model uses the @clientContextParams trait, we need to generate client params onto the Rust SDK. This is a Smithy-native feature. This should be implemented as a \"standard\" config decorator that reads traits from the current model. Kotlin Snippet for Client context params class ClientContextDecorator(ctx: ClientCodegenContext) : NamedSectionGenerator() { private val contextParams = ctx.serviceShape.getTrait()?.parameters.orEmpty().toList() .map { (key, value) -> ContextParam.fromClientParam(key, value, ctx.symbolProvider) } data class ContextParam(val name: String, val type: Symbol, val docs: String?) { companion object { private fun toSymbol(shapeType: ShapeType, symbolProvider: RustSymbolProvider): Symbol = symbolProvider.toSymbol( when (shapeType) { ShapeType.STRING -> StringShape.builder().id(\"smithy.api#String\").build() ShapeType.BOOLEAN -> BooleanShape.builder().id(\"smithy.api#Boolean\").build() else -> TODO(\"unsupported type\") } ) fun fromClientParam( name: String, definition: ClientContextParamDefinition, symbolProvider: RustSymbolProvider ): ContextParam { return ContextParam( RustReservedWords.escapeIfNeeded(name.toSnakeCase()), toSymbol(definition.type, symbolProvider), definition.documentation.orNull() ) } } } override fun section(section: ServiceConfig): Writable { return when (section) { is ServiceConfig.ConfigStruct -> writable { contextParams.forEach { param -> rust(\"pub (crate) ${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.ConfigImpl -> emptySection ServiceConfig.BuilderStruct -> writable { contextParams.forEach { param -> rust(\"${param.name}: #T,\", param.type.makeOptional()) } } ServiceConfig.BuilderImpl -> writable { contextParams.forEach { param -> param.docs?.also { docs(it) } rust( \"\"\" pub fn ${param.name}(mut self, ${param.name}: #T) -> Self { self.${param.name} = Some(${param.name}); self } \"\"\", param.type ) } } ServiceConfig.BuilderBuild -> writable { contextParams.forEach { param -> rust(\"${param.name}: self.${param.name},\") } } else -> emptySection } }\n}","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Code generating client context params","id":"355","title":"Code generating client context params"},"356":{"body":"Params will be created and utilized in generic code generation. make_operation() needs to load the parameters from several configuration sources. These sources have a priority order. To handle this priority order, we will load from all sources in reverse priority order, with lower priority sources overriding higher priority ones. Implementation of operation decorator class EndpointParamsDecorator( private val ctx: ClientCodegenContext, private val operationShape: OperationShape,\n) : OperationCustomization() { val idx = ContextIndex.of(ctx.model) private val ruleset = EndpointRuleset.fromNode(ctx.serviceShape.expectTrait().ruleSet) override fun section(section: OperationSection): Writable { return when (section) { is OperationSection.MutateInput -> writable { rustTemplate( \"\"\" let params = #{Params}::builder() #{builder:W}.expect(\"invalid endpoint\"); \"\"\", \"Params\" to EndpointParamsGenerator(ruleset).paramsStruct(), \"builder\" to builderFields(section) ) } is OperationSection.MutateRequest -> writable { rust(\"// ${section.request}.properties_mut().insert(params);\") } else -> emptySection } } private fun builderFields(section: OperationSection.MutateInput) = writable { val memberParams = idx.getContextParams(operationShape) val builtInParams = ruleset.parameters.toList().filter { it.isBuiltIn } // first load builtins and their defaults builtInParams.forEach { param -> val defaultProviders = section.endpointCustomizations.mapNotNull { it.defaultFor(param, section.config) } if (defaultProviders.size > 1) { error(\"Multiple providers provided a value for the builtin $param\") } defaultProviders.firstOrNull()?.also { defaultValue -> rust(\".set_${param.name.rustName()}(#W)\", defaultValue) } } // these can be overridden with client context params idx.getClientContextParams(ctx.serviceShape).forEach { (name, _param) -> rust(\".set_${name.toSnakeCase()}(${section.config}.${name.toSnakeCase()}.as_ref())\") } // lastly, allow these to be overridden by members memberParams.forEach { (memberShape, param) -> rust(\".set_${param.name.toSnakeCase()}(${section.input}.${ctx.symbolProvider.toMemberName(memberShape)}.as_ref())\") } rust(\".build()\") }\n} Loading values for builtIns The fundamental point of builtIn values is enabling other code generators to define where these values come from. Because of that, we will need to expose the ability to customize AwsBuiltIns. One way to do this is with a new customization type, EndpointCustomization: fun endpointCustomizations( clientCodegenContext: C, operation: OperationShape, baseCustomizations: List\n): List = baseCustomizations abstract class EndpointCustomization { abstract fun defaultFor(parameter: Parameter, config: String): Writable?\n} Customizations have the ability to specify the default value for a parameter. (Of course, these customizations need to be wired in properly.)","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Creating Params","id":"356","title":"Creating Params"},"357":{"body":"A Smithy endpoint has an untyped, string->Document collection of properties. We need to interpret these properties to handle actually resolving an endpoint. As part of the AwsAuthStage, we load authentication schemes from the endpoint properties and use these to configure signing on the request. Note : Authentication schemes are NOT required as part of an endpoint. When the auth schemes are not set, the default authentication should be used. The Rust SDK will set SigningRegion and SigningName in the property bag by default as part of make_operation.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Converting a Smithy Endpoint to an AWS Endpoint","id":"357","title":"Converting a Smithy Endpoint to an AWS Endpoint"},"358":{"body":"The Rust SDK code converts the rules into Rust code that will be compiled.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Implementing the rules engine","id":"358","title":"Implementing the rules engine"},"359":{"body":"Rules Engine Endpoint rules code generator Endpoint params code generator Endpoint tests code generator Implement ruleset standard library functions as inlineables. Note: pending future refactoring work, the aws. functions will need to be integrated into the smithy core endpoint resolver. Implement partition function & ability to customize partitions SDK Integration Add a Smithy endpoint resolver to the service config, with a default that loads the default endpoint resolver. Update SdkConfig to accept a URI instead of an implementation of ResolveAwsEndpoint. This change can be done standalone. Remove/deprecate the ResolveAwsEndpoint trait and replace it with the vanilla Smithy trait. Potentially, provide a bridge. Update make_operation to write a smithy::Endpoint into the property bag Update AWS Endpoint middleware to work off of a smithy::Endpoint Wire the endpoint override to the SDK::Endpoint builtIn parameter Remove the old smithy endpoint","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Changes checklist","id":"359","title":"Changes checklist"},"36":{"body":"Because floats are not Hashable in Rust, for simplicity smithy-rs translates all sets to into Vec instead of HashSet. In the future, a breaking change may be made to introduce a library-provided wrapper type for Sets.","breadcrumbs":"Smithy » Aggregate Shapes » Set","id":"36","title":"Set"},"360":{"body":"","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Alternative Designs","id":"360","title":"Alternative Designs"},"361":{"body":"An alternative design that could provide more flexibility is a context-aware endpoint trait where the return type would give context about the endpoint being returned. This would, for example, allow a customer to say explicitly \"don't modify this endpoint\": enum ContextualEndpoint { /// Just the URI please. Pass it into the default endpoint resolver as a baseline Uri { uri: Uri, immutable: bool }, /// A fully resolved, ready to rumble endpoint. Don't bother hitting the default endpoint resolver, just use what /// I've got. AwsEndpoint(AwsEndpoint)\n} trait ResolveGlobalEndpoint { fn resolve_endpoint(params: &dyn Any) -> Result;\n} Service clients would then use ResolveGlobalEndpoint, optional specified from SdkConfig to perform routing decisions.","breadcrumbs":"RFCs » RFC-0027: Endpoints 2.0 » Context Aware Endpoint Traits","id":"361","title":"Context Aware Endpoint Traits"},"362":{"body":"Status: Implemented in smithy-rs#2122 Applies to: AWS SDK for Rust At time of writing (2022-10-11), the SDK's credentials provider can be customized by providing: A profile credentials file to modify the default provider chain An instance of one of the credentials providers implemented in aws-config, such as the AssumeRoleCredentialsProvider, ImdsCredentialsProvider, and so on. A custom struct that implements the ProvideCredentials The problem this RFC examines is that when options 2 and 3 above are exercised, the customer needs to be aware of credentials caching and put additional effort to ensure caching is set up correctly (and that double caching doesn't occur). This is especially difficult to get right since some built-in credentials providers (such as AssumeRoleCredentialsProvider) already have caching, while most others do not and need to be wrapped in LazyCachingCredentialsProvider. The goal of this RFC is to create an API where Rust's type system ensures caching is set up correctly, or explicitly opted out of.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » RFC: SDK Credential Cache Type Safety","id":"362","title":"RFC: SDK Credential Cache Type Safety"},"363":{"body":"A new config method named credentials_cache() will be added to ConfigLoader and the generated service Config builders that takes a CredentialsCache instance. This CredentialsCache will be a struct with several functions on it to create and configure the cache. Client creation will ultimately be responsible for taking this CredentialsCache instance and wrapping the given (or default) credentials provider. The CredentialsCache would look as follows: enum Inner { Lazy(LazyConfig), // Eager doesn't exist today, so this is purely for illustration Eager(EagerConfig), // Custom may not be implemented right away // Not naming or specifying the custom cache trait for now since its out of scope Custom(Box), NoCaching,\n}\npub struct CredentialsCache { inner: Inner,\n} impl CredentialsCache { // These methods use default cache settings pub fn lazy() -> Self { /* ... */ } pub fn eager() -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy_builder() -> LazyBuilder { /* ... */ } pub fn eager_builder() -> EagerBuilder { /* ... */ } // Later, when custom implementations are supported pub fn custom(cache_impl: Box) -> Self { /* ... */ } pub(crate) fn create_cache( self, provider: Box, sleep_impl: Arc ) -> SharedCredentialsProvider { // Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), Self::NoCaching => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation in addition to the impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Customers that don't care about credential caching can configure credential providers without needing to think about it: let sdk_config = aws_config::from_env() .credentials_provider(ImdsCredentialsProvider::builder().build()) .load() .await; However, if they want to customize the caching, they can do so without modifying the credentials provider at all (in case they want to use the default): let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::default_eager()) .load() .await; The credentials_cache will default to CredentialsCache::default_lazy() if not provided.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » CredentialsCache and ConfigLoader::credentials_cache","id":"363","title":"CredentialsCache and ConfigLoader::credentials_cache"},"364":{"body":"Remove cache from AssumeRoleProvider Implement CredentialsCache with its Lazy variant and builder Add credentials_cache method to ConfigLoader Refactor ConfigLoader to take CredentialsCache instead of impl ProvideCredentials + 'static Refactor SharedCredentialsProvider to take a cache implementation in addition to an impl ProvideCredentials + 'static Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader Write changelog upgrade instructions Fix examples (if there are any for configuring caching)","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Changes Checklist","id":"364","title":"Changes Checklist"},"365":{"body":"","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Appendix: Alternatives Considered","id":"365","title":"Appendix: Alternatives Considered"},"366":{"body":"In this alternative, aws-types has a ProvideCachedCredentials in addition to ProvideCredentials. All individual credential providers (such as ImdsCredentialsProvider) implement ProvideCredentials, while credential caches (such as LazyCachingCredentialsProvider) implement the ProvideCachedCredentials. The ConfigLoader would only take impl ProvideCachedCredentials. This allows customers to provide their own caching solution by implementing ProvideCachedCredentials, while requiring that caching be done correctly through the type system since ProvideCredentials is only useful inside the implementation of ProvideCachedCredentials. Caching can be opted out by creating a NoCacheCredentialsProvider that implements ProvideCachedCredentials without any caching logic, although this wouldn't be recommended and this provider wouldn't be vended in aws-config. Example configuration: // Compiles\nlet sdk_config = aws_config::from_env() .credentials( LazyCachingCredentialsProvider::builder() .load(ImdsCredentialsProvider::new()) .build() ) .load() .await; // Doesn't compile\nlet sdk_config = aws_config::from_env() // Wrong type: doesn't implement `ProvideCachedCredentials` .credentials(ImdsCredentialsProvider::new()) .load() .await; Another method could be added to ConfigLoader that makes it easier to use the default cache: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::new()) .load() .await; Pros/cons :+1: It's flexible, and somewhat enforces correct cache setup through types. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers may unintentionally implement ProvideCachedCredentials instead of ProvideCredentials for a custom provider, and then not realize they're not benefiting from caching. :-1: The documentation needs to make it very clear what the differences are between ProvideCredentials and ProvideCachedCredentials since they will look identical. :-1: It's possible to implement both ProvideCachedCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative A: ProvideCachedCredentials trait","id":"366","title":"Alternative A: ProvideCachedCredentials trait"},"367":{"body":"This alternative is similar to alternative A, except that the cache trait is distinct from ProvideCredentials so that it's more apparent when mistakenly implementing the wrong trait for a custom credentials provider. A CacheCredentials trait would be added that looks as follows: pub trait CacheCredentials: Send + Sync + Debug { async fn cached(&self, now: SystemTime) -> Result;\n} Instances implementing CacheCredentials need to own the ProvideCredentials implementation to make both lazy and eager credentials caching possible. The configuration examples look identical to Option A. Pros/cons :+1: It's flexible, and enforces correct cache setup through types slightly better than Option A. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Customers can still unintentionally implement the wrong trait and miss out on caching when creating custom credentials providers, but it will be more apparent than in Option A. :-1: It's possible to implement both CacheCredentials and ProvideCredentials, which breaks the type safety goals.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative B: CacheCredentials trait","id":"367","title":"Alternative B: CacheCredentials trait"},"368":{"body":"The struct approach posits that customers don't need or want to implement custom credential caching, but at the same time, doesn't make it impossible to add custom caching later. The idea is that there would be a struct called CredentialsCache that specifies the desired caching approach for a given credentials provider: pub struct LazyCache { credentials_provider: Arc, // ...\n} pub struct EagerCache { credentials_provider: Arc, // ...\n} pub struct CustomCache { credentials_provider: Arc, // Not naming or specifying the custom cache trait for now since its out of scope cache: Arc\n} enum CredentialsCacheInner { Lazy(LazyCache), // Eager doesn't exist today, so this is purely for illustration Eager(EagerCache), // Custom may not be implemented right away Custom(CustomCache),\n} pub struct CredentialsCache { inner: CredentialsCacheInner,\n} impl CredentialsCache { // Methods prefixed with `default_` just use the default cache settings pub fn default_lazy(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } pub fn default_eager(provider: impl ProvideCredentials + 'static) -> Self { /* ... */ } // Unprefixed methods return a builder that can take customizations pub fn lazy(provider: impl ProvideCredentials + 'static) -> LazyBuilder { /* ... */ } pub fn eager(provider: impl ProvideCredentials + 'static) -> EagerBuilder { /* ... */ } pub(crate) fn create_cache( self, sleep_impl: Arc ) -> SharedCredentialsProvider { // ^ Note: SharedCredentialsProvider would get renamed to SharedCredentialsCache. // This code is using the old name to make it clearer that it already exists, // and the rename is called out in the change checklist. SharedCredentialsProvider::new( match self { Self::Lazy(inner) => LazyCachingCredentialsProvider::new(inner.credentials_provider, settings.time, /* ... */), Self::Eager(_inner) => unimplemented!(), Self::Custom(_custom) => unimplemented!(), } ) }\n} Using a struct over a trait prevents custom caching implementations, but if customization is desired, a Custom variant could be added to the inner enum that has its own trait that customers implement. The SharedCredentialsProvider needs to be updated to take a cache implementation rather than impl ProvideCredentials + 'static. A sealed trait could be added to facilitate this. Configuration would look as follows: let sdk_config = aws_config::from_env() .credentials(CredentialsCache::default_lazy(ImdsCredentialsProvider::builder().build())) .load() .await; The credentials_provider method on ConfigLoader would only take CredentialsCache as an argument so that the SDK could not be configured without credentials caching, or if opting out of caching becomes a use case, then a CredentialsCache::NoCache variant could be made. Like alternative A, a convenience method can be added to make using the default cache easier: let sdk_config = aws_config::from_env() .credentials_with_default_cache(ImdsCredentialsProvider::builder().build()) .load() .await; In the future if custom caching is added, it would look as follows: let sdk_config = aws_config::from_env() .credentials( CredentialsCache::custom(ImdsCredentialsProvider::builder().build(), MyCache::new()) ) .load() .await; The ConfigLoader wouldn't be able to immediately set its credentials provider since other values from the config are needed to construct the cache (such as sleep_impl). Thus, the credentials setter would merely save off the CredentialsCache instance, and then when load is called, the complete SharedCredentialsProvider would be constructed: pub async fn load(self) -> SdkConfig { // ... let credentials_provider = self.credentials_cache.create_cache(sleep_impl); // ...\n} Pros/cons :+1: Removes the possibility of missing out on caching when implementing a custom provider. :+1: Removes the possibility of double caching since the cache implementations won't implement ProvideCredentials. :-1: Requires thinking about caching when only wanting to customize the credentials provider :-1: Requires a lot of boilerplate in aws-config for the builders, enum variant structs, etc.","breadcrumbs":"RFCs » RFC-0028: SDK Credential Cache Type Safety » Alternative C: CredentialsCache struct with composition","id":"368","title":"Alternative C: CredentialsCache struct with composition"},"369":{"body":"Status: Implemented in smithy-rs#2108 Applies to: clients This RFC supplements RFC 28 and discusses for the selected design where to place the types for credentials providers, credentials caching, and everything else that comes with them. It is assumed that the primary motivation behind the introduction of type safe credentials caching remains the same as the preceding RFC.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » RFC: Finding New Home for Credential Types","id":"369","title":"RFC: Finding New Home for Credential Types"},"37":{"body":"Because key MUST be a string in Smithy maps, we avoid the hashibility issue encountered with Set. There are optimizations that could be considered (e.g. since these maps will probably never be modified), however, pending customer feedback, Smithy Maps become HashMap in Rust.","breadcrumbs":"Smithy » Aggregate Shapes » Map","id":"37","title":"Map"},"370":{"body":"This document assumes that the following items in the changes checklist in the preceding RFC have been implemented: Implement CredentialsCache with its Lazy variant and builder Add the credentials_cache method to ConfigLoader Rename SharedCredentialsProvider to SharedCredentialsCache Remove ProvideCredentials impl from LazyCachingCredentialsProvider Rename LazyCachingCredentialsProvider -> LazyCredentialsCache Refactor the SDK Config code generator to be consistent with ConfigLoader","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Assumptions","id":"370","title":"Assumptions"},"371":{"body":"Here is how our attempt to implement the selected design in the preceding RFC can lead to an obstacle. Consider this code snippet we are planning to support: let sdk_config = aws_config::from_env() .credentials_cache(CredentialsCache::lazy()) .load() .await; let client = aws_sdk_s3::Client::new(&sdk_config); A CredentialsCache created by CredentialsCache::lazy() above will internally go through three crates before the variable client has been created: aws-config: after it has been passed to aws_config::ConfigLoader::credentials_cache // in lib.rs impl ConfigLoader { // --snip-- pub fn credentials_cache(mut self, credentials_cache: CredentialsCache) -> Self { self.credentials_cache = Some(credentials_cache); self } // --snip--\n} aws-types: after aws_config::ConfigLoader::load has passed it to aws_types::sdk_config::Builder::credentials_cache // in sdk_config.rs impl Builder { // --snip-- pub fn credentials_cache(mut self, cache: CredentialsCache) -> Self { self.set_credentials_cache(Some(cache)); self } // --snip--\n} aws-sdk-s3: after aws_sdk_s3::Client::new has been called with the variable sdk_config // in client.rs impl Client { // --snip-- pub fn new(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Self::from_conf(sdk_config.into()) } // --snip--\n} calls // in config.rs impl From<&aws_types::sdk_config::SdkConfig> for Builder { fn from(input: &aws_types::sdk_config::SdkConfig) -> Self { let mut builder = Builder::default(); builder = builder.region(input.region().cloned()); builder.set_endpoint_resolver(input.endpoint_resolver().clone()); builder.set_retry_config(input.retry_config().cloned()); builder.set_timeout_config(input.timeout_config().cloned()); builder.set_sleep_impl(input.sleep_impl()); builder.set_credentials_cache(input.credentials_cache().cloned()); builder.set_credentials_provider(input.credentials_provider().cloned()); builder.set_app_name(input.app_name().cloned()); builder.set_http_connector(input.http_connector().cloned()); builder }\n} impl From<&aws_types::sdk_config::SdkConfig> for Config { fn from(sdk_config: &aws_types::sdk_config::SdkConfig) -> Self { Builder::from(sdk_config).build() }\n} What this all means is that CredentialsCache needs to be accessible from aws-config, aws-types, and aws-sdk-s3 (SDK client crates, to be more generic). We originally assumed that CredentialsCache would be defined in aws-config along with LazyCredentialsCache, but the assumption no longer holds because aws-types and aws-sdk-s3 do not depend upon aws-config. Therefore, we need to find a new place in which to create credentials caches accessible from the aforementioned crates.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Problems","id":"371","title":"Problems"},"372":{"body":"We propose to move the following items to a new crate called aws-credential-types: All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies For the first bullet point, we move types and traits associated with credentials out of aws-types. Crucially, the ProvideCredentials trait now lives in aws-credential-types. For the second bullet point, we move the items related to credentials caching. CredentialsCache with its Lazy variant and builder lives in aws-credential-types and CredentialsCache::create_cache will be marked as pub. One area where we make an adjustment, though, is that LazyCredentialsCache depends on aws_types::os_shim_internal::TimeSource so we need to move TimeSource into aws-credentials-types as well. A result of the above arrangement will give us the following module dependencies (only showing what's relevant): :+1: aws_types::sdk_config::Builder and a service client config::Builder can create a SharedCredentialsCache with a concrete type of credentials cache. :+1: It avoids cyclic crate dependencies. :-1: There is one more AWS runtime crate to maintain and version.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Proposed Solution","id":"372","title":"Proposed Solution"},"373":{"body":"An alternative design is to move the following items to a separate crate (tentatively called aws-XXX): All items in aws_types::sdk_config, i.e. SdkConfig and its builder All items in aws_types::credentials and their dependencies All items in aws_config::meta::credentials and their dependencies The reason for the first bullet point is that the builder needs to be somewhere it has access to the credentials caching factory function, CredentialsCache::create_cache. The factory function is in aws-XXX and if the builder stayed in aws-types, it would cause a cyclic dependency between those two crates. A result of the above arrangement will give us the following module dependencies: We have dismissed this design mainly because we try moving out of the aws-types create as little as possible. Another downside is that SdkConfig sitting together with the items for credentials provider & caching does not give us a coherent mental model for the aws-XXX crate, making it difficult to choose the right name for XXX.","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Rejected Alternative","id":"373","title":"Rejected Alternative"},"374":{"body":"The following list does not repeat what is listed in the preceding RFC but does include those new mentioned in the Assumptions section: Create aws-credential-types Move all items in aws_types::credentials and their dependencies to the aws-credential-types crate Move all items in aws_config::meta::credentials and their dependencies to the aws-credential-types crate Update use statements and fully qualified names in the affected places","breadcrumbs":"RFCs » RFC-0029: Finding New Home for Credential Types » Changes Checklist","id":"374","title":"Changes Checklist"},"375":{"body":"Status: RFC Applies to: Output, Input, and Builder types as well as DateTime, Document, Blob, and Number implemented in aws_smithy_types crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » RFC: Serialization and Deserialization","id":"375","title":"RFC: Serialization and Deserialization"},"376":{"body":"Builder Refers to data types prefixed with Builder, which converts itself into a corresponding data type upon being built. e.g. aws_sdk_dynamodb::input::PutItemInput. serde Refers to serde crate. Serialize Refers to Serialize trait avaialble on serde crate. Deserialize Refers to Deserialize trait available on serde crate.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Terminology","id":"376","title":"Terminology"},"377":{"body":"We are going to implement Serialize and Deserialize traits from serde crate to some data types. Data types that are going to be affected are; builder data types operation Input types operation Output types data types that builder types may have on their field(s) aws_smithy_types::DateTime aws_smithy_types::Document aws_smithy_types::Blob aws_smithy_types::Number DateTime and Blob implements different serialization/deserialization format for human-readable and non-human readable format; We must emphasize that these 2 formats are not compatible with each other. The reason for this is explained in the Blob section and Date Time . Additionally, we add fn set_fields to fluent builders to allow users to set the data they deserialized to fluent builders. Lastly, we emphasize that this RFC does NOT aim to serialize the entire response or request or implement serde traits on data types for server-side code.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Overview","id":"377","title":"Overview"},"378":{"body":"Users have requested serde traits to be implemented on data types implemented in rust SDK. We have created this RFC with the following use cases in mind. [request]: Serialize/Deserialize of models for Lambda events #269 Tests as suggested in the design FAQ. Building tools","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case","id":"378","title":"Use Case"},"379":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate","id":"379","title":"Feature Gate"},"38":{"body":"See StructureGenerator.kt for more details Smithy structure becomes a struct in Rust. Backwards compatibility & usability concerns lead to a few design choices: As specified by NullableIndex, fields are Option when Smithy models them as nullable. All structs are marked #[non_exhaustive] All structs derive Debug & PartialEq. Structs do not derive Eq because a float member may be added in the future. Struct fields are public. Public struct fields allow for split borrows . When working with output objects this significantly improves ergonomics, especially with optional fields. let out = dynamo::ListTablesOutput::new();\nout.some_field.unwrap(); // <- partial move, impossible with an accessor Builders are generated for structs that provide ergonomic and backwards compatible constructors. A builder for a struct is always available via the convenience method SomeStruct::builder() Structures manually implement debug: In order to support the sensitive trait , a Debug implementation for structures is manually generated.","breadcrumbs":"Smithy » Aggregate Shapes » Structure","id":"38","title":"Structure"},"380":{"body":"To enable any of the features from this RFC, user must pass --cfg aws-sdk-unstable to rustc. You can do this by specifying it on env-variable or by config.toml. specifying it on .cargo/config.toml [build]\nrustflags = [\"--cfg\", \"aws-sdk-unstable\"] As an environment variable export RUSTFLAGS=\"--cfg aws-sdk-unstable\"\ncargo build We considered allowing users to enable this feature on a crate-level. e.g. [dependencies]\naws_sdk_dynamodb = { version = \"0.22.0\", features = [\"unstable\", \"serialize\"] } Compared to the cfg approach, it is lot easier for the users to enable this feature. However, we believe that cfg approach ensure users won't enable this feature by surprise, and communicate to users that features behind this feature gate can be taken-away or exprience breaking changes any time in future.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enabling Feature","id":"380","title":"Enabling Feature"},"381":{"body":"Serde traits are implemented behind feature gates. Serialize is implemented behind serde-serialize, while Deserialize is implemented behind serde-deserialize. Users must enable the unstable feature to expose those features. We considered giving each feature a dedicated feature gate such as unstable-serde-serialize. In this case, we will need to change the name of feature gates entirely once it leaves the unstable status which will cause users to make changes to their code base. We conclude that this brings no benefit to the users. Furthermore, we considered naming the fature-gate serialize/deserialize. However, this way it would be confusing for the users when we add support for different serialization/deserialization framework such as deser. Thus, to emphasize that the traits is from serde crate, we decided to name it serde-serialize/serde-deserialize","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Feature Gate for Serialization and De-serialization","id":"381","title":"Feature Gate for Serialization and De-serialization"},"382":{"body":"We considered keeping both features behind the same feature gate. There is no significant difference in the complexity of implementation. We do not see any benefit in keeping them behind the same feature gate as this will only increase compile time when users do not need one of the features.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Keeping both features behind the same feature gate","id":"382","title":"Keeping both features behind the same feature gate"},"383":{"body":"We considered implementing different feature gates for output, input, and their corresponding data types. For example, output and input types can have output-serde-* and input-serde-*. We are unable to do this as relevant metadata is not available during the code-gen.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Different feature gates for different data types","id":"383","title":"Different feature gates for different data types"},"384":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Implementation","id":"384","title":"Implementation"},"385":{"body":"aws_smithy_types is a crate that implements smithy's data types. These data types must implement serde traits as well since SDK uses the data types.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Smithy Types","id":"385","title":"Smithy Types"},"386":{"body":"Serialize and Deserialize is not implemented with derive macro. In human-readable format, Blob is serialized as a base64 encoded string and any data to be deserialized as this data type must be encoded in base 64. Encoding must be carried out by base64::encode function available from aws_smithy_types crate. Non-human readable format serializes Blob with fn serialize_bytes. Reason behind the implementation of human-readable format aws_smithy_types crate comes with functions for encoding/decoding base 64, which makes the implementation simpler. Additionally, AWS CLI and AWS SDK for other languages require data to be encoded in base 64 when it requires Blob type as input. We also considered serializing them with serialize_bytes, without encoding them with serialize_bytes. In this case, the implementation will depend on the implementation of the library author. There are many different crates, so we decided to survey how some of the most popular crates implement this feature. library version implementation all-time downloads on crate.io as of writing (Dec 2022) serde_json 1.0 Array of number 109,491,713 toml 0.5.9 Array of number 63,601,994 serde_yaml 0.9.14 Unsupported 23,767,300 First of all, bytes could have hundreds of elements; reading an array of hundreds of numbers will never be a pleasing experience, and it is especially troubling when you are writing data for test cases. Additionally, it has come to our attention that some crates just doesn't support it, which would hinder users' ability to be productive and tie users' hand. For the reasons described above, we believe that it is crucial to encode them to string and base64 is favourable over other encoding schemes such as base 16, 32, or Ascii85. Reason behind the implementation of a non-human readable format We considered using the same logic for non-human readable format as well. However, readable-ness is not necessary for non-human readable format. Additionally, non-human readable format tends to emphasize resource efficiency over human-readable format; Base64 encoded string would take up more space, which is not what the users would want. Thus, we believe that implementing a tailored serialization logic would be beneficial to the users.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Blob","id":"386","title":"Blob"},"387":{"body":"Serialize and Deserialize is not implemented with derive macro. For human-readable format, DateTime is serialized in RFC-3339 format; It expects the value to be in RFC-3339 format when it is Deserialized. Non-human readable implements DateTime as a tuple of u32 and i64; the latter corresponds to seconds field and the first is the seubsecond_nanos. Reason behind the implementation of a human-readable format For serialization, DateTime format already implements a function to encode itself into RFC-3339 format. For deserialization, it is possible to accept other formats, we can add this later if we find it reasonable. Reason behind the implementation of a non-human readable format Serializing them as tuples of two integers results in a smaller data size and requires less computing power than any string-based format. Tuple will be smaller in size as it does not require tagging like in maps.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » DateTime","id":"387","title":"DateTime"},"388":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without tagging thanks to the difference in each variant's datatypes.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Document","id":"388","title":"Document"},"389":{"body":"Serialize and Deserialize is implemented with derive macro. Additionally, it implements container attribute #[serde(untagged)]. Serde can distinguish each variant without a tag as each variant's content is different.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Number","id":"389","title":"Number"},"39":{"body":"Smithy Input : @documentation(\"

    Contains I/O usage metrics...\")\nstructure IOUsage { @documentation(\"... elided\") ReadIOs: ReadIOs, @documentation(\"... elided\") WriteIOs: WriteIOs\n} long ReadIOs long WriteIOs Rust Output : ///

    Contains I/O usage metrics for a command that was invoked.

    \n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct IoUsage { ///

    The number of read I/O requests that the command made.

    pub read_i_os: i64, ///

    The number of write I/O requests that the command made.

    pub write_i_os: i64,\n}\nimpl std::fmt::Debug for IoUsage { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let mut formatter = f.debug_struct(\"IoUsage\"); formatter.field(\"read_i_os\", &self.read_i_os); formatter.field(\"write_i_os\", &self.write_i_os); formatter.finish() }\n}\n/// See [`IoUsage`](crate::model::IoUsage)\npub mod io_usage { /// A builder for [`IoUsage`](crate::model::IoUsage) #[non_exhaustive] #[derive(Debug, Clone, Default)] pub struct Builder { read_i_os: std::option::Option, write_i_os: std::option::Option, } impl Builder { ///

    The number of read I/O requests that the command made.

    pub fn read_i_os(mut self, inp: i64) -> Self { self.read_i_os = Some(inp); self } ///

    The number of read I/O requests that the command made.

    pub fn set_read_i_os(mut self, inp: Option) -> Self { self.read_i_os = inp; self } ///

    The number of write I/O requests that the command made.

    pub fn write_i_os(mut self, inp: i64) -> Self { self.write_i_os = Some(inp); self } ///

    The number of write I/O requests that the command made.

    pub fn set_write_i_os(mut self, inp: Option) -> Self { self.write_i_os = inp; self } /// Consumes the builder and constructs a [`IoUsage`](crate::model::IoUsage) pub fn build(self) -> crate::model::IoUsage { crate::model::IoUsage { read_i_os: self.read_i_os.unwrap_or_default(), write_i_os: self.write_i_os.unwrap_or_default(), } } }\n}\nimpl IoUsage { /// Creates a new builder-style object to manufacture [`IoUsage`](crate::model::IoUsage) pub fn builder() -> crate::model::io_usage::Builder { crate::model::io_usage::Builder::default() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Example Structure Output","id":"39","title":"Example Structure Output"},"390":{"body":"Builder types and non Builder types implement Serialize and Deserialize with derive macro. Example: #[cfg_attr( all(aws-sdk-unstable, feature = \"serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq)]\npub struct UploadPartCopyOutput { ...\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Builder Types and Non-Builder Types","id":"390","title":"Builder Types and Non-Builder Types"},"391":{"body":"serde allows programmers to use one of four different tagging ( internal, external, adjacent, and untagged ) when serializing an enum.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Enum Representation","id":"391","title":"Enum Representation"},"392":{"body":"You cannot deserialize serialized data in some cases. For example, aws_sdk_dynamodb::model::AttributeValue has Null(bool) and Bool(bool), which you cannot distinguish serialized values without a tag.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » untagged","id":"392","title":"untagged"},"393":{"body":"This results in compile time error. Using a #[serde(tag = \"...\")] attribute on an enum containing a tuple variant is an error at compile time .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » internal","id":"393","title":"internal"},"394":{"body":"We are left with external and adjacent tagging. External tagging is the default way. This RFC can be achieved either way. The resulting size of the serialized data is smaller when tagged externally, as adjacent tagging will require a tag even when a variant has no content. For the reasons mentioned above, we implement an enum that is externally tagged.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » external and adjacent","id":"394","title":"external and adjacent"},"395":{"body":"We are going to skip serialization and deserialization of fields that have the datatype that corresponds to @streaming blob from smithy. Any fields with these data types are tagged with #[serde(skip)]. By skipping, corresponding field's value will be assigned the value generated by Default trait. As of writing, aws_smithy_http::byte_stream::ByteStream is the only data type that is affected by this decision. Here is an example of data types affected by this decision: aws_sdk_s3::input::put_object_input::PutObjectInput We considered serializing them as bytes, however, it could take some time for a stream to reach the end, and the resulting serialized data may be too big for itself to fit into the ram. Here is an example snippet. #[allow(missing_docs)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-serialize\"), derive(serde::Serialize)\n)]\n#[cfg_attr( all(aws-sdk-unstable, feature = \"serde-deserialize\"), derive(serde::Deserialize)\n)]\n#[non_exhaustive]\n#[derive(std::fmt::Debug)]\npub struct PutObjectInput { pub acl: std::option::Option, pub body: aws_smithy_http::byte_stream::ByteStream, // ... other fields\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data Types to Skip Serialization/Deserialization","id":"395","title":"Data Types to Skip Serialization/Deserialization"},"396":{"body":"For data types that include @streaming union in any of their fields, we do NOT implement serde traits. As of writing, following Rust data types corresponds to @streaming union. aws_smithy_http::event_stream::Receiver aws_smithy_http::event_stream::EventStreamSender Here is an example of data type affected by this decision; aws_sdk_transcribestreaming::client::fluent_builders::StartMedicalStreamTranscription We considered skipping relevant fields on serialization and creating a custom de-serialization function which creates event stream that will always result in error when a user tries to send/receive data. However, we believe that our decision is justified for following reason. All for operations that feature event streams since the stream is ephemeral (tied to the HTTP connection), and is effectively unusable after serialization and deserialization Most event stream operations don't have fields that go along with them, making the stream the sole component in them, which makes ser/de not so useful SDK that uses event stream, such as aws-sdk-transcribestreaming only has just over 5000 all-time downloads with recent downloads of just under 1000 as of writing (2023/01/21); It makes it difficult to justify since the implementation impacts smaller number of people.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Data types to exclude from ser/de code generation","id":"396","title":"Data types to exclude from ser/de code generation"},"397":{"body":"Output data, such as aws_sdk_dynamodb::output::UpdateTableOutput has builder types. These builder types are available to users, however, no API requires users to build data types by themselves. We considered removing traits from these data types. Removing serde traits on these types will help reduce compile time, however, builder type can be useful, for example, for testing. We have prepared examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Serde traits implemented on Builder of Output Types","id":"397","title":"Serde traits implemented on Builder of Output Types"},"398":{"body":"Currently, to set the value to fluent builders, users must call setter methods for each field. SDK does not have a method that allows users to use deserialized Input. Thus, we add a new method fn set_fields to Client types. This method accepts inputs and replaces all parameters that Client has with the new one. pub fn set_fields(mut self, input_type: path::to::input_type) -> path::to::input_type { self.inner = input_type; self\n} Users can use fn set_fields to replace the parameters in fluent builders. You can find examples here .","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » fn set_fields to allow users to use externally created Input","id":"398","title":"fn set_fields to allow users to use externally created Input"},"399":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Other Concerns","id":"399","title":"Other Concerns"},"4":{"body":"The Rust SDK is code generated from Smithy models, using Smithy codegeneration utilities. The Code generation is written in Kotlin. More details can be found in the Smithy section.","breadcrumbs":"Design Overview » Code Generation","id":"4","title":"Code Generation"},"40":{"body":"Smithy Union is modeled as enum in Rust. Generated enums must be marked #[non_exhaustive]. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue . Union members (enum variants) are not nullable, because Smithy union members cannot contain null values. When union members contain references to other shapes, we generate a wrapping variant (see below). Union members do not require #[non_exhaustive], because changing the shape targeted by a union member is not backwards compatible. is_variant and as_variant helper functions are generated to improve ergonomics.","breadcrumbs":"Smithy » Aggregate Shapes » Union","id":"40","title":"Union"},"400":{"body":"SDK will introduce new fields and we may see new data types in the future. We believe that this will not be a problem.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Model evolution","id":"400","title":"Model evolution"},"401":{"body":"Most fields are Option type. When the user de-serializes data written for a format before the new fields were introduced, new fields will be assigned with None type. If a field isn't Option, serde uses Default trait unless a custom de-serialization/serialization is specified to generate data to fill the field. If the new field is not an Option type and has no Default implementation, we must implement a custom de-serialization logic. In the case of serialization, the introduction of new fields will not be an issue unless the data format requires a schema. (e.g. parquet, avro) However, this is outside the scope of this RFC.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Fields","id":"401","title":"Introduction of New Fields"},"402":{"body":"If a new field introduces a new data type, it will not require any additional work if the data type can derive serde traits. If the data cannot derive serde traits on its own, then we have two options. To clarify, this is the same approach we took on Data Type to skip section. skip We will simply skip serializing/de-serializing. However, we may need to implement custom serialization/de-serialization logic if a value is not wrapped with Option. custom serialization/de-serialization logic We can implement tailored serialization/de-serialization logic. Either way, we will mention this on the generated docs to avoid surprising users. e.g. #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV1 { string_field: Option\n} #[derive(serde::Serialize, serde::Deserialize)]\nstruct OutputV2 { string_field: Option, // this will always be treated as None value by serde #[serde(skip)] skip_not_serializable: Option, // We can implement a custom serialization logic #[serde(serialize_with = \"custom_serilization_logic\", deserialize_with = \"custom_deserilization_logic\")] not_derive_able: SomeComplexDataType, // Serialization will be skipped, and de-serialization will be handled with the function provided on default tag #[serde(skip, default = \"default_value\")] skip_with_custom: DataTypeWithoutDefaultTrait,\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Introduction of New Data Type","id":"402","title":"Introduction of New Data Type"},"403":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Discussions","id":"403","title":"Discussions"},"404":{"body":"If serialized data contains sensitive information, it will not be masked. We mention that fields can compromise such information on every struct field to ensure that users know this.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Sensitive Information","id":"404","title":"Sensitive Information"},"405":{"body":"We ran the following benchmark on C6a.2xlarge instance with 50gb of GP2 SSD. The commit hash of the code is a8e2e19129aead4fbc8cf0e3d34df0188a62de9f. It clearly shows an increase in compile time. Users are advised to consider the use of software such as sccache or mold to reduce the compile time. aws-sdk-dynamodb when compiled with debug profile command real time user time sys time cargo build 0m35.728s 2m24.243s 0m11.868s cargo build --features unstable-serde-serialize 0m38.079s 2m26.082s 0m11.631s cargo build --features unstable-serde-deserialize 0m45.689s 2m34.000s 0m11.978s cargo build --all-features 0m48.959s 2m45.688s 0m13.359s when compiled with release profile command real time user time sys time cargo build --release 0m52.040s 5m0.841s 0m11.313s cargo build --release --features unstable-serde-serialize 0m53.153s 5m4.069s 0m11.577s cargo build --release --features unstable-serde-deserialize 1m0.107s 5m10.231s 0m11.699s cargo build --release --all-features 1m3.198s 5m26.076s 0m12.311s aws-sdk-ec2 when compiled with debug profile command real time user time sys time cargo build 1m20.041s 2m14.592s 0m6.611s cargo build --features unstable-serde-serialize 2m0.555s 4m24.881s 0m16.131s cargo build --features unstable-serde-deserialize 3m10.857s 5m34.246s 0m18.844s cargo build --all-features 3m31.473s 6m1.052s 0m19.681s when compiled with release profile command real time user time sys time cargo build --release 2m29.480s 9m19.530s 0m15.957s cargo build --release --features unstable-serde-serialize 2m45.002s 9m43.098s 0m16.886s cargo build --release --features unstable-serde-deserialize 3m47.531s 10m52.017s 0m18.404s cargo build --release --all-features 3m45.208s 8m46.168s 0m10.211s","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Compile Time","id":"405","title":"Compile Time"},"406":{"body":"SDK team previously expressed concern that serialized data may be misleading. We believe that features implemented as part of this RFC do not produce a misleading result as we focus on builder types and it's corresponding data types which are mapped to serde's data type model with the derive macro.","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Misleading Results","id":"406","title":"Misleading Results"},"407":{"body":"","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Appendix","id":"407","title":"Appendix"},"408":{"body":"use aws_sdk_dynamodb::{Client, Error}; async fn example(read_builder: bool) -> Result<(), Error> { // getting the client let shared_config = aws_config::load_from_env().await; let client = Client::new(&shared_config); // de-serializing input's builder types and input types from json let deserialized_input = if read_builder { let mut parameter: aws_sdk_dynamodb::input::list_tables_input::Builder = serde_json::from_str(include_str!(\"./builder.json\")); parameter.set_exclusive_start_table_name(\"some_name\").build() } else { let input: aws_sdk_dynamodb::input::ListTablesInput = serde_json::from_str(include_str!(\"./input.json\")); input }; // sending request using the deserialized input let res = client.list_tables().set_fields(deserialized_input).send().await?; println!(\"DynamoDB tables: {:?}\", res.table_names); let out: aws_sdk_dynamodb::output::ListTablesOutput = { // say you want some of the field to have certain values let mut out_builder: aws_sdk_dynamodb::output::list_tables_output::Builder = serde_json::from_str(r#\" { table_names: [ \"table1\", \"table2\" ] } \"#); // but you don't really care about some other values out_builder.set_last_evaluated_table_name(res.last_evaluated_table_name()).build() }; assert_eq!(res, out); // serializing json output let json_output = serde_json::to_string(res).unwrap(); // you can save the serialized input println!(json_output); Ok(())\n}","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Use Case Examples","id":"408","title":"Use Case Examples"},"409":{"body":"Implement human-redable serialization for DateTime and Blob in aws_smithy_types Implement non-human-redable serialization for DateTime and Blob in aws_smithy_types Implement Serialize and Deserialize for relevant data types in aws_smithy_types Modify Kotlin's codegen so that generated Builder and non-Builder types implement Serialize and Deserialize Add feature gate for Serialize and Deserialize Prepare examples Prepare reproducible compile time benchmark","breadcrumbs":"RFCs » RFC-0030: Serialization And Deserialization » Changes checklist","id":"409","title":"Changes checklist"},"41":{"body":"The union generated for a simplified dynamodb::AttributeValue Smithy : namespace test union AttributeValue { @documentation(\"A string value\") string: String, bool: Boolean, bools: BoolList, map: ValueMap\n} map ValueMap { key: String, value: AttributeValue\n} list BoolList { member: Boolean\n} Rust : #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { /// a string value String(std::string::String), Bool(bool), Bools(std::vec::Vec), Map(std::collections::HashMap),\n} impl AttributeValue { pub fn as_bool(&self) -> Result<&bool, &crate::model::AttributeValue> { if let AttributeValue::Bool(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bool(&self) -> bool { self.as_bool().is_some() } pub fn as_bools(&self) -> Result<&std::vec::Vec, &crate::model::AttributeValue> { if let AttributeValue::Bools(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_bools(&self) -> bool { self.as_bools().is_some() } pub fn as_map(&self) -> Result<&std::collections::HashMap, &crate::model::AttributeValue> { if let AttributeValue::Map(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_map(&self) -> bool { self.as_map().is_some() } pub fn as_string(&self) -> Result<&std::string::String, &crate::model::AttributeValue> { if let AttributeValue::String(val) = &self { Ok(&val) } else { Err(self) } } pub fn is_string(&self) -> bool { self.as_string().is_some() }\n}","breadcrumbs":"Smithy » Aggregate Shapes » Generated Union Example","id":"41","title":"Generated Union Example"},"410":{"body":"Status: Implemented in smithy-rs#2246 Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a fallback mechanism for credentials providers on external timeout (see the Terminology section), allowing them to continue serving (possibly expired) credentials for the sake of overall reliability of the intended service; The IMDS credentials provider is an example that must fulfill such a requirement to support static stability.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » RFC: Providing fallback credentials on external timeout","id":"410","title":"RFC: Providing fallback credentials on external timeout"},"411":{"body":"External timeout: The name of the timeout that occurs when a duration elapses before an async call to provide_credentials returns. In this case, provide_credentials returns no credentials. Internal timeout: The name of the timeout that occurs when a duration elapses before an async call to some function, inside the implementation of provide_credentials, returns. Examples include connection timeouts, TLS negotiation timeouts, and HTTP request timeouts. Implementations of provide_credentials may handle these failures at their own discretion e.g. by returning (possibly expired) credentials or a CredentialsError. Static stability: Continued availability of a service in the face of impaired dependencies.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Terminology","id":"411","title":"Terminology"},"412":{"body":"This RFC is concerned only with external timeouts, as the cost of poor API design is much higher in this case than for internal timeouts. The former will affect a public trait implemented by all credentials providers whereas the latter can be handled locally by individual credentials providers without affecting one another.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Assumption","id":"412","title":"Assumption"},"413":{"body":"We have mentioned static stability. Supporting it calls for the following functional requirement, among others: REQ 1: Once a credentials provider has served credentials, it should continue serving them in the event of a timeout (whether internal or external) while obtaining refreshed credentials. Today, we have the following trait method to obtain credentials: fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a>\nwhere Self: 'a, This method returns a future, which can be raced against a timeout future as demonstrated by the following code snippet from LazyCredentialsCache: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| async move { let credentials = future.await.map_err(|_err| { CredentialsError::provider_timed_out(load_timeout) })??; // --snip-- }).await;\n// --snip-- This creates an external timeout for provide_credentials. If timeout_future wins the race, a future for provide_credentials gets dropped, timeout_future returns an error, and the error is mapped to CredentialsError::ProviderTimedOut and returned. This makes it impossible for the variable provider above to serve credentials as stated in REQ 1. A more complex use case involves CredentialsProviderChain. It is a manifestation of the chain of responsibility pattern and keeps calling the provide_credentials method on each credentials provider down the chain until credentials are returned by one of them. In addition to REQ 1, we have the following functional requirement with respect to CredentialsProviderChain: REQ 2: Once a credentials provider in the chain has returned credentials, it should continue serving them even in the event of a timeout (whether internal or external) without falling back to another credentials provider. Referring back to the code snippet above, we analyze two relevant cases (and suppose provider 2 below must meet REQ 1 and REQ 2 in each case): Case 1: Provider 2 successfully loaded credentials but later failed to do so because an external timeout kicked in. The figure above illustrates an example. This CredentialsProviderChain consists of three credentials providers. When CredentialsProviderChain::provide_credentials is called, provider 1's provide_credentials is called but does not find credentials so passes the torch to provider 2, which in turn successfully loads credentials and returns them. The next time the method is called, provider 1 does not find credentials but neither does provider 2 this time, because an external timeout by timeout_future given to the whole chain kicked in and the future is dropped while provider 2's provide_credentials was running. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns a CredentialsError::ProviderTimedOut instead. Case 2: Provider 2 successfully loaded credentials but later was not reached because its preceding provider was still running when an external timeout kicked in. The figure above illustrates an example with the same setting as the previous figure. Again, when CredentialsProviderChain::provide_credentials is called the first time, provider 1 does not find credentials but provider 2 does. The next time the method is called, provider 1 is still executing provide_credentials and then an external timeout by timeout_future kicked in. Consequently, the execution of CredentialsProviderChain::provide_credentials has been terminated. Given the functional requirements, provider 2 should return the previously available credentials but today the code snippet from LazyCredentialsCache returns CredentialsError::ProviderTimedOut instead.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Problem","id":"413","title":"Problem"},"414":{"body":"To address the problem in the previous section, we propose to add a new method to the ProvideCredentials trait called fallback_on_interrupt. This method allows credentials providers to have a fallback mechanism on an external timeout and to serve credentials to users if needed. There are two options as to how it is implemented, either as a synchronous primitive or as an asynchronous primitive. Option A: Synchronous primitive pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt(&self) -> Option { None }\n} :+1: Users can be guided to use only synchronous primitives when implementing fallback_on_interrupt. :-1: It cannot support cases where fallback credentials are asynchronously retrieved. :-1: It may turn into a blocking operation if it takes longer than it should. Option B: Asynchronous primitive mod future { // --snip-- // This cannot use `OnlyReady` in place of `BoxFuture` because // when a chain of credentials providers implements its own // `fallback_on_interrupt`, it needs to await fallback credentials // in its inner providers. Thus, `BoxFuture` is required. pub struct FallbackOnInterrupt<'a>(NowOrLater, BoxFuture<'a, Option>>); // impls for FallbackOnInterrupt similar to those for the ProvideCredentials future newtype\n} pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- fn fallback_on_interrupt<'a>(&'a self) -> future::FallbackOnInterrupt<'a> { future::FallbackOnInterrupt::ready(None) }\n} :+1: It is async from the beginning, so less likely to introduce a breaking change. :-1: We may have to consider yet another timeout for fallback_on_interrupt itself. Option A cannot be reversible in the future if we are to support the use case for asynchronously retrieving the fallback credentials, whereas option B allows us to continue supporting both ready and pending futures when retrieving the fallback credentials. However, fallback_on_interrupt is supposed to return credentials that have been set aside in case provide_credentials is timed out. To express that intent, we choose option A and document that users should NOT go fetch new credentials in fallback_on_interrupt. The user experience for the code snippet in question will look like this once this proposal is implemented: let timeout_future = self.sleeper.sleep(self.load_timeout); // by default self.load_timeout is 5 seconds.\n// --snip--\nlet future = Timeout::new(provider.provide_credentials(), timeout_future);\nlet result = cache .get_or_load(|| { async move { let credentials = match future.await { Ok(creds) => creds?, Err(_err) => match provider.fallback_on_interrupt() { // can provide fallback credentials Some(creds) => creds, None => return Err(CredentialsError::provider_timed_out(load_timeout)), } }; // --snip-- } }).await;\n// --snip--","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Proposal","id":"414","title":"Proposal"},"415":{"body":"Almost all credentials providers do not have to implement their own fallback_on_interrupt except for CredentialsProviderChain (ImdsCredentialsProvider also needs to implement fallback_on_interrupt when we are adding static stability support to it but that is outside the scope of this RFC). Considering the two cases we analyzed above, implementing CredentialsProviderChain::fallback_on_interrupt is not so straightforward. Keeping track of whose turn in the chain it is to call provide_credentials when an external timeout has occurred is a challenging task. Even if we figured it out, that would still not satisfy Case 2 above, because it was provider 1 that was actively running when the external timeout kicked in, but the chain should return credentials from provider 2, not from provider 1. With that in mind, consider instead the following approach: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn fallback_on_interrupt(&self) -> Option { { for (_, provider) in &self.providers { match provider.fallback_on_interrupt() { creds @ Some(_) => return creds, None => {} } } None }\n} CredentialsProviderChain::fallback_on_interrupt will invoke each provider's fallback_on_interrupt method until credentials are returned by one of them. It ensures that the updated code snippet for LazyCredentialsCache can return credentials from provider 2 in both Case 1 and Case 2. Even if timeout_future wins the race, the execution subsequently calls provider.fallback_on_interrupt() to obtain fallback credentials from provider 2, assuming provider 2's fallback_on_interrupt is implemented to return fallback credentials accordingly. The downside of this simple approach is that the behavior is not clear if more than one credentials provider in the chain can return credentials from their fallback_on_interrupt. Note, however, that it is the exception rather than the norm for a provider's fallback_on_interrupt to return fallback credentials, at least at the time of writing (01/13/2023). The fact that it returns fallback credentials means that the provider successfully loaded credentials at least once, and it usually continues serving credentials on subsequent calls to provide_credentials. Should we have more than one provider in the chain that can potentially return fallback credentials from fallback_on_interrupt, we could configure the behavior of CredentialsProviderChain managing in what order and how each fallback_on_interrupt should be executed. See the Possible enhancement section for more details. The use case described there is an extreme edge case, but it's worth exploring what options are available to us with the proposed design.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » How to actually implement this RFC","id":"415","title":"How to actually implement this RFC"},"416":{"body":"In this section, we will describe an alternative approach that we ended up dismissing as unworkable. Instead of fallback_on_interrupt, we considered the following method to be added to the ProvideCredentials trait: pub trait ProvideCredentials: Send + Sync + std::fmt::Debug { // --snip-- /// Returns a future that provides credentials within the given `timeout`. /// /// The default implementation races `provide_credentials` against /// a timeout future created from `timeout`. fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { let timeout_future = sleeper.sleep(timeout); let future = Timeout::new(self.provide_credentials(), timeout_future); future::ProvideCredentials::new(async move { let credentials = future .await .map_err(|_err| CredentialsError::provider_timed_out(timeout))?; credentials }) } provide_credentials_with_timeout encapsulated the timeout race and allowed users to specify how long the external timeout for provide_credentials would be. The code snippet from LazyCredentialsCache then looked like let sleeper = Arc::clone(&self.sleeper);\nlet load_timeout = self.load_timeout; // by default self.load_timeout is 5 seconds.\n// --snip--\nlet result = cache .get_or_load(|| { async move { let credentials = provider .provide_credentials_with_timeout(sleeper, load_timeout) .await?; // --snip-- } }).await;\n// --snip-- However, implementing CredentialsProviderChain::provide_credentials_with_timeout quickly ran into the following problem: impl ProvideCredentials for CredentialsProviderChain { // --snip-- fn provide_credentials_with_timeout<'a>( &'a self, sleeper: Arc, timeout: Duration, ) -> future::ProvideCredentials<'a> where Self: 'a, { future::ProvideCredentials::new(self.credentials_with_timeout(sleeper, timeout)) }\n} impl CredentialsProviderChain { // --snip-- async fn credentials_with_timeout( &self, sleeper: Arc, timeout: Duration, ) -> provider::Result { for (_, provider) in &self.providers { match provider .provide_credentials_with_timeout(Arc::clone(&sleeper), /* how do we calculate timeout for each provider ? */) .await { Ok(credentials) => { return Ok(credentials); } Err(CredentialsError::ProviderTimedOut(_)) => { // --snip-- } Err(err) => { // --snip-- } } } Err(CredentialsError::provider_timed_out(timeout)) } There are mainly two problems with this approach. The first problem is that as shown above, there is no sensible way to calculate a timeout for each provider in the chain. The second problem is that exposing a parameter like timeout at a public trait's level is giving too much control to users; delegating overall timeout to the individual provider means each provider has to get it right.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Alternative","id":"416","title":"Alternative"},"417":{"body":"Add fallback_on_interrupt method to the ProvideCredentials trait with the default implementation Implement CredentialsProviderChain::fallback_on_interrupt Implement DefaultCredentialsChain::fallback_on_interrupt Add unit tests for Case 1 and Case 2","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Changes checklist","id":"417","title":"Changes checklist"},"418":{"body":"We will describe how to customize the behavior for CredentialsProviderChain::fallback_on_interrupt. We are only demonstrating how much the proposed design can be extended and currently do not have concrete use cases to implement using what we present in this section. As described in the Proposal section, CredentialsProviderChain::fallback_on_interrupt traverses the chain from the head to the tail and returns the first fallback credentials found. This precedence policy works most of the time, but when we have more than one provider in the chain that can potentially return fallback credentials, it could break in the following edge case (we are still basing our discussion on the code snippet from LazyCredentialsCache but forget REQ 1 and REQ 2 for the sake of simplicity). During the first call to CredentialsProviderChain::provide_credentials, provider 1 fails to load credentials, maybe due to an internal timeout, and then provider 2 succeeds in loading its credentials (call them credentials 2) and internally stores them for Provider2::fallback_on_interrupt to return them subsequently. During the second call, provider 1 succeeds in loading credentials (call them credentials 1) and internally stores them for Provider1::fallback_on_interrupt to return them subsequently. Suppose, however, that credentials 1's expiry is earlier than credentials 2's expiry. Finally, during the third call, CredentialsProviderChain::provide_credentials did not complete due to an external timeout. CredentialsProviderChain::fallback_on_interrupt then returns credentials 1, when it should return credentials 2 whose expiry is later, because of the precedence policy. This a case where CredentialsProviderChain::fallback_on_interrupt requires the recency policy for fallback credentials found in provider 1 and provider 2, not the precedence policy. The following figure shows how we can set up such a chain: The outermost chain is a CredentialsProviderChain and follows the precedence policy for fallback_on_interrupt. It contains a sub-chain that, in turn, contains provider 1 and provider 2. This sub-chain implements its own fallback_on_interrupt to realize the recency policy for fallback credentials found in provider 1 and provider 2. Conceptually, we have pub struct FallbackRecencyChain { provider_chain: CredentialsProviderChain,\n} impl ProvideCredentials for FallbackRecencyChain { fn provide_credentials<'a>(&'a self) -> future::ProvideCredentials<'a> where Self: 'a, { // Can follow the precedence policy for loading credentials // if it chooses to do so. } fn fallback_on_interrupt(&self) -> Option { // Iterate over `self.provider_chain` and return // fallback credentials whose expiry is the most recent. }\n} We can then compose the entire chain like so: let provider_1 = /* ... */\nlet provider_2 = /* ... */\nlet provider_3 = /* ... */ let sub_chain = CredentialsProviderChain::first_try(\"Provider1\", provider_1) .or_else(\"Provider2\", provider_2); let recency_chain = /* Create a FallbackRecencyChain with sub_chain */ let final_chain = CredentialsProviderChain::first_try(\"fallback_recency\", recency_chain) .or_else(\"Provider3\", provider_3); The fallback_on_interrupt method on final_chain still traverses from the head to the tail, but once it hits recency_chain, fallback_on_interrupt on recency_chain respects the expiry of fallback credentials found in its inner providers. What we have presented in this section can be generalized thanks to chain composability. We could have different sub-chains, each implementing its own policy for fallback_on_interrupt.","breadcrumbs":"RFCs » RFC-0031: Providing Fallback Credentials on Timeout » Possible enhancement","id":"418","title":"Possible enhancement"},"419":{"body":"Status: Accepted Applies to: server During and after the design and the core implementation of constraint traits in the server SDK, some problems relating to constraint violations were identified. This RFC sets out to explain and address three of them: impossible constraint violations , collecting constraint violations , and \"tightness\" of constraint violations . The RFC explains each of them in turn, solving them in an iterative and pedagogical manner, i.e. the solution of a problem depends on the previous ones having been solved with their proposed solutions. The three problems are meant to be addressed atomically in one changeset (see the Checklist ) section. Note: code snippets from generated SDKs in this document are abridged so as to be didactic and relevant to the point being made. They are accurate with regards to commit 2226fe .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » RFC: Better Constraint Violations","id":"419","title":"RFC: Better Constraint Violations"},"42":{"body":"","breadcrumbs":"Smithy » Endpoint Resolution » Endpoint Resolution","id":"42","title":"Endpoint Resolution"},"420":{"body":"The design and the description of the PR where the core implementation of constraint traits was made are recommended prior reading to understand this RFC. Shape closure : the set of shapes a shape can \"reach\", including itself. Transitively constrained shape : a shape whose closure includes: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape ; or an intEnum shape . A directly constrained shape is any of these: a shape with a constraint trait attached, a (member) shape with a required trait attached, an enum shape , an intEnum shape ; or a structure shape with at least one required member shape. Constrained type : the Rust type a constrained shape gets rendered as. For shapes that are not structure, union, enum or intEnum shapes, these are wrapper newtype s. In the absence of a qualifier, \"constrained shape\" should be interpreted as \"transitively constrained shape\".","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Terminology","id":"420","title":"Terminology"},"421":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Impossible constraint violations","id":"421","title":"Impossible constraint violations"},"422":{"body":"A constrained type has a fallible constructor by virtue of it implementing the TryFrom trait. The error type this constructor may yield is known as a constraint violation : impl TryFrom for ConstrainedType { type Error = ConstraintViolation; fn try_from(value: UnconstrainedType) -> Result { ... }\n} The ConstraintViolation type is a Rust enum with one variant per way \"constraining\" the input value may fail. So, for example, the following Smithy model: structure A { @required member: String,\n} Yields: /// See [`A`](crate::model::A).\npub mod a { #[derive(std::cmp::PartialEq, std::fmt::Debug)] /// Holds one variant for each of the ways the builder can fail. pub enum ConstraintViolation { /// `member` was not provided but it is required when building `A`. MissingMember, }\n} Constraint violations are always Rust enums, even if they only have one variant. Constraint violations can occur in application code: use my_server_sdk::model let res = model::a::Builder::default().build(); // We forgot to set `member`. match res { Ok(a) => { ... }, Err(e) => { assert_eq!(model::a::ConstraintViolation::MissingMember, e); }\n}","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"422","title":"Background"},"423":{"body":"Currently, the constraint violation types we generate are used by both : the server framework upon request deserialization; and by users in application code. However, the kinds of constraint violations that can occur in application code can sometimes be a strict subset of those that can occur during request deserialization. Consider the following model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString This produces: pub struct LengthMap( pub(crate) std::collections::HashMap,\n); impl std::convert::TryFrom< std::collections::HashMap, > for LengthMap\n{ type Error = crate::model::length_map::ConstraintViolation; /// Constructs a `LengthMap` from an /// [`std::collections::HashMap`], failing when the provided value does not /// satisfy the modeled constraints. fn try_from( value: std::collections::HashMap, ) -> Result { let length = value.len(); if (1..=69).contains(&length) { Ok(Self(value)) } else { Err(crate::model::length_map::ConstraintViolation::Length(length)) } }\n} pub mod length_map { pub enum ConstraintViolation { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), } ...\n} Observe how the ConstraintViolation::Value variant is never constructed. Indeed, this variant is impossible to be constructed in application code : a user has to provide a map whose values are already constrained LengthStrings to the try_from constructor, which only enforces the map's @length trait. The reason why these seemingly \"impossible violations\" are being generated is because they can arise during request deserialization. Indeed, the server framework deserializes requests into fully unconstrained types . These are types holding unconstrained types all the way through their closures. For instance, in the case of structure shapes, builder types (the unconstrained type corresponding to the structure shape) hold builders all the way down. In the case of the above model, below is the alternate pub(crate) constructor the server framework uses upon deserialization. Observe how LengthMapOfLengthStringsUnconstrained is fully unconstrained and how the try_from constructor can yield ConstraintViolation::Value. pub(crate) mod length_map_of_length_strings_unconstrained { #[derive(Debug, Clone)] pub(crate) struct LengthMapOfLengthStringsUnconstrained( pub(crate) std::collections::HashMap, ); impl std::convert::TryFrom for crate::model::LengthMapOfLengthStrings { type Error = crate::model::length_map_of_length_strings::ConstraintViolation; fn try_from(value: LengthMapOfLengthStringsUnconstrained) -> Result { let res: Result< std::collections::HashMap, Self::Error, > = value .0 .into_iter() .map(|(k, v)| { let v: crate::model::LengthString = k.try_into().map_err(Self::Error::Key)?; Ok((k, v)) }) .collect(); let hm = res?; Self::try_from(hm) } }\n} In conclusion, the user is currently exposed to an internal detail of how the framework operates that has no bearing on their application code. They shouldn't be exposed to impossible constraint violation variants in their Rust docs, nor have to match on these variants when handling errors. Note: this comment alludes to the problem described above.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"423","title":"Problem"},"424":{"body":"The problem can be mitigated by adding #[doc(hidden)] to the internal variants and #[non_exhaustive] to the enum. We're already doing this in some constraint violation types. However, a \"less leaky\" solution is achieved by splitting the constraint violation type into two types, which this RFC proposes: one for use by the framework, with pub(crate) visibility, named ConstraintViolationException; and one for use by user application code, with pub visibility, named ConstraintViolation. pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolation, ), }\n} Note that, to some extent, the spirit of this approach is already currently present in the case of builder types when publicConstrainedTypes is set to false: ServerBuilderGenerator.kt renders the usual builder type that enforces constraint traits, setting its visibility to pub (crate), for exclusive use by the framework. ServerBuilderGeneratorWithoutPublicConstrainedTypes.kt renders the builder type the user is exposed to: this builder does not take in constrained types and does not enforce all modeled constraints.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"424","title":"Solution proposal"},"425":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Collecting constraint violations","id":"425","title":"Collecting constraint violations"},"426":{"body":"Constrained operations are currently required to have smithy.framework#ValidationException as a member in their errors property . This is the shape that is rendered in responses when a request contains data that violates the modeled constraints. The shape is defined in the smithy-validation-model Maven package, as follows : $version: \"2.0\" namespace smithy.framework /// A standard error for input validation failures.\n/// This should be thrown by services when a member of the input structure\n/// falls outside of the modeled or documented constraints.\n@error(\"client\")\nstructure ValidationException { /// A summary of the validation failure. @required message: String, /// A list of specific failures encountered while validating the input. /// A member can appear in this list more than once if it failed to satisfy multiple constraints. fieldList: ValidationExceptionFieldList\n} /// Describes one specific validation failure for an input member.\nstructure ValidationExceptionField { /// A JSONPointer expression to the structure member whose value failed to satisfy the modeled constraints. @required path: String, /// A detailed description of the validation failure. @required message: String\n} list ValidationExceptionFieldList { member: ValidationExceptionField\n} It was mentioned in the constraint traits RFC , and implicit in the definition of Smithy's smithy.framework.ValidationException shape, that server frameworks should respond with a complete collection of errors encountered during constraint trait enforcement to the client.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Background","id":"426","title":"Background"},"427":{"body":"As of writing, the TryFrom constructor of constrained types whose shapes have more than one constraint trait attached can only yield a single error. For example, the following shape: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString Yields: pub struct LengthPatternString(pub(crate) std::string::String); impl LengthPatternString { fn check_length( string: &str, ) -> Result<(), crate::model::length_pattern_string::ConstraintViolation> { let length = string.chars().count(); if (5..=10).contains(&length) { Ok(()) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Length(length)) } } fn check_pattern( string: String, ) -> Result { let regex = Self::compile_regex(); if regex.is_match(&string) { Ok(string) } else { Err(crate::model::length_pattern_string::ConstraintViolation::Pattern(string)) } } pub fn compile_regex() -> &'static regex::Regex { static REGEX: once_cell::sync::Lazy = once_cell::sync::Lazy::new(|| { regex::Regex::new(r#\"[a-f0-5]*\"#).expect(r#\"The regular expression [a-f0-5]* is not supported by the `regex` crate; feel free to file an issue under https://github.com/smithy-lang/smithy-rs/issues for support\"#) }); ®EX }\n} impl std::convert::TryFrom for LengthPatternString { type Error = crate::model::length_pattern_string::ConstraintViolation; /// Constructs a `LengthPatternString` from an [`std::string::String`], /// failing when the provided value does not satisfy the modeled constraints. fn try_from(value: std::string::String) -> Result { Self::check_length(&value)?; let value = Self::check_pattern(value)?; Ok(Self(value)) }\n} Observe how a failure to adhere to the @length trait will short-circuit the evaluation of the constructor, when the value could technically also not adhere with the @pattern trait. Similarly, constrained structures fail upon encountering the first member that violates a constraint. Additionally, in framework request deserialization code : collections whose members are constrained fail upon encountering the first member that violates the constraint, maps whose keys and/or values are constrained fail upon encountering the first violation; and structures whose members are constrained fail upon encountering the first member that violates the constraint, In summary, any shape that is transitively constrained yields types whose constructors (both the internal one and the user-facing one) currently short-circuit upon encountering the first violation.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"427","title":"Problem"},"428":{"body":"The deserializing architecture lends itself to be easily refactored so that we can collect constraint violations before returning them. Indeed, note that deserializers enforce constraint traits in a two-step phase: first, the entirety of the unconstrained value is deserialized, then constraint traits are enforced by feeding the entire value to the TryFrom constructor. Let's consider a ConstraintViolations type (note the plural) that represents a collection of constraint violations that can occur within user application code . Roughly: pub ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} The main reason for wrapping a vector in ConstraintViolations as opposed to directly returning the vector is forwards-compatibility: we may want to expand ConstraintViolations with conveniences. If the constrained type can only ever yield a single violation, we will dispense with ConstraintViolations and keep directly returning the crate::model::shape_name::ConstraintViolation type. We will analogously introduce a ConstraintViolationExceptions type that represents a collection of constraint violations that can occur within the framework's request deserialization code . This type will be pub(crate) and will be the one the framework will map to Smithy's ValidationException that eventually gets serialized into the response. Collecting constraint violations may constitute a DOS attack vector This is a problem that already exists as of writing, but that collecting constraint violations highlights, so it is a good opportunity, from a pedagogical perspective, to explain it here. Consider the following model: @length(max: 3)\nlist ListOfPatternStrings { member: PatternString\n} @pattern(\"expensive regex to evaluate\")\nstring PatternString Our implementation currently enforces constraints from the leaf to the root : when enforcing the @length constraint, the TryFrom constructor the server framework uses gets a Vec and first checks the members adhere to the @pattern trait, and only after is the @length trait checked. This means that if a client sends a request with n >>> 3 list members, the expensive check runs n times, when a constant-time check inspecting the length of the input vector would have sufficed to reject the request. Additionally, we may want to avoid serializing n ValidationExceptionFields due to performance concerns. A possibility to circumvent this is making the @length validator special, having it bound the other validators via effectively permuting the order of the checks and thus short-circuiting. In general, it's unclear what constraint traits should cause short-circuiting. A probably reasonable rule of thumb is to include traits that can be attached directly to aggregate shapes: as of writing, that would be @uniqueItems on list shapes and @length on list shapes. Another possiblity is to do nothing and value complete validation exception response messages over trying to mitigate this with special handling. One could argue that these kind of DOS attack vectors should be taken care of with a separate solution e.g. a layer that bounds a request body's size to a reasonable default (see how Axum added this ). We will provide a similar request body limiting mechanism regardless. This RFC advocates for implementing the first option, arguing that it's fair to say that the framework should return an error that is as informative as possible, but it doesn't necessarily have to be complete . However, we will also write a layer, applied by default to all server SDKs, that bounds a request body's size to a reasonable (yet high) default. Relying on users to manually apply the layer is dangerous, since such a configuration is trivially exploitable . Users can always manually apply the layer again to their resulting service if they want to further restrict a request's body size.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Solution proposal","id":"428","title":"Solution proposal"},"429":{"body":"","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » \"Tightness\" of constraint violations","id":"429","title":"\"Tightness\" of constraint violations"},"43":{"body":"The core codegen generates HTTP requests that do not contain an authority, scheme or post. These properties must be set later based on configuration. Existing AWS services have a number of requirements that increase the complexity: Endpoints must support manual configuration by end users: let config = dynamodb::Config::builder() .endpoint(StaticEndpoint::for_uri(\"http://localhost:8000\")) When a user specifies a custom endpoint URI, typically they will want to avoid having this URI mutated by other endpoint discovery machinery. Endpoints must support being customized on a per-operation basis by the endpoint trait. This will prefix the base endpoint, potentially driven by fields of the operation. Docs Endpoints must support being customized by endpoint discovery . A request, customized by a predefined set of fields from the input operation is dispatched to a specific URI. That operation returns the endpoint that should be used. Endpoints must be cached by a cache key containing: (access_key_id, [all input fields], operation) Endpoints retrieved in this way specify a TTL. Endpoints must be able to customize the signing (and other phases of the operation). For example, requests sent to a global region will have a region set by the endpoint provider.","breadcrumbs":"Smithy » Endpoint Resolution » Requirements","id":"43","title":"Requirements"},"430":{"body":"ConstraintViolationExceptions is not \"tight\" in that there's nothing in the type system that indicates to the user, when writing the custom validation error mapping function, that the iterator will not return a sequence of ConstraintViolationExceptions that is actually impossible to occur in practice. Recall that ConstraintViolationExceptions are enums that model both direct constraint violations as well as transitive ones. For example, given the model: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} @length(min: 2, max: 69)\nstring LengthString The corresponding ConstraintViolationException Rust type for the LengthMap shape is: pub mod length_map { pub enum ConstraintViolation { Length(usize), } pub (crate) enum ConstraintViolationException { Length(usize), Value( std::string::String, crate::model::length_string::ConstraintViolationException, ), }\n} ConstraintViolationExceptions is just a container over this type: pub ConstraintViolationExceptions(pub(crate) Vec); impl IntoIterator for ConstraintViolationExceptions { ... } There might be multiple map values that fail to adhere to the constraints in LengthString, which would make the iterator yield multiple length_map::ConstraintViolationException::Values; however, at most one length_map::ConstraintViolationException::Length can be yielded in practice . This might be obvious to the service owner when inspecting the model and the Rust docs, but it's not expressed in the type system. The above tightness problem has been formulated in terms of ConstraintViolationExceptions, because the fact that ConstraintViolationExceptions contain transitive constraint violations highlights the tightness problem. Note, however, that the tightness problem also afflicts ConstraintViolations . Indeed, consider the following model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield: pub struct ConstraintViolations(pub(crate) Vec); impl IntoIterator for ConstraintViolations { ... } pub mod length_pattern_string { pub enum ConstraintViolation { Length(usize), Pattern(String) }\n} impl std::convert::TryFrom for LengthPatternString { type Error = ConstraintViolations; fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} Observe how the iterator of an instance of ConstraintViolations, may, a priori, yield e.g. the length_pattern_string::ConstraintViolation::Length variant twice, when it's clear that the iterator should contain at most one of each of length_pattern_string::ConstraintViolation's variants.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Problem","id":"430","title":"Problem"},"431":{"body":"We propose a tighter API design. We substitute enums for structs whose members are all Optional, representing all the constraint violations that can occur. For list shapes and map shapes: we implement IntoIterator on an additional struct Members representing only the violations that can occur on the collection's members. we add a non Option-al field to the struct representing the constraint violations of type Members. Let's walk through an example. Take the last model: @pattern(\"[a-f0-5]*\")\n@length(min: 5, max: 10)\nstring LengthPatternString This would yield, as per the first substitution: pub mod length_pattern_string { pub struct ConstraintViolations { pub length: Option, pub pattern: Option, } pub mod constraint_violation { pub struct Length(usize); pub struct Pattern(String); }\n} impl std::convert::TryFrom for LengthPatternString { type Error = length_pattern_string::ConstraintViolations; // The error type returned by this constructor, `ConstraintViolations`, // will always have _at least_ one member set. fn try_from(value: std::string::String) -> Result { // Check constraints and collect violations. ... }\n} We now expand the model to highlight the second step of the algorithm: @length(min: 1, max: 69)\nmap LengthMap { key: String, value: LengthString\n} This gives us: pub mod length_map { pub struct ConstraintViolations { pub length: Option, // Would be `Option` in the case of an aggregate shape that is _not_ a // list shape or a map shape. pub member_violations: constraint_violation::Members, } pub mod constraint_violation { // Note that this could now live outside the `length_map` module and be // reused across all `@length`-constrained shapes, if we expanded it with // another `usize` indicating the _modeled_ value in the `@length` trait; by // keeping it inside `length_map` we can hardcode that value in the // implementation of e.g. error messages. pub struct Length(usize); pub struct Members { pub(crate) Vec } pub struct Member { // If the map's key shape were constrained, we'd have a `key` // field here too. value: Option } pub struct Value( std::string::String, crate::model::length_string::ConstraintViolation, ); impl IntoIterator for Members { ... } }\n} The above examples have featured the tight API design with ConstraintViolations. Of course, we will apply the same design in the case of ConstraintViolationExceptions. For the sake of completeness, let's expand our model yet again with a structure shape: structure A { @required member: String, @required length_map: LengthMap,\n} And this time let's feature both the resulting ConstraintViolationExceptions and ConstraintViolations types: pub mod a { pub struct ConstraintViolationExceptions { // All fields must be `Option`, despite the members being `@required`, // since no violations for their values might have occurred. pub missing_member_exception: Option, pub missing_length_map_exception: Option, pub length_map_exceptions: Option, } pub mod constraint_violation_exception { pub struct MissingMember; pub struct MissingLengthMap; } pub struct ConstraintViolations { pub missing_member: Option, pub missing_length_map: Option, } pub mod constraint_violation { pub struct MissingMember; pub struct MissingLengthMap; }\n} As can be intuited, the only differences are that: ConstraintViolationExceptions hold transitive violations while ConstraintViolations only need to expose direct violations (as explained in the Impossible constraint violations section), ConstraintViolationExceptions have members suffixed with _exception, as is the module name. Note that while the constraint violation (exception) type names are plural, the module names are always singular. We also make a conscious decision of, in this case of structure shapes, making the types of all members Options, for simplicity. Another choice would have been to make length_map_exceptions not Option-al, and, in the case where no violations in LengthMap values occurred, set length_map::ConstraintViolations::length to None and length_map::ConstraintViolations::member_violations eventually reach an empty iterator. However, it's best that we use the expressiveness of Options at the earliest (\"highest\" in the shape hierarchy) opportunity: if a member is Some, it means it (eventually) reaches data.","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Final solution proposal","id":"431","title":"Final solution proposal"},"432":{"body":"Unfortunately, while this RFC could be implemented iteratively (i.e. solve each of the problems in turn), it would introduce too much churn and throwaway work: solving the tightness problem requires a more or less complete overhaul of the constraint violations code generator. It's best that all three problems be solved in the same changeset. Generate ConstraintViolations and ConstraintViolationExceptions types so as to not reify impossible constraint violations , add the ability to collect constraint violations , and solve the \"tightness\" problem of constraint violations . Special-case generated request deserialization code for operations using @length and @uniqueItems constrained shapes whose closures reach other constrained shapes so that the validators for these two traits short-circuit upon encountering a number of inner constraint violations above a certain threshold. Write and expose a layer, applied by default to all generated server SDKs, that bounds a request body's size to a reasonable (yet high) default, to prevent trivial DoS attacks .","breadcrumbs":"RFCs » RFC-0032: Better Constraint Violations » Checklist","id":"432","title":"Checklist"},"433":{"body":"Status: Implemented in #2129 Applies to: AWS SDK clients At time of writing, customers can retrieve a request ID in one of four ways in the Rust SDK: For error cases where the response parsed successfully, the request ID can be retrieved via accessor method on operation error. This also works for unmodeled errors so long as the response parsing succeeds. For error cases where a response was received but parsing fails, the response headers can be retrieved from the raw response on the error, but customers have to manually extract the request ID from those headers (there's no convenient accessor method). For all error cases where the request ID header was sent in the response, customers can call SdkError::into_service_error to transform the SdkError into an operation error, which has a request_id accessor on it. For success cases, the customer can't retrieve the request ID at all if they use the fluent client. Instead, they must manually make the operation and call the underlying Smithy client so that they have access to SdkSuccess, which provides the raw response where the request ID can be manually extracted from headers. Only one of these mechanisms is convenient and ergonomic. The rest need considerable improvements. Additionally, the request ID should be attached to tracing events where possible so that enabling debug logging reveals the request IDs without any code changes being necessary. This RFC proposes changes to make the request ID easier to access.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » RFC: Improving access to request IDs in SDK clients","id":"433","title":"RFC: Improving access to request IDs in SDK clients"},"434":{"body":"Request ID: A unique identifier assigned to and associated with a request to AWS that is sent back in the response headers. This identifier is useful to customers when requesting support. Operation Error: Operation errors are code generated for each operation in a Smithy model. They are an enum of every possible modeled error that that operation can respond with, as well as an Unhandled variant for any unmodeled or unrecognized errors. Modeled Errors: Any error that is represented in a Smithy model with the @error trait. Unmodeled Errors: Errors that a service responds with that do not appear in the Smithy model. SDK Clients: Clients generated for the AWS SDK, including \"adhoc\" or \"one-off\" clients. Smithy Clients: Any clients not generated for the AWS SDK, excluding \"adhoc\" or \"one-off\" clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Terminology","id":"434","title":"Terminology"},"435":{"body":"Before proposing any changes, the topic of purity needs to be covered. Request IDs are not currently a Smithy concept. However, at time of writing, the request ID concept is leaked into the non-SDK rust runtime crates and generated code via the generic error struct and the request_id functions on generated operation errors (e.g., GetObjectError example in S3 ). This RFC attempts to remove these leaks from Smithy clients.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » SDK/Smithy Purity","id":"435","title":"SDK/Smithy Purity"},"436":{"body":"First, we'll explore making it easier to retrieve a request ID from errors, and then look at making it possible to retrieve them from successful responses. To see the customer experience of these changes, see the Example Interactions section below.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Proposed Changes","id":"436","title":"Proposed Changes"},"437":{"body":"One could argue that customers being able to convert a SdkError into an operation error that has a request ID on it is sufficient. However, there's no way to write a function that takes an error from any operation and logs a request ID, so it's still not ideal. The aws-http crate needs to have a RequestId trait on it to facilitate generic request ID retrieval: pub trait RequestId { /// Returns the request ID if it's available. fn request_id(&self) -> Option<&str>;\n} This trait will be implemented for SdkError in aws-http where it is declared, complete with logic to pull the request ID header out of the raw HTTP responses (it will always return None for event stream Message responses; an additional trait may need to be added to aws-smithy-http to facilitate access to the headers). This logic will try different request ID header names in order of probability since AWS services have a couple of header name variations. x-amzn-requestid is the most common, with x-amzn-request-id being the second most common. aws-http will also implement RequestId for aws_smithy_types::error::Error, and the request_id method will be removed from aws_smithy_types::error::Error. Places that construct Error will place the request ID into its extras field, where the RequestId trait implementation can retrieve it. A codegen decorator will be added to sdk-codegen to implement RequestId for operation errors, and the existing request_id accessors will be removed from CombinedErrorGenerator in codegen-core. With these changes, customers can directly access request IDs from SdkError and operations errors by importing the RequestId trait. Additionally, the Smithy/SDK purity is improved since both places where request IDs are leaked to Smithy clients will be resolved.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Make request ID retrieval on errors consistent","id":"437","title":"Make request ID retrieval on errors consistent"},"438":{"body":"To make it possible to retrieve request IDs when using the fluent client, the new RequestId trait can be implemented for outputs. Some services (e.g., Transcribe Streaming) model the request ID header in their outputs, while other services (e.g., Directory Service) model a request ID field on errors. In some cases, services take RequestId as a modeled input (e.g., IoT Event Data). It follows that it is possible, but unlikely, that a service could have a field named RequestId that is not the same concept in the future. Thus, name collisions are going to be a concern for putting a request ID accessor on output. However, if it is implemented as a trait, then this concern is partially resolved. In the vast majority of cases, importing RequestId will provide the accessor without any confusion. In cases where it is already modeled and is the same concept, customers will likely just use it and not even realize they didn't import the trait. The only concern is future cases where it is modeled as a separate concept, and as long as customers don't import RequestId for something else in the same file, that confusion can be avoided. In order to implement RequestId for outputs, either the original response needs to be stored on the output, or the request ID needs to be extracted earlier and stored on the output. The latter will lead to a small amount of header lookup code duplication. In either case, the StructureGenerator needs to be customized in sdk-codegen (Appendix B outlines an alternative approach to this and why it was dismissed). This will be done by adding customization hooks to StructureGenerator similar to the ones for ServiceConfigGenerator so that a sdk-codegen decorator can conditionally add fields and functions to any generated structs. A hook will also be needed to additional trait impl blocks. Once the hooks are in place, a decorator will be added to store either the original response or the request ID on outputs, and then the RequestId trait will be implemented for them. The ParseResponse trait implementation will be customized to populate this new field. Note: To avoid name collisions of the request ID or response on the output struct, these fields can be prefixed with an underscore. It shouldn't be possible for SDK fields to code generate with this prefix given the model validation rules in place.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for outputs","id":"438","title":"Implement RequestId for outputs"},"439":{"body":"In the case that a customer wants to ditch the fluent client, it should still be easy to retrieve a request ID. To do this, aws-http will provide RequestId implementations for Operation and operation::Response. These implementations will likely make the other RequestId implementations easier to implement as well.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Operation and operation::Response","id":"439","title":"Implement RequestId for Operation and operation::Response"},"44":{"body":"Configuration objects for services must contain an Endpoint. This endpoint may be set by a user or it will default to the endpointPrefix from the service definition. In the case of endpoint discovery, this is the endpoint that we will start with. During operation construction (see Operation Construction ) an EndpointPrefix may be set on the property bag. The eventual endpoint middleware will search for this in the property bag and (depending on the URI mutability) utilize this prefix when setting the endpoint. In the case of endpoint discovery, we envision a different pattern: // EndpointClient manages the endpoint cache\nlet (tx, rx) = dynamodb::EndpointClient::new();\nlet client = aws_hyper::Client::new();\n// `endpoint_req` is an operation that can be dispatched to retrieve endpoints\n// During operation construction, the endpoint resolver is configured to be `rx` instead static endpoint\n// resolver provided by the service.\nlet (endpoint_req, req) = GetRecord::builder().endpoint_disco(rx).build_with_endpoint();\n// depending on the duration of endpoint expiration, this may be spawned into a separate task to continuously\n// refresh endpoints.\nif tx.needs(endpoint_req) { let new_endpoint = client. call(endpoint_req) .await; tx.send(new_endpoint)\n}\nlet rsp = client.call(req).await?; We believe that this design results in an SDK that both offers customers more control & reduces the likelihood of bugs from nested operation dispatch. Endpoint resolution is currently extremely rare in AWS services so this design may remain a prototype while we solidify other behaviors.","breadcrumbs":"Smithy » Endpoint Resolution » Design","id":"44","title":"Design"},"440":{"body":"The Result returned by the SDK should directly implement RequestId when both its Ok and Err variants implement RequestId. This will make it possible for a customer to feed the return value from send() directly to a request ID logger.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Implement RequestId for Result","id":"440","title":"Implement RequestId for Result"},"441":{"body":"","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Example Interactions","id":"441","title":"Example Interactions"},"442":{"body":"// A re-export of the RequestId trait\nuse aws_sdk_service::primitives::RequestId; fn my_request_id_logging_fn(request_id: &dyn RequestId) { println!(\"request ID: {:?}\", request_id.request_id());\n} let result = client.some_operation().send().await?;\nmy_request_id_logging_fn(&result);","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Generic Handling Case","id":"442","title":"Generic Handling Case"},"443":{"body":"use aws_sdk_service::primitives::RequestId; let output = client.some_operation().send().await?;\nprintln!(\"request ID: {:?}\", output.request_id());","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Success Case","id":"443","title":"Success Case"},"444":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => { println!(\"request ID: {:?}\", output.request_id()); }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with SdkError","id":"444","title":"Error Case with SdkError"},"445":{"body":"use aws_sdk_service::primitives::RequestId; match client.some_operation().send().await { Ok(_) => { /* handle OK */ } Err(err) => match err.into_service_err() { err @ SomeOperationError::SomeError(_) => { println!(\"request ID: {:?}\", err.request_id()); } _ => { /* don't care */ } }\n}","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Error Case with operation error","id":"445","title":"Error Case with operation error"},"446":{"body":"Create the RequestId trait in aws-http Implement for errors Implement RequestId for SdkError in aws-http Remove request_id from aws_smithy_types::error::Error, and store request IDs in its extras instead Implement RequestId for aws_smithy_types::error::Error in aws-http Remove generation of request_id accessors from CombinedErrorGenerator in codegen-core Implement for outputs Add customization hooks to StructureGenerator Add customization hook to ParseResponse Add customization hook to HttpBoundProtocolGenerator Customize output structure code gen in sdk-codegen to add either a request ID or a response field Customize ParseResponse in sdk-codegen to populate the outputs Implement RequestId for Operation and operation::Response Implement RequestId for Result where O and E both implement RequestId Re-export RequestId in generated crates Add integration tests for each request ID access point","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Changes Checklist","id":"446","title":"Changes Checklist"},"447":{"body":"Alternatively, for successful responses, a second send method (that is difficult to name)w be added to the fluent client that has a return value that includes both the output and the request ID (or entire response). This solution was dismissed due to difficulty naming, and the risk of name collision.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix A: Alternate solution for access on successful responses","id":"447","title":"Appendix A: Alternate solution for access on successful responses"},"448":{"body":"The request ID could be stored on outputs by doing a model transform in sdk-codegen to add a RequestId member field. However, this causes problems when an output already has a RequestId field, and requires the addition of a synthetic trait to skip binding the field in the generated serializers/deserializers.","breadcrumbs":"RFCs » RFC-0033: Improving access to request IDs in SDK clients » Appendix B: Adding RequestId as a string to outputs via model transform","id":"448","title":"Appendix B: Adding RequestId as a string to outputs via model transform"},"449":{"body":"status: implemented applies-to: The smithy client This RFC proposes a new process for constructing client requests and handling service responses. This new process is intended to: Improve the user experience by Simplifying several aspects of sending a request Adding more extension points to the request/response lifecycle Improve the maintainer experience by Making our SDK more similar in structure to other AWS SDKs Simplifying many aspects of the request/response lifecycle Making room for future changes Additionally, functionality that the SDKs currently provide like retries, logging, and auth with be incorporated into this new process in such a way as to make it more configurable and understandable. This RFC references but is not the source of truth on: Interceptors: To be described in depth in a future RFC. Runtime Plugins: To be described in depth in a future RFC.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Smithy Orchestrator","id":"449","title":"Smithy Orchestrator"},"45":{"body":"AWS SDKs require that clients can evolve in a backwards compatible way as new fields and operations are added. The types generated by smithy-rs are specifically designed to meet these requirements. Specifically, the following transformations must not break compilation when upgrading to a new version: New operation added New member added to structure New union variant added New error added (todo) New enum variant added (todo) However, the following changes are not backwards compatible: Error removed from operation. In general, the best tool in Rust to solve these issues in the #[non_exhaustive] attribute which will be explored in detail below.","breadcrumbs":"Smithy » Backwards Compatibility » Backwards Compatibility","id":"45","title":"Backwards Compatibility"},"450":{"body":"When a smithy client communicates with a smithy service, messages are handled by an \"orchestrator.\" The orchestrator runs in two main phases: Constructing configuration. This process is user-configurable with \"runtime plugins.\" Configuration is stored in a typemap. Transforming a client request into a server response. This process is user-configurable with \"interceptors.\" Interceptors are functions that are run by \"hooks\" in the request/response lifecycle.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » TLDR;","id":"450","title":"TLDR;"},"451":{"body":"SDK Client : A high-level abstraction allowing users to make requests to remote services. Remote Service : A remote API that a user wants to use. Communication with a remote service usually happens over HTTP. The remote service is usually, but not necessarily, an AWS service. Operation : A high-level abstraction representing an interaction between an *SDK Client and a remote service . Input Message : A modeled request passed into an SDK client . For example, S3’s ListObjectsRequest. Transport Request Message : A message that can be transmitted to a remote service . For example, an HTTP request. Transport Response Message : A message that can be received from a remote service . For example, an HTTP response. Output Message : A modeled response or exception returned to an SDK client caller. For example, S3’s ListObjectsResponse or NoSuchBucketException. The request/response lifecycle : The process by which an SDK client makes requests and receives responses from a remote service . This process is enacted and managed by the orchestrator . Orchestrator : The code within an SDK client that handles the process of making requests and receiving responses from remote services . The orchestrator is configurable by modifying the runtime plugins it's built from. The orchestrator is responsible for calling interceptors at the appropriate times in the request/response lifecycle . Interceptor / Hook : A generic extension point within the orchestrator . Supports \"anything that someone should be able to do\", NOT \"anything anyone might want to do\". These hooks are: Either read-only or read/write . Able to read and modify the Input , Transport Request , Transport Response , or Output messages. Runtime Plugin : Runtime plugins are similar to interceptors, but they act on configuration instead of requests and response. Both users and services may define runtime plugins. Smithy also defines several default runtime plugins used by most clients. See the F.A.Q. for a list of plugins with descriptions. ConfigBag : A typemap that's equivalent to http::Extensions . Used to store configuration for the orchestrator.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Terminology","id":"451","title":"Terminology"},"452":{"body":"For many users, the changes described by this RFC will be invisible. Making a request with an orchestrator-based SDK client looks very similar to the way requests were made pre-RFC: let sdk_config = aws_config::load_from_env().await;\nlet client = aws_sdk_s3::Client::new(&sdk_config);\nlet res = client.get_object() .bucket(\"a-bucket\") .key(\"a-file.txt\") .send() .await?; match res { Ok(res) => println!(\"success: {:?}\"), Err(err) => eprintln!(\"failure: {:?}\")\n}; Users may further configure clients and operations with runtime plugins , and they can modify requests and responses with interceptors . We'll examine each of these concepts in the following sections.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The user experience if this RFC is implemented","id":"452","title":"The user experience if this RFC is implemented"},"453":{"body":"The exact implementation of runtime plugins is left for another RFC. That other RFC will be linked here once it's written. To get an idea of what they may look like, see the \"Layered configuration, stored in type maps\" section of this RFC. Runtime plugins construct and modify client configuration. Plugin initialization is the first step of sending a request, and plugins set in later steps can override the actions of earlier plugins. Plugin ordering is deterministic and non-customizable. While AWS services define a default set of plugins, users may define their own plugins, and set them by calling the appropriate methods on a service's config, client, or operation. Plugins are specifically meant for constructing service and operation configuration. If a user wants to define behavior that should occur at specific points in the request/response lifecycle , then they should instead consider defining an interceptor .","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Service clients and operations are configured with runtime plugins","id":"453","title":"Service clients and operations are configured with runtime plugins"},"454":{"body":"Interceptors are similar to middlewares, in that they are functions that can read and modify request and response state. However, they are more restrictive than middlewares in that they can't modify the \"control flow\" of the request/response lifecycle. This is intentional. Interceptors can be registered on a client or operation, and the orchestrator is responsible for calling interceptors at the appropriate time. Users MUST NOT perform blocking IO within an interceptor. Interceptors are sync, and are not intended to perform large amounts of work. This makes them easier to reason about and use. Depending on when they are called, interceptors may read and modify input messages , transport request messages , transport response messages , and output messages . Additionally, all interceptors may write to a context object that is shared between all interceptors. Currently supported hooks Read Before Execution (Read-Only) : Before anything happens. This is the first thing the SDK calls during operation execution. Modify Before Serialization (Read/Write) : Before the input message given by the customer is marshalled into a transport request message. Allows modifying the input message. Read Before Serialization (Read-Only) : The last thing the SDK calls before marshaling the input message into a transport message. Read After Serialization (Read-Only) : The first thing the SDK calls after marshaling the input message into a transport message. (Retry Loop) Modify Before Retry Loop (Read/Write) : The last thing the SDK calls before entering the retry look. Allows modifying the transport message. Read Before Attempt (Read-Only) : The first thing the SDK calls “inside” of the retry loop. Modify Before Signing (Read/Write) : Before the transport request message is signed. Allows modifying the transport message. Read Before Signing (Read-Only) : The last thing the SDK calls before signing the transport request message. **Read After Signing (Read-Only)****: The first thing the SDK calls after signing the transport request message. Modify Before Transmit (Read/Write) : Before the transport request message is sent to the service. Allows modifying the transport message. Read Before Transmit (Read-Only) : The last thing the SDK calls before sending the transport request message. Read After Transmit (Read-Only) : The last thing the SDK calls after receiving the transport response message. Modify Before Deserialization (Read/Write) : Before the transport response message is unmarshaled. Allows modifying the transport response message. Read Before Deserialization (Read-Only) : The last thing the SDK calls before unmarshalling the transport response message into an output message. Read After Deserialization (Read-Only) : The last thing the SDK calls after unmarshaling the transport response message into an output message. Modify Before Attempt Completion (Read/Write) : Before the retry loop ends. Allows modifying the unmarshaled response (output message or error). Read After Attempt (Read-Only) : The last thing the SDK calls “inside” of the retry loop. Modify Before Execution Completion (Read/Write) : Before the execution ends. Allows modifying the unmarshaled response (output message or error). Read After Execution (Read-Only) : After everything has happened. This is the last thing the SDK calls during operation execution.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Requests and responses are modified by interceptors","id":"454","title":"Requests and responses are modified by interceptors"},"455":{"body":"As mentioned above, interceptors may read/write a context object that is shared between all interceptors: pub struct InterceptorContext { // a.k.a. the input message modeled_request: ModReq, // a.k.a. the transport request message tx_request: Option, // a.k.a. the output message modeled_response: Option, // a.k.a. the transport response message tx_response: Option, // A type-keyed map properties: SharedPropertyBag,\n} The optional request and response types in the interceptor context can only be accessed by interceptors that are run after specific points in the request/response lifecycle . Rather than go into depth in this RFC, I leave that to a future \"Interceptors RFC.\"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Interceptor context","id":"455","title":"Interceptor context"},"456":{"body":"","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » How to implement this RFC","id":"456","title":"How to implement this RFC"},"457":{"body":"Imagine we have some sort of request signer. This signer doesn't refer to any orchestrator types. All it needs is a HeaderMap along with two strings, and will return a signature in string form. struct Signer; impl Signer { fn sign(headers: &http::HeaderMap, signing_name: &str, signing_region: &str) -> String { todo!() }\n} Now imagine things from the orchestrator's point of view. It requires something that implements an AuthOrchestrator which will be responsible for resolving the correct auth scheme, identity, and signer for an operation, as well as signing the request pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} // And it calls that `AuthOrchestrator` like so:\nfn invoke() { // code omitted for brevity // Get the request to be signed let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); // Fetch the auth orchestrator from the bag let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; // Auth the request auth_orchestrator.auth_request(tx_req_mut, cfg)?; // code omitted for brevity\n} The specific implementation of the AuthOrchestrator is what brings these two things together: struct Sigv4AuthOrchestrator; impl AuthOrchestrator for Sigv4AuthOrchestrator { fn auth_request(&self, req: &mut http::Request, cfg: &ConfigBag) -> Result<(), BoxError> { let signer = Signer; let signing_name = cfg.get::().ok_or(Error::MissingSigningName)?; let signing_region = cfg.get::().ok_or(Error::MissingSigningRegion)?; let headers = req.headers_mut(); let signature = signer.sign(headers, signing_name, signing_region); match cfg.get::() { Some(SignatureLocation::Query) => req.query.set(\"sig\", signature), Some(SignatureLocation::Header) => req.headers_mut().insert(\"sig\", signature), None => return Err(Error::MissingSignatureLocation), }; Ok(()) }\n} This intermediate code should be free from as much logic as possible. Whenever possible, we must maintain this encapsulation. Doing so will make the Orchestrator more flexible, maintainable, and understandable.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Integrating with the orchestrator","id":"457","title":"Integrating with the orchestrator"},"458":{"body":"Type map : A data structure where stored values are keyed by their type. Hence, only one value can be stored for a given type. See typemap , type-map , http::Extensions , and actix_http::Extensions for examples. let conf: ConfigBag = aws_config::from_env() // Configuration can be common to all smithy clients .with(RetryConfig::builder().disable_retries().build()) // Or, protocol-specific .with(HttpClient::builder().build()) // Or, AWS-specific .with(Region::from(\"us-east-1\")) // Or, service-specific .with(S3Config::builder().force_path_style(false).build()) .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() // Configuration can be set on operations as well as clients .with(HttpConfig::builder().conn(some_other_conn).build()) .send() .await; Setting configuration that will not be used wastes memory and can make debugging more difficult. Therefore, configuration defaults are only set when they're relevant. For example, if a smithy service doesn't support HTTP, then no HTTP client will be set. What is \"layered\" configuration? Configuration has precedence. Configuration set on an operation will override configuration set on a client, and configuration set on a client will override default configuration. However, configuration with a higher precedence can also augment configuration with a lower precedence. For example: let conf: ConfigBag = aws_config::from_env() .with( SomeConfig::builder() .option_a(1) .option_b(2) .option_c(3) ) .build() .await; let client = aws_sdk_s3::Client::new(&conf); client.list_buckets() .customize() .with( SomeConfig::builder() .option_a(0) .option_b(Value::Inherit) .option_c(Value::Unset) ) .build() .send() .await; In the above example, when the option_a, option_b, option_c, values of SomeConfig are accessed, they'll return: option_a: 0 option_b: 2 option_c: No value Config values are wrapped in a special enum called Value with three variants: Value::Set: A set value that will override values from lower layers. Value::Unset: An explicitly unset value that will override values from lower layers. Value::Inherit: An explicitly unset value that will inherit a value from a lower layer. Builders are defined like this: struct SomeBuilder { value: Value,\n} impl struct SomeBuilder { fn new() -> Self { // By default, config values inherit from lower-layer configs Self { value: Value::Inherit } } fn some_field(&mut self, value: impl Into>) -> &mut self { self.value = value.into(); self }\n} Because of impl Into>, users don't need to reference the Value enum unless they want to \"unset\" a value. Layer separation and precedence Codegen defines default sets of interceptors and runtime plugins at various \"levels\": AWS-wide defaults set by codegen. Service-wide defaults set by codegen. Operation-specific defaults set by codegen. Likewise, users may mount their own interceptors and runtime plugins: The AWS config level, e.g. aws_types::Config. The service config level, e.g. aws_sdk_s3::Config. The operation config level, e.g. aws_sdk_s3::Client::get_object. Configuration is resolved in a fixed manner by reading the \"lowest level\" of config available, falling back to \"higher levels\" only when no value has been set. Therefore, at least 3 separate ConfigBags are necessary, and user configuration has precedence over codegen-defined default configuration. With that in mind, resolution of configuration would look like this: Check user-set operation config. Check codegen-defined operation config. Check user-set service config. Check codegen-defined service config. Check user-set AWS config. Check codegen-defined AWS config.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Layered configuration, stored in type maps","id":"458","title":"Layered configuration, stored in type maps"},"459":{"body":"I've omitted some of the error conversion to shorten this example and make it easier to understand. The real version will be messier. /// `In`: The input message e.g. `ListObjectsRequest`\n/// `Req`: The transport request message e.g. `http::Request`\n/// `Res`: The transport response message e.g. `http::Response`\n/// `Out`: The output message. A `Result` containing either:\n/// - The 'success' output message e.g. `ListObjectsResponse`\n/// - The 'failure' output message e.g. `NoSuchBucketException`\npub async fn invoke( input: In, interceptors: &mut Interceptors>, runtime_plugins: &RuntimePlugins, cfg: &mut ConfigBag,\n) -> Result where // The input must be Clone in case of retries In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ let mut ctx: InterceptorContext> = InterceptorContext::new(input); runtime_plugins.apply_client_configuration(cfg)?; interceptors.client_read_before_execution(&ctx, cfg)?; runtime_plugins.apply_operation_configuration(cfg)?; interceptors.operation_read_before_execution(&ctx, cfg)?; interceptors.read_before_serialization(&ctx, cfg)?; interceptors.modify_before_serialization(&mut ctx, cfg)?; let request_serializer = cfg .get::>>() .ok_or(\"missing serializer\")?; let req = request_serializer.serialize_request(ctx.modeled_request_mut(), cfg)?; ctx.set_tx_request(req); interceptors.read_after_serialization(&ctx, cfg)?; interceptors.modify_before_retry_loop(&mut ctx, cfg)?; loop { make_an_attempt(&mut ctx, cfg, interceptors).await?; interceptors.read_after_attempt(&ctx, cfg)?; interceptors.modify_before_attempt_completion(&mut ctx, cfg)?; let retry_strategy = cfg .get::>>>() .ok_or(\"missing retry strategy\")?; let mod_res = ctx .modeled_response() .expect(\"it's set during 'make_an_attempt'\"); if retry_strategy.should_retry(mod_res, cfg)? { continue; } interceptors.modify_before_completion(&mut ctx, cfg)?; let trace_probe = cfg .get::>() .ok_or(\"missing trace probes\")?; trace_probe.dispatch_events(cfg); interceptors.read_after_execution(&ctx, cfg)?; break; } let (modeled_response, _) = ctx.into_responses()?; modeled_response\n} // Making an HTTP request can fail for several reasons, but we still need to\n// call lifecycle events when that happens. Therefore, we define this\n// `make_an_attempt` function to make error handling simpler.\nasync fn make_an_attempt( ctx: &mut InterceptorContext>, cfg: &mut ConfigBag, interceptors: &mut Interceptors>,\n) -> Result<(), BoxError> where In: Clone + 'static, Req: 'static, Res: 'static, T: 'static,\n{ interceptors.read_before_attempt(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let endpoint_orchestrator = cfg .get::>>() .ok_or(\"missing endpoint orchestrator\")?; endpoint_orchestrator.resolve_and_apply_endpoint(tx_req_mut, cfg)?; interceptors.modify_before_signing(ctx, cfg)?; interceptors.read_before_signing(ctx, cfg)?; let tx_req_mut = ctx.tx_request_mut().expect(\"tx_request has been set\"); let auth_orchestrator = cfg .get::>>() .ok_or(\"missing auth orchestrator\")?; auth_orchestrator.auth_request(tx_req_mut, cfg)?; interceptors.read_after_signing(ctx, cfg)?; interceptors.modify_before_transmit(ctx, cfg)?; interceptors.read_before_transmit(ctx, cfg)?; // The connection consumes the request but we need to keep a copy of it // within the interceptor context, so we clone it here. let res = { let tx_req = ctx.tx_request_mut().expect(\"tx_request has been set\"); let connection = cfg .get::>>() .ok_or(\"missing connector\")?; connection.call(tx_req, cfg).await? }; ctx.set_tx_response(res); interceptors.read_after_transmit(ctx, cfg)?; interceptors.modify_before_deserialization(ctx, cfg)?; interceptors.read_before_deserialization(ctx, cfg)?; let tx_res = ctx.tx_response_mut().expect(\"tx_response has been set\"); let response_deserializer = cfg .get::>>>() .ok_or(\"missing response deserializer\")?; let res = response_deserializer.deserialize_response(tx_res, cfg)?; ctx.set_modeled_response(res); interceptors.read_after_deserialization(ctx, cfg)?; Ok(())\n} Traits At various points in the execution of invoke, trait objects are fetched from the ConfigBag. These are preliminary definitions of those traits: pub trait TraceProbe: Send + Sync + Debug { fn dispatch_events(&self, cfg: &ConfigBag) -> BoxFallibleFut<()>;\n} pub trait RequestSerializer: Send + Sync + Debug { fn serialize_request(&self, req: &mut In, cfg: &ConfigBag) -> Result;\n} pub trait ResponseDeserializer: Send + Sync + Debug { fn deserialize_response(&self, res: &mut TxRes, cfg: &ConfigBag) -> Result;\n} pub trait Connection: Send + Sync + Debug { fn call(&self, req: &mut TxReq, cfg: &ConfigBag) -> BoxFallibleFut;\n} pub trait RetryStrategy: Send + Sync + Debug { fn should_retry(&self, res: &Out, cfg: &ConfigBag) -> Result;\n} pub trait AuthOrchestrator: Send + Sync + Debug { fn auth_request(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>;\n} pub trait EndpointOrchestrator: Send + Sync + Debug { fn resolve_and_apply_endpoint(&self, req: &mut Req, cfg: &ConfigBag) -> Result<(), BoxError>; fn resolve_auth_schemes(&self) -> Result, BoxError>;\n}","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » The aws-smithy-orchestrator crate","id":"459","title":"The aws-smithy-orchestrator crate"},"46":{"body":"Before $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject]\n} After $version: \"1\"\nnamespace s3 service S3 { operations: [GetObject, PutObject]\n} Adding support for a new operation is backwards compatible because SDKs to not expose any sort of \"service trait\" that provides an interface over an entire service. This prevents clients from inheriting or implementing an interface that would be broken by the addition of a new operation.","breadcrumbs":"Smithy » Backwards Compatibility » New Operation Added","id":"46","title":"New Operation Added"},"460":{"body":"The orchestrator is a large and complex feature, with many moving parts. How can we ensure that multiple people can contribute in parallel? By defining the entire orchestrator and agreeing on its structure, we can then move on to working on individual runtime plugins and interceptors. What is the precedence of interceptors? The precedence of interceptors is as follows: Interceptors registered via Smithy default plugins. (AWS Services only) Interceptors registered via AWS default plugins. Interceptors registered via service-customization plugins. Interceptors registered via client-level plugins. Interceptors registered via client-level configuration. Interceptors registered via operation-level plugins. Interceptors registered via operation-level configuration. What runtime plugins will be defined in smithy-rs? RetryStrategy: Configures how requests are retried. TraceProbes: Configures locations to which SDK metrics are published. EndpointProviders: Configures which hostname an SDK will call when making a request. HTTPClients: Configures how remote services are called. IdentityProviders: Configures how customers identify themselves to remote services. HTTPAuthSchemes & AuthSchemeResolvers: Configures how customers authenticate themselves to remote services. Checksum Algorithms: Configures how an SDK calculates request and response checksums.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » F.A.Q.","id":"460","title":"F.A.Q."},"461":{"body":"Create a new aws-smithy-runtime crate. Add orchestrator implementation Define the orchestrator/runtime plugin interface traits TraceProbe RequestSerializer ResponseDeserializer Connection RetryStrategy AuthOrchestrator EndpointOrchestrator Create a new aws-smithy-runtime-api crate. Add ConfigBag module Add retries module Add rate_limiting sub-module Add interceptors module Interceptor trait InterceptorContext impl Add runtime_plugins module Create a new integration test that ensures the orchestrator works.","breadcrumbs":"RFCs » RFC-0034: Smithy Orchestrator » Changes checklist","id":"461","title":"Changes checklist"},"462":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC proposes a breaking change to how generated clients automatically provide default values for collections. Currently the SDK generated fields for List generate optional values: ///

    Container for elements related to a particular part. pub fn parts(&self) -> Option<&[crate::types::Part]> { self.parts.as_deref() } This is almost never what users want and leads to code noise when using collections: async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project .ids() .unwrap_or_default(); // ^^^^^^^^^^^^^^^^^^ this is pure noise\n} This RFC proposes unwrapping into default values in our accessor methods.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » RFC: Collection Defaults","id":"462","title":"RFC: Collection Defaults"},"463":{"body":"Accessor : The Rust SDK defines accessor methods on modeled structures for fields to make them more convenient for users Struct field : The accessors point to concrete fields on the struct itself.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Terminology","id":"463","title":"Terminology"},"464":{"body":"In the current version of the SDK, users must call .unwrap_or_default() frequently. Once this RFC is implemented, users will be able to use these accessors directly. In the rare case where users need to distinguish be None and [], we will direct users towards model..is_some(). async fn get_builds() { let project = codebuild .list_builds_for_project() .project_name(build_project) .send() .await?; let build_ids = project.ids(); // Goodbye to this line: // .unwrap_or_default();\n}","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » The user experience if this RFC is implemented","id":"464","title":"The user experience if this RFC is implemented"},"465":{"body":"In order to implement this feature, we need update the code generate accessors for lists and maps to add .unwrap_or_default(). Because we are returning slices unwrap_or_default() does not produce any additional allocations for empty collection.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » How to actually implement this RFC","id":"465","title":"How to actually implement this RFC"},"466":{"body":"This works for lists because we are returning a slice (allowing a statically owned &[] to be returned.) If we want to support HashMaps in the future this is possible by using OnceCell to create empty HashMaps for requisite types. This would allow us to return references to those empty maps.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Could this be implemented for HashMap?","id":"466","title":"Could this be implemented for HashMap?"},"467":{"body":"No, many existing APIs don't have the default trait.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Isn't this handled by the default trait?","id":"467","title":"Isn't this handled by the default trait?"},"468":{"body":"Estimated total work: 2 days Update accessor method generation to auto flatten lists Update docs for accessors to guide users to .field.is_some() if they MUST determine if the field was set.","breadcrumbs":"RFCs » RFC-0035: Collection Defaults » Changes checklist","id":"468","title":"Changes checklist"},"469":{"body":"Status: Accepted Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines how we plan to refactor the SDK to allow the SDK to consume a 1.0 version of hyper, http-body, and http at a later date. Currently, hyper is 0.14.x and a 1.0 release candidate series is in progress. However, there are open questions that may significantly delay the launch of these three crates. We do not want to tie the 1.0 of the Rust SDK to these crates.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » RFC: Eliminating Public http dependencies","id":"469","title":"RFC: Eliminating Public http dependencies"},"47":{"body":"","breadcrumbs":"Smithy » Backwards Compatibility » New member added to structure","id":"47","title":"New member added to structure"},"470":{"body":"http-body : A crate (and trait) defining how HTTP bodies work. Notably, the change from 0.* to 1.0 changes http-body to operate on frames instead of having separate methods. http (crate): a low level crate of http primitives (no logic, just requests and responses) ossified dependency: An ossified dependency describes a dependency that, when a new version is released, cannot be utilized without breaking changes. For example, if the mutate_request function on every operation operates on &mut http::Request where http = 0.2, that dependency is \"ossified.\" Compare this to a function that offers the ability to convert something into an http = 0.2 request—since http=1 and http=0.2 are largely equivalent, the existence of this function does not prevent us from using http = 1 in the future. In general terms, functions that operate on references are much more likely to ossify —There is no practical way for someone to mutate an http = 0.2 request if you have an http = 1 request other than a time-consuming clone, and reconversion process.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Terminology","id":"470","title":"Terminology"},"471":{"body":"Performance : At some point in the Future, hyper = 1, http = 1 and http-body = 1 will be released. It takes ~1-2 microseconds to rebuild an HTTP request. If we assume that hyper = 1 will only operate on http = 1 requests, then if we can't use http = 1 requests internally, our only way of supporting hyper = 1 will be to convert the HTTP request at dispatch time. Besides pinning us to a potentially unsupported version of the HTTP crate, this will prevent us from directly dispatching requests in an efficient manner. With a total overhead of 20µs for the SDK, 1µs is not insignificant. Furthermore, it grows as the number of request headers grow. A benchmark should be run for a realistic HTTP request e.g. one that we send to S3. Hyper Upgrade : Hyper 1 is significantly more flexible than Hyper 0.14.x, especially WRT to connection management & pooling. If we don't make these changes, the upgrade to Hyper 1.x could be significantly more challenging. Security Fixes : If we're still on http = 0.* and a vulnerability is identified, we may end up needing to manually contribute the patch. The http crate is not trivial and contains parsing logic and optimized code (including a non-trivial amount of unsafe). See this GitHub issue . Notable is that one issue may be unsound and result in changing the public API. API Friendliness If we ship with an API that public exposes customers to http = 0.*, we have the API forever. We have to consider that we aren't shipping the Rust SDK for this month or even this year but probably the Rust SDK for the next 5-10 years. Future CRT Usage If we make this change, we enable a future where we can use the CRT HTTP request type natively without needing a last minute conversion to the CRT HTTP Request type. struct HttpRequest { inner: Inner\n} enum Inner { Httpv0(http_0::Request), Httpv1(http_1::Request), Crt(aws_crt_http::Request)\n}","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Why is this important?","id":"471","title":"Why is this important?"},"472":{"body":"Customers are impacted in 3 main locations: HTTP types in Interceptors HTTP types in customize(...) HTTP types in Connectors In all three of these cases, users would interact with our http wrapper types instead. In the current version of the SDK, we expose public dependencies on the http crate in several key places: The sigv4 crate. The sigv4 crate currently operates directly on many types from the http crate. This is unnecessary and actually makes the crate more difficult to use. Although http may be used internally, http will be removed from the public API of this crate. Interceptor Context: interceptors can mutate the HTTP request through an unshielded interface. This requires creating a wrapper layer around http::Request and updating already written interceptors. aws-config: http::Response and uri A long tail of exposed requests and responses in the runtime crates. Many of these crates will be removed post-orchestrator so this can be temporarily delayed.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » The user experience if this RFC is implemented","id":"472","title":"The user experience if this RFC is implemented"},"473":{"body":"","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » How to actually implement this RFC","id":"473","title":"How to actually implement this RFC"},"474":{"body":"One key mechanism that we SHOULD use for allowing our APIs to evolve in the future is usage of ~ version bounds for the runtime crates after releasing 1.0.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Enabling API evolution","id":"474","title":"Enabling API evolution"},"475":{"body":"In order to enable HTTP evolution, we will create a set of wrapper structures around http::Request and http::Response. These will use http = 0 internally. Since the HTTP crate itself is quite small, including private dependencies on both versions of the crate is a workable solution. In general, we will aim for an API that is close to drop-in compatible to the HTTP crate while ensuring that a different crate could be used as the backing storage. // since it's our type, we can default `SdkBody`\npub struct Request { // this uses the http = 0.2 request. In the future, we can make an internal enum to allow storing an http = 1 http_0: http::Request\n} Conversion to/from http::Request One key property here is that although converting to/from an http::Request can be expensive, this is not ossification of the API. This is because the API can support converting from/to both http = 0 and http = 1 in the future—because it offers mutation of the request via a unified interface, the request would only need to be converted once for dispatch if there was a mismatch (instead of repeatedly). At some point in the future, the http = 0 representation could be deprecated and removed or feature gated. Challenges Creating an HTTP API which is forwards compatible, idiomatic and \"truthful\" without relying on existing types from Hyper—e.g. when adding a header, we need to account for the possibility that a header is invalid. Allow for future forwards-compatible evolution in the API—A lot of thought went into the http crate API w.r.t method parameters, types, and generics. Although we can aim for a simpler solution in some cases (e.g. accepting &str instead of HeaderName), we need to be careful that we do so while allowing API evolution.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Http Request Wrapper","id":"475","title":"Http Request Wrapper"},"476":{"body":"The SigV4 crate signs a number of HTTP types directly. We should change it to accept strings, and when appropriate, iterators of strings for headers.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the SigV4 HTTP dependency","id":"476","title":"Removing the SigV4 HTTP dependency"},"477":{"body":"Generated clients currently include a public HTTP dependency in customize. This should be changed to accept our HTTP wrapper type instead or be restricted to a subset of operations (e.g. add_header) while forcing users to add an interceptor if they need full control.","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Removing the HTTP dependency from generated clients","id":"477","title":"Removing the HTTP dependency from generated clients"},"478":{"body":"Create the http::Request wrapper. Carefully audit for compatibility without breaking changes. 5 Days. Refactor currently written interceptors to use the wrapper: 2 days. Refactor the SigV4 crate to remove the HTTP dependency from the public interface: 2 days. Add / validate support for SdkBody http-body = 1.0rc.2 either in a PR or behind a feature gate. Test this to ensure it works with Hyper. Some previous work here exists: 1 week Remove http::Response and Uri from the public exposed types in aws-config: 1-4 days. Long tail of other usages: 1 week Implement ~ versions for SDK Crate => runtime crate dependencies: 1 week","breadcrumbs":"RFCs » RFC-0036: HTTP Dependency Exposure » Changes checklist","id":"478","title":"Changes checklist"},"479":{"body":"Status: RFC Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the API of our wrapper types around http::Request and http::Response. For more information about why we are wrapping these types, see RFC 0036: The HTTP Dependency .","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » RFC: The HTTP Wrapper Type","id":"479","title":"RFC: The HTTP Wrapper Type"},"48":{"body":"Structures are marked #[non_exhaustive] Structures must be instantiated using builders Structures must not derive Default in the event that required fields are added in the future. In general, adding a new public member to a structure in Rust is not backwards compatible. However, by applying the #[non_exhaustive] to the structures generated by the Rust SDK, the Rust compiler will prevent users from using our structs in ways that prevent new fields from being added in the future. Note : in this context, the optionality of the fields is irrelevant. Specifically, #[non_exhaustive] prohibits the following patterns: Direct structure instantiation: # fn foo() {\nlet ip_addr = IpAddress { addr: \"192.168.1.1\" };\n# } If a new member is_local: boolean was added to the IpAddress structure, this code would not compile. To enable users to still construct our structures while maintaining backwards compatibility, all structures expose a builder, accessible at SomeStruct::Builder: # fn foo() {\nlet ip_addr = IpAddress::builder().addr(\"192.168.1.1\").build();\n# } Structure destructuring: # fn foo() {\nlet IpAddress { addr } = some_ip_addr();\n# } This will also fail to compile if a new member is added, however, by adding #[non_exhaustive], the .. multifield wildcard MUST be added to support new fields being added in the future: # fn foo() {\nlet IpAddress { addr, .. } = some_ip_addr();\n# }","breadcrumbs":"Smithy » Backwards Compatibility » Summary","id":"48","title":"Summary"},"480":{"body":"Extensions / \"Request Extensions\": The http crate Request/Response types include a typed property bag to store additional metadata along with the request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Terminology","id":"480","title":"Terminology"},"481":{"body":"In the current version of the SDK, external customers and internal code interacts directly with the http crate. Once this RFC is implemented, interactions at the public API level will occur with our own http types instead. Our types aim to be nearly drop-in-compatible for types in the http crate, however: We will not expose existing HTTP types in public APIs in ways that are ossified. When possible, we aim to simplify the APIs to make them easier to use. We will add SDK specific helper functionality when appropriate, e.g. first-level support for applying an endpoint to a request.","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » The user experience if this RFC is implemented","id":"481","title":"The user experience if this RFC is implemented"},"482":{"body":"We will need to add two types, HttpRequest and HttpResponse. To string or not to String Our header library restricts header names and values to Strings (UTF-8). Although the http library is very precise in its representation—it allows for HeaderValues that are both a super and subset of String—a superset because headers support arbitrary binary data but a subset because headers cannot contain control characters like \\n. Although technically allowed, headers containing arbitrary binary data are not widely supported. Generally, Smithy protocols will use base-64 encoding when storing binary data in headers. Finally, it's nicer for users if they can stay in \"string land\". Because of this, HttpRequest and Response expose header names and values as strings. Internally, the current design uses HeaderName and HeaderValue, however, there is a gate on construction that enforces that values are valid UTF-8. This is a one way door because .as_str() would panic in the future if we allow non-string values into headers. Where should these types live? These types will be used by all orchestrator functionality, so they will be housed in aws-smithy-runtime-api What's in and what's out? At the onset, these types focus on supporting the most ossified usages: &mut modification of HTTP types. They do not support construction of HTTP types, other than impl From and From. We will also make it possible to use http::HeaderName / http::HeaderValue in a zero-cost way. The AsHeaderComponent trait All header insertion methods accept impl AsHeaderComponent. This allows us to provide a nice user experience while taking advantage of zero-cost usage of 'static str. We will seal this trait to prevent external usage. We will have separate implementation for: &'static str String http02x::HeaderName Additional Functionality Our wrapper type will add the following additional functionality: Support for self.try_clone() Support for &mut self.apply_endpoint(...) Handling failure There is no stdlib type that cleanly defines what may be placed into headers—String is too broad (even if we restrict to ASCII). This RFC proposes moving fallibility to the APIs: impl HeadersMut<'_> { pub fn try_insert( &mut self, key: impl AsHeaderComponent, value: impl AsHeaderComponent, ) -> Result, BoxError> { // ... }\n} This allows us to offer user-friendly types while still avoiding runtime panics. We also offer insert and append which panic on invalid values. Request Extensions There is ongoing work which MAY restrict HTTP extensions to clone types. We will preempt that by: Preventing Extensions from being present when initially constructing our HTTP request wrapper. Forbidding non-clone extensions from being inserted into the wrapped request. This also enables supporting request extensions for different downstream providers by allowing cloning into different extension types. Proposed Implementation Proposed Implementation of `request` {{#include ../../../rust-runtime/aws-smithy-runtime-api/src/client/http/request.rs}}","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » How to actually implement this RFC","id":"482","title":"How to actually implement this RFC"},"483":{"body":"Currently, the only way to construct Request is from a compatible type (e.g. http02x::Request)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Future Work","id":"483","title":"Future Work"},"484":{"body":"Implement initial implementation and test it against the SDK as written Add test suite of HTTP wrapper External design review Update the SigV4 crate to remove http API dependency Update the SDK to use the new type (breaking change)","breadcrumbs":"RFCs » RFC-0037: The HTTP Wrapper » Changes checklist","id":"484","title":"Changes checklist"},"485":{"body":"Status: Implemented Applies to: client For a summarized list of proposed changes, see the Changes Checklist section. This RFC defines the user experience and implementation of user-configurable retry classification. Custom retry classifiers enable users to change what responses are retried while still allowing them to rely on defaults set by SDK authors when desired.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » RFC: User-configurable retry classification","id":"485","title":"RFC: User-configurable retry classification"},"486":{"body":"Smithy Service : An HTTP service, whose API is modeled with the Smithy IDL . Smithy Client : An HTTP client generated by smithy-rs from a .smithy model file. AWS SDK : A smithy client that's specifically configured to work with an AWS service. Operation : A modeled interaction with a service, defining the proper input and expected output shapes, as well as important metadata related to request construction. \"Sending\" an operation implies sending one or more HTTP requests to a Smithy service , and then receiving an output or error in response. Orchestrator : The client code which manages the request/response pipeline. The orchestrator is responsible for: Constructing, serializing, and sending requests. Receiving, deserializing, and (optionally) retrying requests. Running interceptors (not covered in this RFC) and handling errors. Runtime Component : A part of the orchestrator responsible for a specific function. Runtime components are used by the orchestrator itself, may depend on specific configuration, and must not be changed by interceptors. Examples include the endpoint resolver, retry strategy, and request signer. Runtime Plugin : Code responsible for setting and runtime components and related configuration. Runtime plugins defined by codegen are responsible for setting default configuration and altering the behavior of Smithy clients including the AWS SDKs .","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Terminology","id":"486","title":"Terminology"},"487":{"body":"A Retry Strategy is the process by which the orchestrator determines when and how to retry failed requests. Only one retry strategy may be set at any given time. During its operation, the retry strategy relies on a series of Retry Classifiers to determine if and how a failed request should be retried. Retry classifiers each have a Retry Classifier Priority so that regardless of whether they are set during config or operation construction, they'll always run in a consistent order. Classifiers are each run in turn by the retry strategy: pub fn run_classifiers_on_ctx( classifiers: impl Iterator, ctx: &InterceptorContext,\n) -> RetryAction { // By default, don't retry let mut result = RetryAction::NoActionIndicated; for classifier in classifiers { let new_result = classifier.classify_retry(ctx); // If the result is `NoActionIndicated`, continue to the next classifier // without overriding any previously-set result. if new_result == RetryAction::NoActionIndicated { continue; } // Otherwise, set the result to the new result. tracing::trace!( \"Classifier '{}' set the result of classification to '{}'\", classifier.name(), new_result ); result = new_result; // If the result is `RetryForbidden`, stop running classifiers. if result == RetryAction::RetryForbidden { tracing::trace!(\"retry classification ending early because a `RetryAction::RetryForbidden` was emitted\",); break; } } result\n} NOTE: User-defined retry strategies are responsible for calling run_classifiers_on_ctx. Lower-priority classifiers run first, but the retry actions they return may be overridden by higher-priority classifiers. Classification stops immediately if any classifier returns RetryAction::RetryForbidden.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How the orchestrator should model retries","id":"487","title":"How the orchestrator should model retries"},"488":{"body":"In the current version of the SDK, users are unable to configure retry classification, except by defining a custom retry strategy. Once this RFC is implemented, users will be able to define and set their own classifiers.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The user experience if this RFC is implemented","id":"488","title":"The user experience if this RFC is implemented"},"489":{"body":"#[derive(Debug)]\nstruct CustomRetryClassifier; impl ClassifyRetry for CustomRetryClassifier { fn classify_retry( &self, ctx: &InterceptorContext, ) -> Option { // Check for a result let output_or_error = ctx.output_or_error(); // Check for an error let error = match output_or_error { // Typically, when the response is OK or unset // then `RetryAction::NoActionIndicated` is returned. Some(Ok(_)) | None => return RetryAction::NoActionIndicated, Some(Err(err)) => err, }; todo!(\"inspect the error to determine if a retry attempt should be made.\") } fn name(&self) -> &'static str { \"my custom retry classifier\" } fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n} Choosing a retry classifier priority Sticking with the default priority is often the best choice. Classifiers should restrict the number of cases they can handle in order to avoid having to compete with other classifiers. When two classifiers would classify a response in two different ways, the priority system gives us the ability to decide which classifier should be respected. Internally, priority is implemented with a simple numeric system. In order to give the smithy-rs team the flexibility to make future changes, this numeric system is private and inaccessible to users. Instead, users may set the priority of classifiers relative to one another with the with_lower_priority_than and with_higher_priority_than methods: impl RetryClassifierPriority { /// Create a new `RetryClassifierPriority` with lower priority than the given priority. pub fn with_lower_priority_than(other: Self) -> Self { ... } /// Create a new `RetryClassifierPriority` with higher priority than the given priority. pub fn with_higher_priority_than(other: Self) -> Self { ... }\n} For example, if it was important for our CustomRetryClassifier in the previous example to run before the default HttpStatusCodeClassifier, a user would define the CustomRetryClassifier priority like this: impl ClassifyRetry for CustomRetryClassifier { fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::run_before(RetryClassifierPriority::http_status_code_classifier()) }\n} The priorities of the three default retry classifiers (HttpStatusCodeClassifier, ModeledAsRetryableClassifier, and TransientErrorClassifier) are all public for this purpose. Users may ONLY set a retry priority relative to an existing retry priority. RetryAction and RetryReason Retry classifiers communicate to the retry strategy by emitting RetryActions: /// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug, Default)]\npub enum RetryAction { /// When a classifier can't run or has no opinion, this action is returned. /// /// For example, if a classifier requires a parsed response and response parsing failed, /// this action is returned. If all classifiers return this action, no retry should be /// attempted. #[default] NoActionIndicated, /// When a classifier runs and thinks a response should be retried, this action is returned. RetryIndicated(RetryReason), /// When a classifier runs and decides a response must not be retried, this action is returned. /// /// This action stops retry classification immediately, skipping any following classifiers. RetryForbidden,\n} When a retry is indicated by a classifier, the action will contain a RetryReason: /// The reason for a retry.\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryReason { /// When an error is received that should be retried, this reason is returned. RetryableError { /// The kind of error. kind: ErrorKind, /// A server may tell us to retry only after a specific time has elapsed. retry_after: Option, },\n} NOTE: RetryReason currently only has a single variant, but it's defined as an enum for forward compatibility purposes. RetryAction's impl defines several convenience methods: impl RetryAction { /// Create a new `RetryAction` indicating that a retry is necessary. pub fn retryable_error(kind: ErrorKind) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: None, }) } /// Create a new `RetryAction` indicating that a retry is necessary after an explicit delay. pub fn retryable_error_with_explicit_delay(kind: ErrorKind, retry_after: Duration) -> Self { Self::RetryIndicated(RetryReason::RetryableError { kind, retry_after: Some(retry_after), }) } /// Create a new `RetryAction` indicating that a retry is necessary because of a transient error. pub fn transient_error() -> Self { Self::retryable_error(ErrorKind::TransientError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a throttling error. pub fn throttling_error() -> Self { Self::retryable_error(ErrorKind::ThrottlingError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a server error. pub fn server_error() -> Self { Self::retryable_error(ErrorKind::ServerError) } /// Create a new `RetryAction` indicating that a retry is necessary because of a client error. pub fn client_error() -> Self { Self::retryable_error(ErrorKind::ClientError) }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Defining a custom classifier","id":"489","title":"Defining a custom classifier"},"49":{"body":"Adding a required member to a structure is not considered backwards compatible. When a required member is added to a structure: The builder will change to become fallible, meaning that instead of returning T it will return Result. Previous builder invocations that did not set the new field will still stop compiling if this was the first required field. Previous builder invocations will now return a BuildError because the required field is unset.","breadcrumbs":"Smithy » Backwards Compatibility » Validation & Required Members","id":"49","title":"Validation & Required Members"},"490":{"body":"The interface for setting classifiers is very similar to the interface of settings interceptors: // All service configs support these setters. Operations support a nearly identical API.\nimpl ServiceConfigBuilder { /// Add type implementing ClassifyRetry that will be used by the RetryStrategy /// to determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn retry_classifier(mut self, retry_classifier: impl ClassifyRetry + 'static) -> Self { self.push_retry_classifier(SharedRetryClassifier::new(retry_classifier)); self } /// Add a SharedRetryClassifier that will be used by the RetryStrategy to /// determine what responses should be retried. /// /// A retry classifier configured by this method will run according to its priority. pub fn push_retry_classifier(&mut self, retry_classifier: SharedRetryClassifier) -> &mut Self { self.runtime_components.push_retry_classifier(retry_classifier); self } /// Set SharedRetryClassifiers for the builder, replacing any that were /// previously set. pub fn set_retry_classifiers(&mut self, retry_classifiers: impl IntoIterator) -> &mut Self { self.runtime_components.set_retry_classifiers(retry_classifiers.into_iter()); self }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Setting classifiers","id":"490","title":"Setting classifiers"},"491":{"body":"Smithy clients have three classifiers enabled by default: ModeledAsRetryableClassifier: Checks for errors that are marked as retryable in the smithy model. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. TransientErrorClassifier: Checks for timeout, IO, and connector errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. HttpStatusCodeClassifier: Checks the HTTP response's status code. By default, this classifies 500, 502, 503, and 504 errors as RetryAction::RetryIndicated. The list of retryable status codes may be customized when creating this classifier with the HttpStatusCodeClassifier::new_from_codes method. AWS clients enable the three smithy classifiers as well as one more by default: AwsErrorCodeClassifier: Checks for errors with AWS error codes marking them as either transient or throttling errors. If one is encountered, returns RetryAction::RetryIndicated. Requires a parsed response. This classifier will also check the HTTP response for an x-amz-retry-after header. If one is set, then the returned RetryAction will include the explicit delay. The priority order of these classifiers is as follows: (highest priority) TransientErrorClassifier ModeledAsRetryableClassifier AwsErrorCodeClassifier (lowest priority) HttpStatusCodeClassifier The priority order of the default classifiers is not configurable. However, it's possible to wrap a default classifier in a newtype and set your desired priority when implementing the ClassifyRetry trait, delegating the classify_retry and name fields to the inner classifier. Disable default classifiers Disabling the default classifiers is possible, but not easy. They are set at different points during config and operation construction, and must be unset at each of those places. A far simpler solution is to implement your own classifier that has the highest priority. Still, if completely removing the other classifiers is desired, use the set_retry_classifiers method on the config to replace the config-level defaults and then set a config override on the operation that does the same.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Default classifiers","id":"491","title":"Default classifiers"},"492":{"body":"In order to implement this feature, we must: Update the current retry classification system so that individual classifiers as well as collections of classifiers can be easily composed together. Create two new configuration mechanisms for users that allow them to customize retry classification at the service level and at the operation level. Update retry classifiers so that they may 'short-circuit' the chain, ending retry classification immediately.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » How to actually implement this RFC","id":"492","title":"How to actually implement this RFC"},"493":{"body":"/// The result of running a [`ClassifyRetry`] on a [`InterceptorContext`].\n#[non_exhaustive]\n#[derive(Clone, Eq, PartialEq, Debug)]\npub enum RetryAction { /// When an error is received that should be retried, this action is returned. Retry(ErrorKind), /// When the server tells us to retry after a specific time has elapsed, this action is returned. RetryAfter(Duration), /// When a response should not be retried, this action is returned. NoRetry,\n} /// Classifies what kind of retry is needed for a given [`InterceptorContext`].\npub trait ClassifyRetry: Send + Sync + fmt::Debug { /// Run this classifier on the [`InterceptorContext`] to determine if the previous request /// should be retried. If the classifier makes a decision, `Some(RetryAction)` is returned. /// Classifiers may also return `None`, signifying that they have no opinion of whether or /// not a request should be retried. fn classify_retry( &self, ctx: &InterceptorContext, preceding_action: Option, ) -> Option; /// The name of this retry classifier. /// /// Used for debugging purposes. fn name(&self) -> &'static str; /// The priority of this retry classifier. Classifiers with a higher priority will run before /// classifiers with a lower priority. Classifiers with equal priorities make no guarantees /// about which will run first. fn priority(&self) -> RetryClassifierPriority { RetryClassifierPriority::default() }\n}","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » The RetryClassifier trait","id":"493","title":"The RetryClassifier trait"},"494":{"body":"Because each classifier has a defined priority, and because RetryClassifierPriority implements PartialOrd and Ord, the standard library's sort method may be used to correctly arrange classifiers. The RuntimeComponents struct is responsible for storing classifiers, so it's also responsible for sorting them whenever a new classifier is added. Thus, when a retry strategy fetches the list of classifiers, they'll already be in the expected order.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Resolving the correct order of multiple retry classifiers","id":"494","title":"Resolving the correct order of multiple retry classifiers"},"495":{"body":"Q: Should retry classifiers be fallible? A: I think no, because of the added complexity. If we make them fallible then we'll have to decide what happens when classifiers fail. Do we skip them or does classification end? The retry strategy is responsible for calling the classifiers, so it be responsible for deciding how to handle a classifier error. I don't foresee a use case where an error returned by a classifier would be interpreted either by classifiers following the failed classifier or the retry strategy.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Questions and answers","id":"495","title":"Questions and answers"},"496":{"body":"Add retry classifiers field and setters to RuntimeComponents and RuntimeComponentsBuilder. Add unit tests ensuring that classifier priority is respected by RuntimeComponents::retry_classifiers, especially when multiple layers of config are in play. Add codegen customization allowing users to set retry classifiers on service configs. Add codegen for setting default classifiers at the service level. Add integration tests for setting classifiers at the service level. Add codegen for settings default classifiers that require knowledge of operation error types at the operation level. Add integration tests for setting classifiers at the operation level. Implement retry classifier priority. Add unit tests for retry classifier priority. Update existing tests that would fail for lack of a retry classifier.","breadcrumbs":"RFCs » RFC-0038: User-configurable retry classification » Changes checklist","id":"496","title":"Changes checklist"},"497":{"body":"This is a collection of written resources for smithy-rs and SDK contributors. Writing and debugging a low-level feature that relies on HTTP","breadcrumbs":"Contributing » Contributing","id":"497","title":"Contributing"},"498":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Writing and debugging a low-level feature that relies on HTTP","id":"498","title":"Writing and debugging a low-level feature that relies on HTTP"},"499":{"body":"This article came about as a result of all the difficulties I encountered while developing the request checksums feature laid out in the internal-only Flexible Checksums spec (the feature is also highlighted in this public blog post .) I spent much more time developing the feature than I had anticipated. In this article, I'll talk about: How the SDK sends requests with a body How the SDK sends requests with a streaming body The various issues I encountered and how I addressed them Key takeaways for contributors developing similar low-level features","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Background","id":"499","title":"Background"},"5":{"body":"Unless you know better ones! These are our tenets today, but we'd love your thoughts. Do you wish we had different priorities? Let us know by opening and issue or starting a discussion. Batteries included, but replaceable. The AWS SDK for Rust should provide a best-in-class experience for many use cases, but , customers will use the SDK in unique and unexpected ways. Meet customers where they are; strive to be compatible with their tools. Provide mechanisms to allow customers make different choices. Make common problems easy to solve. The AWS SDK for Rust should make common problems solvable. Guide customers to patterns that set them up for long-term success. Design for the Future. The AWS SDK for Rust should evolve with AWS without breaking existing customers. APIs will evolve in unpredictable directions, new protocols will gain adoption, and new services will be created that we never could have imagined. Don’t simplify or unify code today that prevents evolution tomorrow.","breadcrumbs":"Tenets » Rust SDK Design Tenets","id":"5","title":"Rust SDK Design Tenets"},"50":{"body":"Similar to structures, #[non_exhaustive] also applies to unions. In order to allow new union variants to be added in the future, all unions (enum in Rust) generated by the Rust SDK must be marked with #[non_exhaustive]. Note : because new fields cannot be added to union variants, the union variants themselves do not need to be #[non_exhaustive]. To support new variants from services, each union contains an Unknown variant. By marking Unknown as non_exhaustive, we prevent customers from instantiating it directly. #[non_exhaustive]\n#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]\npub enum AttributeValue { B(aws_smithy_types::Blob), Bool(bool), Bs(std::vec::Vec), L(std::vec::Vec), M(std::collections::HashMap), N(std::string::String), Ns(std::vec::Vec), Null(bool), S(std::string::String), Ss(std::vec::Vec), // By marking `Unknown` as non_exhaustive, we prevent client code from instantiating it directly. #[non_exhaustive] Unknown,\n}","breadcrumbs":"Smithy » Backwards Compatibility » New union variant added","id":"50","title":"New union variant added"},"500":{"body":"All interactions between the SDK and a service are modeled as \"operations\" . Operations contain: A base HTTP request (with a potentially streaming body) A typed property bag of configuration options A fully generic response handler Users create operations piecemeal with a fluent builder. The options set in the builder are then used to create the inner HTTP request, becoming headers or triggering specific request-building functionality (In this case, calculating a checksum and attaching it either as a header or a trailer.) Here's an example from the QLDB SDK of creating a body from inputs and inserting it into the request to be sent: let body = aws_smithy_http::body::SdkBody::from( crate::operation_ser::serialize_operation_crate_operation_send_command(&self)?,\n); if let Some(content_length) = body.content_length() { request = aws_smithy_http::header::set_request_header_if_absent( request, http::header::CONTENT_LENGTH, content_length, );\n}\nlet request = request.body(body).expect(\"should be valid request\"); Most all request body creation in the SDKs looks like that. Note how it automatically sets the Content-Length header whenever the size of the body is known; It'll be relevant later. The body is read into memory and can be inspected before the request is sent. This allows for things like calculating a checksum and then inserting it into the request as a header.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a body","id":"500","title":"How the SDK sends requests with a body"},"501":{"body":"Often, sending a request with a streaming body looks much the same. However, it's not possible to read a streaming body until you've sent the request. Any metadata that needs to be calculated by inspecting the body must be sent as trailers. Additionally, some metadata, like Content-Length, can't be sent as a trailer at all. MDN maintains a helpful list of metadata that can only be sent as a header. // When trailers are set, we must send an AWS-specific header that lists them named `x-amz-trailer`.\n// For example, when sending a SHA256 checksum as a trailer,\n// we have to send an `x-amz-trailer` header telling the service to watch out for it:\nrequest .headers_mut() .insert( http::header::HeaderName::from_static(\"x-amz-trailer\"), http::header::HeaderValue::from_static(\"x-amz-checksum-sha256\"), );","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » How the SDK sends requests with a streaming body","id":"501","title":"How the SDK sends requests with a streaming body"},"502":{"body":"","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » The issues I encountered while implementing checksums for streaming request bodies","id":"502","title":"The issues I encountered while implementing checksums for streaming request bodies"},"503":{"body":"When sending a request body with trailers, we must use an AWS-specific content encoding called aws-chunked. To encode a request body for aws-chunked requires us to know the length of each chunk we're going to send before we send it. We have to prefix each chunk with its size in bytes, represented by one or more hexadecimal digits. To close the body, we send a final chunk with a zero. For example, the body \"Hello world\" would look like this when encoded: B\\r\\n\nHello world\\r\\n\n0\\r\\n When sending a request body encoded in this way, we need to set two length headers: Content-Length is the length of the entire request body, including the chunk size prefix and zero terminator. In the example above, this would be 19. x-amz-decoded-content-length is the length of the decoded request body. In the example above, this would be 11. NOTE: Content-Encoding is distinct from Transfer-Encoding . It's possible to construct a request with both Content-Encoding: chunked AND Transfer-Encoding: chunked, although we don't ever need to do that for SDK requests.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Content-Encoding: aws-chunked","id":"503","title":"Content-Encoding: aws-chunked"},"504":{"body":"S3 does not require you to send a Content-Length header if you set the Transfer-Encoding: chunked header. That's very helpful because it's not always possible to know the total length of a stream of bytes if that's what you're constructing your request body from. However, when sending trailers, this part of the spec can be misleading. When sending a streaming request, we must send metadata like checksums as trailers To send a request body with trailers, we must set the Content-Encoding: aws-chunked header When using aws-chunked encoding for a request body, we must set the x-amz-decoded-content-length header with the pre-encoding length of the request body. This means that we can't actually avoid having to know and specify the length of the request body when sending a request to S3. This turns out to not be much of a problem for common use of the SDKs because most streaming request bodies are constructed from files. In these cases we can ask the operating system for the file size before sending the request. So long as that size doesn't change during sending of the request, all is well. In any other case, the request will fail.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » S3 requires a Content-Length unless you also set Transfer-Encoding: chunked","id":"504","title":"S3 requires a Content-Length unless you also set Transfer-Encoding: chunked"},"505":{"body":"Headers don't count towards the size of a request body, but trailers do. That means we need to take trailers (which aren't sent until after the body) into account when setting the Content-Length header (which are sent before the body.) This means that without setting Transfer-Encoding: chunked, the SDKs only support trailers of known length. In the case of checksums, we're lucky because they're always going to be the same size. We must also take into account the fact that checksum values are base64 encoded before being set (this lengthens them.)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » Adding trailers to a request changes the size of that request","id":"505","title":"Adding trailers to a request changes the size of that request"},"506":{"body":"This was a big source of confusion for me, and I only figured out what was happening with the help of @seanmonstar . When using aws-chunked encoding, the trailers have to be appended to the body as part of poll_data instead of relying on the poll_trailers method. The working http_body::Body implementation of an aws-chunked encoded body looked like this: impl Body for AwsChunkedBody { type Data = Bytes; type Error = aws_smithy_http::body::Error; fn poll_data( self: Pin<&mut Self>, cx: &mut Context<'_>, ) -> Poll>> { let this = self.project(); if *this.already_wrote_trailers { return Poll::Ready(None); } if *this.already_wrote_chunk_terminator { return match this.inner.poll_trailers(cx) { Poll::Ready(Ok(trailers)) => { *this.already_wrote_trailers = true; let total_length_of_trailers_in_bytes = this.options.trailer_lens.iter().sum(); Poll::Ready(Some(Ok(trailers_as_aws_chunked_bytes( total_length_of_trailers_in_bytes, trailers, )))) } Poll::Pending => Poll::Pending, Poll::Ready(err) => Poll::Ready(Some(err)), }; }; match this.inner.poll_data(cx) { Poll::Ready(Some(Ok(mut data))) => { let bytes = if *this.already_wrote_chunk_size_prefix { data.copy_to_bytes(data.len()) } else { // A chunk must be prefixed by chunk size in hexadecimal *this.already_wrote_chunk_size_prefix = true; let total_chunk_size = this .options .chunk_length .or(this.options.stream_length) .unwrap_or_default(); prefix_with_total_chunk_size(data, total_chunk_size) }; Poll::Ready(Some(Ok(bytes))) } Poll::Ready(None) => { *this.already_wrote_chunk_terminator = true; Poll::Ready(Some(Ok(Bytes::from(\"\\r\\n0\\r\\n\")))) } Poll::Ready(Some(Err(e))) => Poll::Ready(Some(Err(e))), Poll::Pending => Poll::Pending, } } fn poll_trailers( self: Pin<&mut Self>, _cx: &mut Context<'_>, ) -> Poll>, Self::Error>> { // When using aws-chunked content encoding, trailers have to be appended to the body Poll::Ready(Ok(None)) } fn is_end_stream(&self) -> bool { self.already_wrote_trailers } fn size_hint(&self) -> SizeHint { SizeHint::with_exact( self.encoded_length() .expect(\"Requests made with aws-chunked encoding must have known size\") as u64, ) }\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked","id":"506","title":"hyper supports HTTP request trailers but isn't compatible with Content-Encoding: aws-chunked"},"507":{"body":"In my early implementation of http_body::Body for an aws-chunked encoded body, the body wasn't being completely read out. The problem turned out to be that I was delegating to the is_end_stream trait method of the inner body. Because the innermost body had no knowledge of the trailers I needed to send, it was reporting that the stream had ended. The fix was to instead rely on the outermost body's knowledge of its own state in order to determine if all data had been read.","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » \"The stream is closing early, and I don't know why\"","id":"507","title":"\"The stream is closing early, and I don't know why\""},"508":{"body":"Reaching out to others that had specific knowledge of a problem: Talking to a developer that had tackled this feature for another SDK was a big help. Special thanks is due to @jasdel and the Go v2 SDK team. Their implementation of an aws-chunked encoded body was the basis for my own implementation. Avoiding codegen : The process of updating codegen code and then running codegen for each new change you make is slow compared to running codegen once at the beginning of development and then just manually editing the generated SDK as necessary. I still needed to run ./gradlew :aws:sdk:relocateAwsRuntime :aws:sdk:relocateRuntime whenever I made changes to a runtime crate but that was quick because it's just copying the files. Keep as much code out of codegen as possible. It's much easier to modify/debug Rust than it is to write a working codegen module that does the same thing. Whenever possible, write the codegen modules later, once the design has settled. Using the Display impl for errors: The Display impl for an error can ofter contain helpful info that might not be visible when printing with the Debug impl. Case in point was an error I was getting because of the is_end_stream issue. When Debug printed, the error looked like this: DispatchFailure(ConnectorError { err: hyper::Error(User(Body), hyper::Error(BodyWriteAborted)), kind: User }) That wasn't too helpful for me on its own. I looked into the hyper source code and found that the Display impl contained a helpful message, so I matched into the error and printed the hyper::Error with the Display impl: user body write aborted: early end, expected 2 more bytes' This helped me understand that I wasn't encoding things correctly and was missing a CRLF. Echo Server : I first used netcat and then later a small echo server written in Rust to see the raw HTTP request being sent out by the SDK as I was working on it. The Rust SDK supports setting endpoints for request. This is often used to send requests to something like LocalStack , but I used it to send request to localhost instead: #[tokio::test]\nasync fn test_checksum_on_streaming_request_against_s3() { let sdk_config = aws_config::from_env() .endpoint_resolver(Endpoint::immutable(\"http://localhost:8080\".parse().expect(\"valid URI\"))) .load().await; let s3_client = aws_sdk_s3::Client::new(&sdk_config); let input_text = b\"Hello world\"; let _res = s3_client .put_object() .bucket(\"some-real-bucket\") .key(\"test.txt\") .body(aws_sdk_s3::types::ByteStream::from_static(input_text)) .checksum_algorithm(ChecksumAlgorithm::Sha256) .send() .await .unwrap();\n} The echo server was based off of an axum example and looked like this: use axum::{ body::{Body, Bytes}, http::{request::Parts, Request, StatusCode}, middleware::{self, Next}, response::IntoResponse, routing::put, Router,\n};\nuse std::net::SocketAddr;\nuse tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; #[tokio::main]\nasync fn main() { tracing_subscriber::registry().with(tracing_subscriber::EnvFilter::new( std::env::var(\"RUST_LOG\").unwrap_or_else(|_| \"trace\".into()), )) .with(tracing_subscriber::fmt::layer()) .init(); let app = Router::new() .route(\"/\", put(|| async move { \"200 OK\" })) .layer(middleware::from_fn(print_request_response)); let addr = SocketAddr::from(([127, 0, 0, 1], 3000)); tracing::debug!(\"listening on {}\", addr); axum::Server::bind(&addr) .serve(app.into_make_service()) .await .unwrap();\n} async fn print_request_response( req: Request, next: Next,\n) -> Result { let (parts, body) = req.into_parts(); print_parts(&parts).await; let bytes = buffer_and_print(\"request\", body).await?; let req = Request::from_parts(parts, Body::from(bytes)); let res = next.run(req).await; Ok(res)\n} async fn print_parts(parts: &Parts) { tracing::debug!(\"{:#?}\", parts);\n} async fn buffer_and_print(direction: &str, body: B) -> Result\nwhere B: axum::body::HttpBody, B::Error: std::fmt::Display,\n{ let bytes = match hyper::body::to_bytes(body).await { Ok(bytes) => bytes, Err(err) => { return Err(( StatusCode::BAD_REQUEST, format!(\"failed to read {} body: {}\", direction, err), )); } }; if let Ok(body) = std::str::from_utf8(&bytes) { tracing::debug!(\"{} body = {:?}\", direction, body); } Ok(bytes)\n}","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP » What helped me to understand the problems and their solutions","id":"508","title":"What helped me to understand the problems and their solutions"},"509":{"body":"](writing_and_debugging_a_low-level_feature_that_relies_on_HTTP.md)","breadcrumbs":"Contributing » Writing and debugging a low-level feature that relies on HTTP »","id":"509","title":"Contributing"},"51":{"body":"smithy-rs provides the ability to generate a client whose operations defined by a smithy model. The documents referenced here explain aspects of the client in greater detail. What is the 'orchestrator' and why does it exist? Identity and Auth","breadcrumbs":"Client » Smithy Client","id":"51","title":"Smithy Client"},"52":{"body":"At a very high level, an orchestrator is a process for transforming requests into responses. Please enjoy this fancy chart: flowchart TB A(Orchestrate)-->|Input|B(Request serialization) B-->|Transmit Request|C(Connection) C-->|Transmit Response|D(Response deserialization) D-->|Success|E(\"Ok(Output)\") D-->|Unretryable Failure|F(\"Err(SdkError)\") D-->|Retryable Failure|C This process is also referred to as the \"request/response lifecycle.\" In this example, the types of \"transmit request\" and \"transmit response\" are protocol-dependent. Typical operations use HTTP , but we plan to support other protocols like MQTT in the future. In addition to the above steps, the orchestrator must also handle: Endpoint resolution: figuring out which URL to send a request to. Authentication, identity resolution, and request signing: Figuring out who is sending the request, their credentials, and how we should insert the credentials into a request. Interceptors : Running lifecycle hooks at each point in the request/response lifecycle. Runtime Plugins: Resolving configuration from config builders. Retries: Categorizing responses from services and deciding whether to retry and how long to wait before doing so. Trace Probes: A sink for events that occur during the request/response lifecycle.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What is the orchestrator?","id":"52","title":"What is the orchestrator?"},"53":{"body":"While the structure of an orchestrator is fixed, the actions it takes during its lifecycle are highly configurable. Users have two ways to configure this process: Runtime Plugins : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? In two batches, at the very beginning of orchestrate. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can set interceptors. Are they user-definable? No. At present, only smithy-rs maintainers may define these. Interceptors : When can these be set? Any time before calling orchestrate. When are they called by the orchestrator? At each step in the request-response lifecycle. What can they do? They can set configuration to be used by the orchestrator or in interceptors. They can log information. Depending on when they're run, they can modify the input, transmit request, transmit response, and the output/error. Are they user-definable? Yes. Configuration for a request is constructed by runtime plugins just after calling orchestrate. Configuration is stored in a ConfigBag: a hash map that's keyed on type's TypeId (an opaque object, managed by the Rust compiler, which references some type.)","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is an orchestrator configured?","id":"53","title":"How is an orchestrator configured?"},"54":{"body":"The orchestrator's work is divided into four phases: NOTE: If an interceptor fails, then the other interceptors for that lifecycle event are still run. All resulting errors are collected and emitted together. Building the ConfigBag and mounting interceptors . This phase is fallible. An interceptor context is created. This will hold request and response objects, making them available to interceptors. All runtime plugins set at the client-level are run. These plugins can set config and mount interceptors. Any \"read before execution\" interceptors that have been set get run. All runtime plugins set at the operation-level are run. These plugins can also set config and mount interceptors. Any new \"read before execution\" interceptors that have been set get run. Request Construction This phase is fallible. The \"read before serialization\" and \"modify before serialization\" interceptors are called. The input is serialized into a transmit request. The \"read after serialization\" and \"modify before retry loop\" interceptors are called. Before making an attempt, the retry handler is called to check if an attempt should be made. The retry handler makes this decision for an initial attempt as well as for the retry attempts. If an initial attempt should be made, then the orchestrator enters the Dispatch phase. Otherwise, a throttling error is returned. Request Dispatch This phase is fallible. This phase's tasks are performed in a loop. Retryable request failures will be retried, and unretryable failures will end the loop. The \"read before attempt\" interceptors are run. An endpoint is resolved according to an endpoint resolver. The resolved endpoint is then applied to the transmit request. The \"read before signing\" and \"modify before signing\" interceptors are run. An identity and a signer are resolved according to an authentication resolver. The signer then signs the transmit request with the identity. The \"read after signing\" , \"read before transmit\" , and \"modify before transmit\" interceptors are run. The transmit request is passed into the connection, and a transmit response is received. The \"read after transmit\" , \"read before deserialization\" , and \"modify before deserialization\" interceptors are run. The transmit response is deserialized. The \"read after attempt\" and \"modify before attempt completion\" interceptors are run. The retry strategy is called to check if a retry is necessary. If a retry is required, the Dispatch phase restarts. Otherwise, the orchestrator enters the Response Handling phase. Response Handling This phase is fallible. The \"read after deserialization\" and \"modify before completion\" interceptors are run. Events are dispatched to any trace probes that the user has set. The \"read after execution\" interceptors are run. At the end of all this, the response is returned. If an error occurred at any point, then the response will contain one or more errors, depending on what failed. Otherwise, the output will be returned.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » What does the orchestrator do?","id":"54","title":"What does the orchestrator do?"},"55":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » How is the orchestrator implemented in Rust?","id":"55","title":"How is the orchestrator implemented in Rust?"},"56":{"body":"In designing the orchestrator, we sought to solve the problems we had with the original smithy client. The client made heavy use of generics, allowing for increased performance, but at the cost of increased maintenance burden and increased compile times . The Rust compiler, usually very helpful, isn't well-equipped to explain trait errors when bounds are this complex, and so the resulting client was difficult to extend. Trait aliases would have helped, but they're not (at the time of writing) available. The type signatures for the old client and its call method: impl Client\nwhere C: bounds::SmithyConnector, M: bounds::SmithyMiddleware, R: retry::NewRequestPolicy,\n{ pub async fn call(&self, op: Operation) -> Result> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { self.call_raw(op).await.map(|res| res.parsed) } pub async fn call_raw( &self, op: Operation, ) -> Result, SdkError> where O: Send + Sync, E: std::error::Error + Send + Sync + 'static, Retry: Send + Sync, R::Policy: bounds::SmithyRetryPolicy, Retry: ClassifyRetry, SdkError>, // This bound is not _technically_ inferred by all the previous bounds, but in practice it // is because _we_ know that there is only implementation of Service for Parsed // (ParsedResponseService), and it will apply as long as the bounds on C, M, and R hold, // and will produce (as expected) Response = SdkSuccess, Error = SdkError. But Rust // doesn't know that -- there _could_ theoretically be other implementations of Service for // Parsed that don't return those same types. So, we must give the bound. bounds::Parsed<>::Service, O, Retry>: Service, Response=SdkSuccess, Error=SdkError> + Clone, { // The request/response lifecycle }\n} The type signature for the new orchestrate method: pub async fn orchestrate( input: Input, runtime_plugins: &RuntimePlugins, // Currently, SdkError is HTTP-only. We currently use it for backwards-compatibility purposes. // The `HttpResponse` generic will likely be removed in the future.\n) -> Result> { // The request/response lifecycle\n} Wait a second, I hear you ask. \"I see an Input and Output there, but you're not declaring any generic type arguments. What gives?\" I'm glad you asked. Generally, when you need traits, but you aren't willing to use generic type arguments, then you must Box . Polymorphism is achieved through dynamic dispatch instead of static dispatch , and this comes with a small runtime cost. So, what are Input and Output? They're our own special flavor of a boxed trait object. pub type Input = TypeErasedBox;\npub type Output = TypeErasedBox;\npub type Error = TypeErasedBox; /// A new-type around `Box`\n#[derive(Debug)]\npub struct TypeErasedBox { inner: Box,\n} The orchestrator itself doesn't know about any concrete types. Instead, it passes boxed data between the various components of the request/response lifecycle. Individual components access data in two ways: From the ConfigBag: (with an accessor) let retry_strategy = cfg.retry_strategy(); (with the get method) let retry_strategy = cfg.get::>() From the InterceptorContext: (owned) let put_object_input: PutObjectInput = ctx.take_input().unwrap().downcast().unwrap()?; (by reference) let put_object_input = ctx.input().unwrap().downcast_ref::().unwrap(); Users can only call ConfigBag::get or downcast a TypeErasedBox to types they have access to, which allows maintainers to ensure encapsulation. For example: a plugin writer may declare a private type, place it in the config bag, and then later retrieve it. Because the type is private, only code in the same crate/module can ever insert or retrieve it. Therefore, there's less worry that someone will depend on a hidden, internal detail and no worry they'll accidentally overwrite a type in the bag. NOTE: When inserting values into a config bag, using one of the set_ methods is always preferred, as this prevents mistakes related to inserting similar, but incorrect types.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Avoiding generics at all costs","id":"56","title":"Avoiding generics at all costs"},"57":{"body":"The current implementation of orchestrate is defined here , in the aws-smithy-runtime crate . Related code can be found in the aws-smithy-runtime-api crate .","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » The actual code","id":"57","title":"The actual code"},"58":{"body":"","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Frequently asked questions","id":"58","title":"Frequently asked questions"},"59":{"body":"We chose to hide the runtime plugin API from users because we are concerned that exposing it will cause more problems than it solves. Instead, we encourage users to use interceptors. This is because, when setting a runtime plugin, any existing runtime plugin with the same type will be replaced. For example, there can only be one retry strategy or response deserializer. Errors resulting from unintentionally overriding a plugin would be difficult for users to diagnose, and would consume valuable development time.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why can't users create and use their own runtime plugins?","id":"59","title":"Why can't users create and use their own runtime plugins?"},"6":{"body":"","breadcrumbs":"Tenets » Details, Justifications, and Ramifications","id":"6","title":"Details, Justifications, and Ramifications"},"60":{"body":"The orchestrator exists because there is an AWS-internal initiative to bring the architecture of all AWS SDKs closer to one another.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does the orchestrator exist?","id":"60","title":"Why does the orchestrator exist?"},"61":{"body":"Because RFCs become outdated as designs evolve. It is our intention to keep this document up to date with our current implementation.","breadcrumbs":"Client » What is the 'orchestrator' and why does it exist? » Why does this document exist when there's already an orchestrator RFC?","id":"61","title":"Why does this document exist when there's already an orchestrator RFC?"},"62":{"body":"The Smithy specification establishes several auth related modeling traits that can be applied to operation and service shapes. To briefly summarize: The auth schemes that are supported by a service are declared on the service shape Operation shapes MAY specify the subset of service-defined auth schemes they support. If none are specified, then all service-defined auth schemes are supported. A smithy code generator MUST support at least one auth scheme for every modeled operation, but it need not support ALL modeled auth schemes. This design document establishes how smithy-rs implements this specification.","breadcrumbs":"Client » Identity and Auth » Identity and Auth in Clients","id":"62","title":"Identity and Auth in Clients"},"63":{"body":"Auth: Either a shorthand that represents both of the authentication and authorization terms below, or an ambiguous representation of one of them. In this doc, this term will always refer to both. Authentication: The process of proving an entity is who they claim they are, sometimes referred to as AuthN. Authorization: The process of granting an authenticated entity the permission to do something, sometimes referred to as AuthZ. Identity: The information required for authentication. Signing: The process of attaching metadata to a request that allows a server to authenticate that request.","breadcrumbs":"Client » Identity and Auth » Terminology","id":"63","title":"Terminology"},"64":{"body":"There are two stages to identity and auth: Configuration Execution","breadcrumbs":"Client » Identity and Auth » Overview of Smithy Client Auth","id":"64","title":"Overview of Smithy Client Auth"},"65":{"body":"First, let's establish the aspects of auth that can be configured from the model at codegen time. Data AuthSchemeOptionResolverParams: parameters required to resolve auth scheme options. These parameters are allowed to come from both the client config and the operation input structs. AuthSchemes: a list of auth schemes that can be used to sign HTTP requests. This information comes directly from the service model. AuthSchemeProperties: configuration from the auth scheme for the signer. IdentityResolvers: list of available identity resolvers. Implementations IdentityResolver: resolves an identity for use in authentication. There can be multiple identity resolvers that need to be selected from. Signer: a signing implementation that signs a HTTP request. ResolveAuthSchemeOptions: resolves a list of auth scheme options for a given operation and its inputs. As it is undocumented (at time of writing), this document assumes that the code generator creates one service-level runtime plugin, and an operation-level runtime plugin per operation, hence referred to as the service runtime plugin and operation runtime plugin. The code generator emits code to add identity resolvers and HTTP auth schemes to the config bag in the service runtime plugin. It then emits code to register an interceptor in the operation runtime plugin that reads the operation input to generate the auth scheme option resolver params (which also get added to the config bag).","breadcrumbs":"Client » Identity and Auth » The configuration stage","id":"65","title":"The configuration stage"},"66":{"body":"At a high-level, the process of resolving an identity and signing a request looks as follows: Retrieve the AuthSchemeOptionResolverParams from the config bag. The AuthSchemeOptionResolverParams allow client config and operation inputs to play a role in which auth scheme option is selected. Retrieve the ResolveAuthSchemeOptions impl from the config bag, and use it to resolve the auth scheme options available with the AuthSchemeOptionResolverParams. The returned auth scheme options are in priority order. Retrieve the IdentityResolvers list from the config bag. For each auth scheme option: Attempt to find an HTTP auth scheme for that auth scheme option in the config bag (from the AuthSchemes list). If an auth scheme is found: Use the auth scheme to extract the correct identity resolver from the IdentityResolvers list. Retrieve the Signer implementation from the auth scheme. Use the IdentityResolver to resolve the identity needed for signing. Sign the request with the identity, and break out of the loop from step #4. In general, it is assumed that if an HTTP auth scheme exists for an auth scheme option, then an identity resolver also exists for that auth scheme option. Otherwise, the auth option was configured incorrectly during codegen.","breadcrumbs":"Client » Identity and Auth » The execution stage","id":"66","title":"The execution stage"},"67":{"body":"The client will use trait objects and dynamic dispatch for the IdentityResolver, Signer, and AuthSchemeOptionResolver implementations. Generics could potentially be used, but the number of generic arguments and trait bounds in the orchestrator would balloon to unmaintainable levels if each configurable implementation in it was made generic. These traits look like this: #[derive(Clone, Debug)]\npub struct AuthSchemeId { scheme_id: &'static str,\n} pub trait ResolveAuthSchemeOptions: Send + Sync + Debug { fn resolve_auth_scheme_options<'a>( &'a self, params: &AuthSchemeOptionResolverParams, ) -> Result, BoxError>;\n} pub trait IdentityResolver: Send + Sync + Debug { fn resolve_identity(&self, config: &ConfigBag) -> BoxFallibleFut;\n} pub trait Signer: Send + Sync + Debug { /// Return a signed version of the given request using the given identity. /// /// If the provided identity is incompatible with this signer, an error must be returned. fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag, ) -> Result<(), BoxError>;\n} IdentityResolver and Signer implementations are both given an Identity, but will need to understand what the concrete data type underlying that identity is. The Identity struct uses a Arc to represent the actual identity data so that generics are not needed in the traits: #[derive(Clone, Debug)]\npub struct Identity { data: Arc, expiration: Option,\n} Identities can often be cached and reused across several requests, which is why the Identity uses Arc rather than Box. This also reduces the allocations required. The signer implementations will use downcasting to access the identity data types they understand. For example, with AWS SigV4, it might look like the following: fn sign_http_request( &self, request: &mut HttpRequest, identity: &Identity, auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>, runtime_components: &RuntimeComponents, config_bag: &ConfigBag,\n) -> Result<(), BoxError> { let aws_credentials = identity.data::() .ok_or_else(|| \"The SigV4 signer requires AWS credentials\")?; let access_key = &aws_credentials.secret_access_key; // -- snip --\n} Also note that identity data structs are expected to censor their own sensitive fields, as Identity implements the automatically derived Debug trait.","breadcrumbs":"Client » Identity and Auth » How this looks in Rust","id":"67","title":"How this looks in Rust"},"68":{"body":"A keen observer would note that there is an expiration field on Identity, and may ask, \"what about non-expiring identities?\" This is the result of a limitation on Box, where it can only be downcasted to concrete types. There is no way to downcast to a dyn Trait since the information required to verify that that type is that trait is lost at compile time (a std::any::TypeId only encodes information about the concrete type). In an ideal world, it would be possible to extract the expiration like this: pub trait ExpiringIdentity { fn expiration(&self) -> SystemTime;\n} let identity: Identity = some_identity();\nif let Some(expiration) = identity.data::<&dyn ExpiringIdentity>().map(ExpiringIdentity::expiration) { // make a decision based on that expiration\n} Theoretically, you should be able to save off additional type information alongside the Box and use unsafe code to transmute to known traits, but it is difficult to implement in practice, and adds unsafe code in a security critical piece of code that could otherwise be avoided. The expiration field is a special case that is allowed onto the Identity struct directly since identity cache implementations will always need to be aware of this piece of information, and having it as an Option still allows for non-expiring identities. Ultimately, this design constrains Signer implementations to concrete types. There is no world where an Signer can operate across multiple unknown identity data types via trait, and that should be OK since the signer implementation can always be wrapped with an implementation that is aware of the concrete type provided by the identity resolver, and can do any necessary conversions.","breadcrumbs":"Client » Identity and Auth » Challenges with this Identity design","id":"68","title":"Challenges with this Identity design"},"69":{"body":"Smithy Rust provides the ability to generate a server whose operations are provided by the customer. Middleware Instrumentation Accessing Un-modelled Data The Anatomy of a Service Generating Common Service Code","breadcrumbs":"Server » Smithy Server","id":"69","title":"Smithy Server"},"7":{"body":"Some customers will use the Rust SDK as their first experience with async Rust, potentially any Rust. They may not be familiar with Tokio or the concept of an async executor. We are not afraid to have an opinion about the best solution for most customers. Other customers will come to the SDK with specific requirements. Perhaps they're integrating the SDK into a much larger project that uses async_std. Maybe they need to set custom headers, modify the user agent, or audit every request. They should be able to use the Rust SDK without forking it to meet their needs.","breadcrumbs":"Tenets » Batteries included, but replaceable.","id":"7","title":"Batteries included, but replaceable."},"70":{"body":"The following document provides a brief survey of the various positions middleware can be inserted in Smithy Rust. We use the Pokémon service as a reference model throughout. /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n}","breadcrumbs":"Server » Middleware » Middleware","id":"70","title":"Middleware"},"71":{"body":"Smithy Rust is built on top of tower . Tower is a library of modular and reusable components for building robust networking clients and servers. The tower library is centered around two main interfaces, the Service trait and the Layer trait. The Service trait can be thought of as an asynchronous function from a request to a response, async fn(Request) -> Result, coupled with a mechanism to handle back pressure , while the Layer trait can be thought of as a way of decorating a Service, transforming either the request or response. Middleware in tower typically conforms to the following pattern, a Service implementation of the form pub struct NewService { inner: S, /* auxillary data */\n} and a complementary # extern crate tower;\n# pub struct NewService { inner: S }\nuse tower::{Layer, Service}; pub struct NewLayer { /* auxiliary data */\n} impl Layer for NewLayer { type Service = NewService; fn layer(&self, inner: S) -> Self::Service { NewService { inner, /* auxiliary fields */ } }\n} The NewService modifies the behavior of the inner Service S while the NewLayer takes auxiliary data and constructs NewService from S. Customers are then able to stack middleware by composing Layers using combinators such as ServiceBuilder::layer and Stack .","breadcrumbs":"Server » Middleware » Introduction to Tower","id":"71","title":"Introduction to Tower"},"72":{"body":"One of the primary goals is to provide configurability and extensibility through the application of middleware. The customer is able to apply Layers in a variety of key places during the request/response lifecycle. The following schematic labels each configurable middleware position from A to D: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradeLayer --> [*]: HTTP Response state A { state PokemonService { state RoutingService { in --> UpgradeLayer: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state B { state C1 { state C { state UpgradeLayer { direction LR [*] --> Handler: Model Input Handler --> [*] : Model Output state D { Handler } } } } C2 C3 C4 } } } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response where UpgradeLayer is the Layer converting Smithy model structures to HTTP structures and the RoutingService is responsible for routing requests to the appropriate operation.","breadcrumbs":"Server » Middleware » Applying Middleware","id":"72","title":"Applying Middleware"},"73":{"body":"The output of the Smithy service builder provides the user with a Service implementation. A Layer can be applied around the entire Service. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# extern crate tower;\n# use std::time::Duration;\n# struct TimeoutLayer;\n# impl TimeoutLayer { fn new(t: Duration) -> Self { Self }}\n# impl Layer for TimeoutLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService};\nuse tower::Layer; let config = PokemonServiceConfig::builder().build(); // This is a HTTP `Service`.\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; // Construct `TimeoutLayer`.\nlet timeout_layer = TimeoutLayer::new(Duration::from_secs(3)); // Apply a 3 second timeout to all responses.\nlet app = timeout_layer.layer(app);","breadcrumbs":"Server » Middleware » A. Outer Middleware","id":"73","title":"A. Outer Middleware"},"74":{"body":"A single layer can be applied to all routes inside the Router. This exists as a method on the PokemonServiceConfig builder object, which is passed into the service builder. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct MetricsLayer;\n# impl MetricsLayer { pub fn new() -> Self { Self } }\n# impl Layer for MetricsLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; // Construct `MetricsLayer`.\nlet metrics_layer = MetricsLayer::new(); let config = PokemonServiceConfig::builder().layer(metrics_layer).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; Note that requests pass through this middleware immediately after routing succeeds and therefore will not be encountered if routing fails. This means that the TraceLayer in the example above does not provide logs unless routing has completed. This contrasts to middleware A , which all requests/responses pass through when entering/leaving the service.","breadcrumbs":"Server » Middleware » B. Route Middleware","id":"74","title":"B. Route Middleware"},"75":{"body":"A \"HTTP layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use std::time::Duration;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use aws_smithy_http_server::{operation::OperationShapeExt, plugin::*, operation::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# struct LoggingLayer;\n# impl LoggingLayer { pub fn new() -> Self { Self } }\n# impl Layer for LoggingLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only log on `GetPokemonSpecies` and `GetStorage` struct LoggingScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `LoggingLayer`.\nlet logging_plugin = LayerPlugin(LoggingLayer::new());\nlet logging_plugin = Scoped::new::(logging_plugin);\nlet http_plugins = HttpPlugins::new().push(logging_plugin); let config = PokemonServiceConfig::builder().http_plugin(http_plugins).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; This middleware transforms the operations HTTP requests and responses.","breadcrumbs":"Server » Middleware » C. Operation Specific HTTP Middleware","id":"75","title":"C. Operation Specific HTTP Middleware"},"76":{"body":"A \"model layer\" can be applied to specific operations. # extern crate tower;\n# extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use tower::{util::service_fn, Layer};\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::{operation::*, plugin::*};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# struct BufferLayer;\n# impl BufferLayer { pub fn new(size: usize) -> Self { Self } }\n# impl Layer for BufferLayer { type Service = S; fn layer(&self, svc: S) -> Self::Service { svc } }\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig, scope}; scope! { /// Only buffer on `GetPokemonSpecies` and `GetStorage` struct BufferScope { includes: [GetPokemonSpecies, GetStorage] }\n} // Construct `BufferLayer`.\nlet buffer_plugin = LayerPlugin(BufferLayer::new(3));\nlet buffer_plugin = Scoped::new::(buffer_plugin);\nlet config = PokemonServiceConfig::builder().model_plugin(buffer_plugin).build(); let app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; In contrast to position C , this middleware transforms the operations modelled inputs to modelled outputs.","breadcrumbs":"Server » Middleware » D. Operation Specific Model Middleware","id":"76","title":"D. Operation Specific Model Middleware"},"77":{"body":"Suppose we want to apply a different Layer to every operation. In this case, position B (PokemonService::layer) will not suffice because it applies a single Layer to all routes and while position C (Operation::layer) would work, it'd require the customer constructs the Layer by hand for every operation. Consider the following middleware: # extern crate aws_smithy_http_server;\n# extern crate tower;\nuse aws_smithy_http_server::shape_id::ShapeId;\nuse std::task::{Context, Poll};\nuse tower::Service; /// A [`Service`] that adds a print log.\npub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId\n} impl Service for PrintService\nwhere S: Service,\n{ type Response = S::Response; type Error = S::Error; type Future = S::Future; fn poll_ready(&mut self, cx: &mut Context<'_>) -> Poll> { self.inner.poll_ready(cx) } fn call(&mut self, req: R) -> Self::Future { println!(\"Hi {} in {}\", self.operation_id.name(), self.service_id.name()); self.inner.call(req) }\n} The plugin system provides a way to construct then apply Layers in position C and D , using the protocol and operation shape as parameters. An example of a PrintPlugin which prints the operation name: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\n# pub struct PrintService { inner: S, operation_id: ShapeId, service_id: ShapeId }\nuse aws_smithy_http_server::{plugin::Plugin, operation::OperationShape, service::ServiceShape}; /// A [`Plugin`] for a service builder to add a [`PrintService`] over operations.\n#[derive(Debug)]\npub struct PrintPlugin; impl Plugin for PrintPlugin\nwhere Ser: ServiceShape, Op: OperationShape,\n{ type Output = PrintService; fn apply(&self, inner: T) -> Self::Output { PrintService { inner, operation_id: Op::ID, service_id: Ser::ID, } }\n} You can provide a custom method to add your plugin to a collection of HttpPlugins or ModelPlugins via an extension trait. For example, for HttpPlugins: # extern crate aws_smithy_http_server;\n# pub struct PrintPlugin;\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack}; /// This provides a [`print`](PrintExt::print) method on [`HttpPlugins`].\npub trait PrintExt { /// Causes all operations to print the operation name when called. /// /// This works by applying the [`PrintPlugin`]. fn print(self) -> HttpPlugins>;\n} impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }\n} This allows for: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::plugin::{PluginStack, Plugin};\n# struct PrintPlugin;\n# impl Plugin for PrintPlugin { type Output = T; fn apply(&self, svc: T) -> Self::Output { svc }}\n# impl aws_smithy_http_server::plugin::HttpMarker for PrintPlugin { }\n# trait PrintExt { fn print(self) -> HttpPlugins>; }\n# impl PrintExt for HttpPlugins { fn print(self) -> HttpPlugins> { self.push(PrintPlugin) }}\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse aws_smithy_http_server::plugin::{IdentityPlugin, HttpPlugins};\nuse pokemon_service_server_sdk::{PokemonService, PokemonServiceConfig}; let http_plugins = HttpPlugins::new() // [..other plugins..] // The custom method! .print();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app /* : PokemonService> */ = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app; The custom print method hides the details of the Plugin trait from the average consumer. They interact with the utility methods on HttpPlugins and enjoy the self-contained documentation.","breadcrumbs":"Server » Middleware » Plugin System","id":"77","title":"Plugin System"},"78":{"body":"A Smithy Rust server uses the tracing crate to provide instrumentation. The customer is responsible for setting up a Subscriber in order to ingest and process events - Smithy Rust makes no prescription on the choice of Subscriber. Common choices might include: tracing_subscriber::fmt for printing to stdout. tracing-log to providing compatibility with the log . Events are emitted and spans are opened by the aws-smithy-http-server, aws-smithy-http-server-python, and generated crate. The default target is always used The tracing macros default to using the module path where the span or event originated as the target, but it may be overridden. and therefore spans and events be filtered using the EnvFilter and/or Targets filters with crate and module paths. For example, RUST_LOG=aws_smithy_http_server=warn,aws_smithy_http_server_python=error and # extern crate tracing_subscriber;\n# extern crate tracing;\n# use tracing_subscriber::filter;\n# use tracing::Level;\nlet filter = filter::Targets::new().with_target(\"aws_smithy_http_server\", Level::DEBUG); In general, Smithy Rust is conservative when using high-priority log levels: ERROR Fatal errors, resulting in the termination of the service. Requires immediate remediation. WARN Non-fatal errors, resulting in incomplete operation. Indicates service misconfiguration, transient errors, or future changes in behavior. Requires inspection and remediation. INFO Informative events, which occur inside normal operating limits. Used for large state transitions, e.g. startup/shutdown. DEBUG Informative and sparse events, which occur inside normal operating limits. Used to debug coarse-grained progress of service. TRACE Informative and frequent events, which occur inside normal operating limits. Used to debug fine-grained progress of service.","breadcrumbs":"Server » Instrumentation » Instrumentation","id":"78","title":"Instrumentation"},"79":{"body":"Smithy Rust is built on top of tower , which means that middleware can be used to encompass different periods of the lifecycle of the request and response and identify them with a span. An open-source example of such a middleware is TraceLayer provided by the tower-http crate. Smithy provides an out-the-box middleware which: Opens a DEBUG level span, prior to request handling, including the operation name and request URI and headers. Emits a DEBUG level event, after to request handling, including the response headers and status code. This is enabled via the instrument method provided by the aws_smithy_http_server::instrumentation::InstrumentExt trait. # extern crate aws_smithy_http_server;\n# extern crate pokemon_service_server_sdk;\n# use pokemon_service_server_sdk::{operation_shape::GetPokemonSpecies, input::*, output::*, error::*};\n# let handler = |req: GetPokemonSpeciesInput| async { Result::::Ok(todo!()) };\nuse aws_smithy_http_server::{ instrumentation::InstrumentExt, plugin::{IdentityPlugin, HttpPlugins}\n};\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\nuse pokemon_service_server_sdk::{PokemonServiceConfig, PokemonService}; let http_plugins = HttpPlugins::new().instrument();\nlet config = PokemonServiceConfig::builder().http_plugin(http_plugins).build();\nlet app = PokemonService::builder(config) .get_pokemon_species(handler) /* ... */ .build() .unwrap();\n# let app: PokemonService, RestJson1>> = app;","breadcrumbs":"Server » Instrumentation » Spans over the Request/Response lifecycle","id":"79","title":"Spans over the Request/Response lifecycle"},"8":{"body":"If solving a common problem isn’t obvious from the API, it should be obvious from the documentation. The SDK should guide users towards the best solutions for common tasks, first with well named methods, second with documentation, and third with real -world usage examples. Provide misuse resistant APIs. Async Rust has the potential to introduce subtle bugs; the Rust SDK should help customers avoid them.","breadcrumbs":"Tenets » Make common problems easy to solve","id":"8","title":"Make common problems easy to solve"},"80":{"body":"The Pokémon service example, located at /examples/pokemon-service, sets up a tracing Subscriber as follows: # extern crate tracing_subscriber;\nuse tracing_subscriber::{prelude::*, EnvFilter}; /// Setup `tracing::subscriber` to read the log level from RUST_LOG environment variable.\npub fn setup_tracing() { let format = tracing_subscriber::fmt::layer().pretty(); let filter = EnvFilter::try_from_default_env() .or_else(|_| EnvFilter::try_new(\"info\")) .unwrap(); tracing_subscriber::registry().with(format).with(filter).init();\n} Running the Pokémon service example using RUST_LOG=aws_smithy_http_server=debug,pokemon_service=debug cargo r and then using cargo t to run integration tests against the server, yields the following logs: 2022-09-27T09:13:35.372517Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"content-length\": \"17\"}, status_code: 200 OK at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_server_statistics, method: GET, uri: /stats, headers: {\"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374104Z DEBUG pokemon_service: attempting to authenticate storage user at pokemon-service/src/lib.rs:184 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374152Z DEBUG pokemon_service: authentication failed at pokemon-service/src/lib.rs:188 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"} 2022-09-27T09:13:35.374230Z DEBUG aws_smithy_http_server::instrumentation::service: response, headers: {\"content-type\": \"application/json\", \"x-amzn-errortype\": \"NotAuthorized\", \"content-length\": \"2\"}, status_code: 401 Unauthorized at /smithy-rs/rust-runtime/aws-smithy-http-server/src/logging/service.rs:47 in aws_smithy_http_server::instrumentation::service::request with operation: get_storage, method: GET, uri: /pokedex/{redacted}, headers: {\"passcode\": \"{redacted}\", \"host\": \"localhost:13734\"}","breadcrumbs":"Server » Instrumentation » Example","id":"80","title":"Example"},"81":{"body":"Instrumentation interacts with Smithy's sensitive trait . Sensitive data MUST NOT be exposed in things like exception messages or log output. Application of this trait SHOULD NOT affect wire logging (i.e., logging of all data transmitted to and from servers or clients). For this reason, Smithy runtime will never use tracing to emit events or open spans that include any sensitive data. This means that the customer can ingest all logs from aws-smithy-http-server and aws-smithy-http-server-* without fear of violating the sensitive trait. The Smithy runtime will not, and cannot, prevent the customer violating the sensitive trait within the operation handlers and custom middleware. It is the responsibility of the customer to not violate the sensitive contract of their own model, care must be taken. Smithy shapes can be sensitive while being coupled to the HTTP request/responses via the HTTP binding traits . This poses a risk when ingesting events which naively capture request/response information. The instrumentation middleware provided by Smithy Rust respects the sensitive trait and will replace sensitive data in its span and event with {redacted}. This feature can be seen in the Example above. For debugging purposes these redactions can be prevented using the aws-smithy-http-server feature flag, unredacted-logging. Some examples of inadvertently leaking sensitive information: Ingesting tracing events and spans from third-party crates which do not respect sensitivity. An concrete example of this would be enabling events from hyper or tokio. Applying middleware which ingests events including HTTP payloads or any other part of the HTTP request/response which can be bound.","breadcrumbs":"Server » Instrumentation » Interactions with Sensitivity","id":"81","title":"Interactions with Sensitivity"},"82":{"body":"For every Smithy Operation an input, output, and optional error are specified. This in turn constrains the function signature of the handler provided to the service builder - the input to the handler must be the input specified by the operation etc. But what if we, the customer, want to access data in the handler which is not modelled by our Smithy model? Smithy Rust provides an escape hatch in the form of the FromParts trait. In axum these are referred to as \"extractors\" . /// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n} Here Parts is the struct containing all items in a http::Request except for the HTTP body. A prolific example of a FromParts implementation is Extension: /// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n} impl FromParts for Extension\nwhere T: Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} This allows the service builder to accept the following handler async fn handler(input: ModelInput, extension: Extension) -> ModelOutput { /* ... */\n} where ModelInput and ModelOutput are specified by the Smithy Operation and SomeStruct is a struct which has been inserted, by middleware, into the http::Request::extensions . Up to 32 structures implementing FromParts can be provided to the handler with the constraint that they must be provided after the ModelInput: async fn handler(input: ModelInput, ext1: Extension, ext2: Extension, other: Other /* : FromParts */, /* ... */) -> ModelOutput { /* ... */\n} Note that the parts.extensions.remove::() in Extensions::from_parts will cause multiple Extension arguments in the handler to fail. The first extraction failure to occur is serialized via the IntoResponse trait (notice type Error: IntoResponse) and returned. The FromParts trait is public so customers have the ability specify their own implementations: struct CustomerDefined { /* ... */\n} impl

    FromParts

    for CustomerDefined { type Error = /* ... */; fn from_parts(parts: &mut Parts) -> Result { // Construct `CustomerDefined` using the request headers. let header_value = parts.headers.get(\"header-name\").ok_or(/* ... */)?; Ok(CustomerDefined { /* ... */ }) }\n} async fn handler(input: ModelInput, arg: CustomerDefined) -> ModelOutput { /* ... */\n}","breadcrumbs":"Server » Accessing Un-modelled Data » Accessing Un-modelled Data","id":"82","title":"Accessing Un-modelled Data"},"83":{"body":"What is Smithy ? At a high-level, it's a grammar for specifying services while leaving the business logic undefined. A Smithy Service specifies a collection of function signatures in the form of Operations , their purpose is to encapsulate business logic. A Smithy implementation should, for each Smithy Service, provide a builder, which accepts functions conforming to said signatures, and returns a service subject to the semantics specified by the model. This survey is disinterested in the actual Kotlin implementation of the code generator, and instead focuses on the structure of the generated Rust code and how it relates to the Smithy model. The intended audience is new contributors and users interested in internal details. During the survey we will use the pokemon.smithy model as a reference: /// A Pokémon species forms the basis for at least one Pokémon.\n@title(\"Pokémon Species\")\nresource PokemonSpecies { identifiers: { name: String }, read: GetPokemonSpecies,\n} /// A users current Pokémon storage.\nresource Storage { identifiers: { user: String }, read: GetStorage,\n} /// The Pokémon Service allows you to retrieve information about Pokémon species.\n@title(\"Pokémon Service\")\n@restJson1\nservice PokemonService { version: \"2021-12-01\", resources: [PokemonSpecies, Storage], operations: [ GetServerStatistics, DoNothing, CapturePokemon, CheckHealth ],\n} Smithy Rust will use this model to produce the following API: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::rest_json_1::{RestJson1, router::RestRouter};\n# use aws_smithy_http_server::routing::{Route, RoutingService};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*, operation_shape::*, PokemonServiceConfig, PokemonService};\n// A handler for the `GetPokemonSpecies` operation (the `PokemonSpecies` resource).\nasync fn get_pokemon_species(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let config = PokemonServiceConfig::builder().build(); // Use the service builder to create `PokemonService`.\nlet pokemon_service = PokemonService::builder(config) // Pass the handler directly to the service builder... .get_pokemon_species(get_pokemon_species) /* other operation setters */ .build() .expect(\"failed to create an instance of the Pokémon service\");\n# let pokemon_service: PokemonService, RestJson1>> = pokemon_service;","breadcrumbs":"Server » The Anatomy of a Service » The Anatomy of a Service","id":"83","title":"The Anatomy of a Service"},"84":{"body":"A Smithy Operation specifies the input, output, and possible errors of an API operation. One might characterize a Smithy Operation as syntax for specifying a function type. We represent this in Rust using the OperationShape trait: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::shape_id::ShapeId;\npub trait OperationShape { /// The name of the operation. const ID: ShapeId; /// The operation input. type Input; /// The operation output. type Output; /// The operation error. [`Infallible`](std::convert::Infallible) in the case where no error /// exists. type Error;\n}\n# use aws_smithy_http_server::operation::OperationShape as OpS;\n# impl OperationShape for T {\n# const ID: ShapeId = ::ID;\n# type Input = ::Input;\n# type Output = ::Output;\n# type Error = ::Error;\n# } For each Smithy Operation shape, /// Retrieve information about a Pokémon species.\n@readonly\n@http(uri: \"/pokemon-species/{name}\", method: \"GET\")\noperation GetPokemonSpecies { input: GetPokemonSpeciesInput, output: GetPokemonSpeciesOutput, errors: [ResourceNotFoundException],\n} the following implementation is generated # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{operation::OperationShape, shape_id::ShapeId};\n# use pokemon_service_server_sdk::{input::*, output::*, error::*};\n/// Retrieve information about a Pokémon species.\npub struct GetPokemonSpecies; impl OperationShape for GetPokemonSpecies { const ID: ShapeId = ShapeId::new(\"com.aws.example#GetPokemonSpecies\", \"com.aws.example\", \"GetPokemonSpecies\"); type Input = GetPokemonSpeciesInput; type Output = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError;\n} where GetPokemonSpeciesInput, GetPokemonSpeciesOutput are both generated from the Smithy structures and GetPokemonSpeciesError is an enum generated from the errors: [ResourceNotFoundException]. Note that the GetPokemonSpecies marker structure is a zero-sized type (ZST), and therefore does not exist at runtime - it is a way to attach operation-specific data on an entity within the type system. The following nomenclature will aid us in our survey. We describe a tower::Service as a \"model service\" if its request and response are Smithy structures, as defined by the OperationShape trait - the GetPokemonSpeciesInput, GetPokemonSpeciesOutput, and GetPokemonSpeciesError described above. Similarly, we describe a tower::Service as a \"HTTP service\" if its request and response are http structures - http::Request and http::Response. The constructors exist on the marker ZSTs as an extension trait to OperationShape, namely OperationShapeExt : # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::operation::*;\n/// An extension trait over [`OperationShape`].\npub trait OperationShapeExt: OperationShape { /// Creates a new [`Service`] for well-formed [`Handler`]s. fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized; /// Creates a new [`Service`] for well-formed [`Service`](tower::Service)s. fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized;\n}\n# use aws_smithy_http_server::operation::OperationShapeExt as OpS;\n# impl OperationShapeExt for T {\n# fn from_handler(handler: H) -> IntoService where H: Handler, Self: Sized { ::from_handler(handler) }\n# fn from_service(svc: S) -> Normalize where S: OperationService, Self: Sized { ::from_service(svc) }\n# } Observe that there are two constructors provided: from_handler which takes a H: Handler and from_service which takes a S: OperationService. In both cases Self is passed as a parameter to the traits - this constrains handler: H and svc: S to the signature given by the implementation of OperationShape on Self. The Handler and OperationService both serve a similar purpose - they provide a common interface for converting to a model service S. The Handler trait covers all async functions taking GetPokemonSpeciesInput and asynchronously returning a Result. The OperationService trait covers all tower::Services with request GetPokemonSpeciesInput, response GetPokemonSpeciesOutput and error GetPokemonSpeciesOutput. The from_handler constructor is used in the following way: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt; async fn get_pokemon_service(input: GetPokemonSpeciesInput) -> Result { todo!()\n} let operation = GetPokemonSpecies::from_handler(get_pokemon_service); Alternatively, from_service constructor: # extern crate pokemon_service_server_sdk;\n# extern crate aws_smithy_http_server;\n# extern crate tower;\nuse pokemon_service_server_sdk::{ input::GetPokemonSpeciesInput, output::GetPokemonSpeciesOutput, error::GetPokemonSpeciesError, operation_shape::GetPokemonSpecies\n};\nuse aws_smithy_http_server::operation::OperationShapeExt;\nuse std::task::{Context, Poll};\nuse tower::Service; struct Svc { /* ... */\n} impl Service for Svc { type Response = GetPokemonSpeciesOutput; type Error = GetPokemonSpeciesError; type Future = /* Future> */ # std::future::Ready>; fn poll_ready(&mut self, ctx: &mut Context<'_>) -> Poll> { todo!() } fn call(&mut self, input: GetPokemonSpeciesInput) -> Self::Future { todo!() }\n} let svc: Svc = Svc { /* ... */ };\nlet operation = GetPokemonSpecies::from_service(svc); To summarize a model service constructed can be constructed from a Handler or a OperationService subject to the constraints of an OperationShape. More detailed information on these conversions is provided in the Handler and OperationService section Rust docs.","breadcrumbs":"Server » The Anatomy of a Service » Operations","id":"84","title":"Operations"},"85":{"body":"A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use aws_smithy_http_server::body::BoxBody;\n# use std::future::Future;\n/// Provides a protocol aware extraction from a [`Request`]. This consumes the\n/// [`Request`], in contrast to [`FromParts`].\npub trait FromRequest: Sized { type Rejection: IntoResponse; type Future: Future>; /// Extracts `self` from a [`Request`] asynchronously. fn from_request(request: http::Request) -> Self::Future;\n} /// A protocol aware function taking `self` to [`http::Response`].\npub trait IntoResponse { /// Performs a conversion into a [`http::Response`]. fn into_response(self) -> http::Response;\n}\n# use aws_smithy_http_server::request::FromRequest as FR;\n# impl> FromRequest for T {\n# type Rejection = >::Rejection;\n# type Future = >::Future;\n# fn from_request(request: http::Request) -> Self::Future {\n# >::from_request(request)\n# }\n# }\n# use aws_smithy_http_server::response::IntoResponse as IR;\n# impl> IntoResponse

    for T {\n# fn into_response(self) -> http::Response { >::into_response(self) }\n# } Note that both traits are parameterized by Protocol. These protocols exist as ZST marker structs: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::protocol::{\n# aws_json_10::AwsJson1_0 as _,\n# aws_json_11::AwsJson1_1 as _,\n# rest_json_1::RestJson1 as _,\n# rest_xml::RestXml as _,\n# };\n/// [AWS REST JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restjson1-protocol.html).\npub struct RestJson1; /// [AWS REST XML Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-restxml-protocol.html).\npub struct RestXml; /// [AWS JSON 1.0 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_0-protocol.html).\npub struct AwsJson1_0; /// [AWS JSON 1.1 Protocol](https://awslabs.github.io/smithy/2.0/aws/protocols/aws-json-1_1-protocol.html).\npub struct AwsJson1_1;","breadcrumbs":"Server » The Anatomy of a Service » Serialization and Deserialization","id":"85","title":"Serialization and Deserialization"},"86":{"body":"We can \"upgrade\" a model service to a HTTP service using FromRequest and IntoResponse described in the prior section: stateDiagram-v2 direction LR HttpService: HTTP Service [*] --> from_request: HTTP Request state HttpService { direction LR ModelService: Model Service from_request --> ModelService: Model Input ModelService --> into_response: Model Output } into_response --> [*]: HTTP Response This is formalized by the Upgrade HTTP service. The tower::Service implementation is approximately: impl Service for Upgrade\nwhere Input: FromRequest, S: Service, S::Response: IntoResponse

    , S::Error: IntoResponse

    ,\n{ async fn call(&mut self, request: http::Request) -> http::Response { let model_request = match ::from_request(request).await { Ok(ok) => ok, Err(err) => return err.into_response() }; let model_response = self.model_service.call(model_request).await; model_response.into_response() }\n} When we GetPokemonSpecies::from_handler or GetPokemonSpecies::from_service, the model service produced, S, will meet the constraints above. There is an associated Plugin, UpgradePlugin which constructs Upgrade from a service. The upgrade procedure is finalized by the application of the Layer L, referenced in Operation. In this way the entire upgrade procedure takes an Operation and returns a HTTP service. stateDiagram-v2 direction LR [*] --> UpgradePlugin: HTTP Request state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } UpgradePlugin --> [*]: HTTP Response Note that the S is specified by logic written, in Rust, by the customer, whereas UpgradePlugin is specified entirely by Smithy model via the protocol, HTTP bindings , etc.","breadcrumbs":"Server » The Anatomy of a Service » Upgrading a Model Service","id":"86","title":"Upgrading a Model Service"},"87":{"body":"Different protocols supported by Smithy enjoy different routing mechanisms, for example, AWS JSON 1.0 uses the X-Amz-Target header to select an operation, whereas AWS REST XML uses the HTTP label trait . Despite their differences, all routing mechanisms satisfy a common interface. This is formalized using the Router trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n/// An interface for retrieving an inner [`Service`] given a [`http::Request`].\npub trait Router { type Service; type Error; /// Matches a [`http::Request`] to a target [`Service`]. fn match_route(&self, request: &http::Request) -> Result;\n} which provides the ability to determine an inner HTTP service from a collection using a &http::Request. Types which implement the Router trait are converted to a HTTP service via the RoutingService struct: /// A [`Service`] using a [`Router`] `R` to redirect messages to specific routes.\n///\n/// The `Protocol` parameter is used to determine the serialization of errors.\npub struct RoutingService { router: R, _protocol: PhantomData,\n} impl Service for RoutingService\nwhere R: Router, R::Service: Service, R::Error: IntoResponse

    + Error,\n{ type Response = http::Response; type Error = /* implementation detail */; async fn call(&mut self, req: http::Request) -> Result { match self.router.match_route(&req) { // Successfully routed, use the routes `Service::call`. Ok(ok) => ok.oneshot(req).await, // Failed to route, use the `R::Error`s `IntoResponse

    `. Err(error) => { debug!(%error, \"failed to route\"); Err(Box::new(error.into_response())) } } }\n} The RouterService is the final piece necessary to form a functioning composition - it is used to aggregate together the HTTP services, created via the upgrade procedure, into a single HTTP service which can be presented to the customer. stateDiagram\nstate in <<fork>> direction LR [*] --> in state RouterService { direction LR in --> ServiceA in --> ServiceB in --> ServiceC } ServiceA --> [*] ServiceB --> [*] ServiceC --> [*]","breadcrumbs":"Server » The Anatomy of a Service » Routers","id":"87","title":"Routers"},"88":{"body":"A Plugin is a [tower::Layer] with two extra type parameters, Service and Operation, corresponding to Smithy Service and Smithy Operation . This allows the middleware to be parameterized them and change behavior depending on the context in which it's applied. # extern crate aws_smithy_http_server;\npub trait Plugin { type Output; fn apply(&self, input: T) -> Self::Output;\n}\n# use aws_smithy_http_server::plugin::Plugin as Pl;\n# impl> Plugin for U {\n# type Output = >::Output;\n# fn apply(&self, input: T) -> Self::Output { >::apply(self, input) }\n# } An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs . Plugins can be applied in two places: HTTP plugins, which are applied pre-deserialization/post-serialization, acting on HTTP requests/responses. Model plugins, which are applied post-deserialization/pre-serialization, acting on model inputs/outputs/errors. stateDiagram-v2 direction LR [*] --> S: HTTP Request state HttpPlugin { state UpgradePlugin { state ModelPlugin { S } } } S --> [*]: HTTP Response The service builder API requires plugins to be specified upfront - they must be registered in the config object, which is passed as an argument to builder. Plugins cannot be modified afterwards. You might find yourself wanting to apply multiple plugins to your service. This can be accommodated via [HttpPlugins] and [ModelPlugins]. # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::HttpPlugins;\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as MetricsPlugin; let http_plugins = HttpPlugins::new().push(LoggingPlugin).push(MetricsPlugin); The plugins' runtime logic is executed in registration order. In the example above, LoggingPlugin would run first, while MetricsPlugin is executed last. If you are vending a plugin, you can leverage HttpPlugins or ModelPlugins as an extension point: you can add custom methods to it using an extension trait. For example: # extern crate aws_smithy_http_server;\nuse aws_smithy_http_server::plugin::{HttpPlugins, PluginStack};\n# use aws_smithy_http_server::plugin::IdentityPlugin as LoggingPlugin;\n# use aws_smithy_http_server::plugin::IdentityPlugin as AuthPlugin; pub trait AuthPluginExt { fn with_auth(self) -> HttpPlugins>;\n} impl AuthPluginExt for HttpPlugins { fn with_auth(self) -> HttpPlugins> { self.push(AuthPlugin) }\n} let http_plugins = HttpPlugins::new() .push(LoggingPlugin) // Our custom method! .with_auth();","breadcrumbs":"Server » The Anatomy of a Service » Plugins","id":"88","title":"Plugins"},"89":{"body":"The service builder is the primary public API, generated for every Smithy Service . At a high-level, the service builder takes as input a function for each Smithy Operation and returns a single HTTP service. The signature of each function, also known as handlers , must match the constraints of the corresponding Smithy model. You can create an instance of a service builder by calling builder on the corresponding service struct. # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::routing::Route;\n/// The service builder for [`PokemonService`].\n///\n/// Constructed via [`PokemonService::builder`].\npub struct PokemonServiceBuilder { capture_pokemon_operation: Option>, empty_operation: Option>, get_pokemon_species: Option>, get_server_statistics: Option>, get_storage: Option>, health_check_operation: Option>, http_plugin: HttpPl, model_plugin: ModelPl,\n} The builder has two setter methods for each Smithy Operation in the Smithy Service : pub fn get_pokemon_species(self, handler: HandlerType) -> Self where HandlerType:Handler, ModelPl: Plugin< PokemonService, GetPokemonSpecies, IntoService >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_handler(handler); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new() .apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_service(self, service: S) -> Self where S: OperationService, ModelPl: Plugin< PokemonService, GetPokemonSpecies, Normalize >, UpgradePlugin::: Plugin< PokemonService, GetPokemonSpecies, ModelPlugin::Output >, HttpPl: Plugin< PokemonService, GetPokemonSpecies, UpgradePlugin::::Output >, { let svc = GetPokemonSpecies::from_service(service); let svc = self.model_plugin.apply(svc); let svc = UpgradePlugin::::new().apply(svc); let svc = self.http_plugin.apply(svc); self.get_pokemon_species_custom(svc) } pub fn get_pokemon_species_custom(mut self, svc: S) -> Self where S: Service, Response = Response, Error = Infallible>, { self.get_pokemon_species = Some(Route::new(svc)); self } Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise. You can transform a builder instance into a complete service (PokemonService) using one of the following methods: build. The transformation fails if one or more operations do not have a registered handler; build_unchecked. The transformation never fails, but we return 500s for all operations that do not have a registered handler. Both builder methods take care of: Pair each handler with the routing information for the corresponding operation; Collect all (routing_info, handler) pairs into a Router; Transform the Router implementation into a HTTP service via RouterService; Wrap the RouterService in a newtype given by the service name, PokemonService. The final outcome, an instance of PokemonService, looks roughly like this: # extern crate aws_smithy_http_server;\n# use aws_smithy_http_server::{routing::RoutingService, protocol::rest_json_1::{router::RestRouter, RestJson1}};\n/// The Pokémon Service allows you to retrieve information about Pokémon species.\n#[derive(Clone)]\npub struct PokemonService { router: RoutingService, RestJson1>,\n} The following schematic summarizes the composition: stateDiagram-v2 state in <<fork>> state \"GetPokemonSpecies\" as C1 state \"GetStorage\" as C2 state \"DoNothing\" as C3 state \"...\" as C4 direction LR [*] --> in : HTTP Request UpgradePlugin --> [*]: HTTP Response state PokemonService { state RoutingService { in --> UpgradePlugin: HTTP Request in --> C2: HTTP Request in --> C3: HTTP Request in --> C4: HTTP Request state C1 { state HttpPlugin { state UpgradePlugin { direction LR [*] --> S: Model Input S --> [*] : Model Output state ModelPlugin { S } } } } C2 C3 C4 } } C2 --> [*]: HTTP Response C3 --> [*]: HTTP Response C4 --> [*]: HTTP Response","breadcrumbs":"Server » The Anatomy of a Service » Builders","id":"89","title":"Builders"},"9":{"body":"APIs evolve in unpredictable ways, and it's crucial that the SDK can evolve without breaking existing customers. This means designing the SDK so that fundamental changes to the internals can be made without altering the external interface we surface to customers: Keeping the shared core as small & opaque as possible. Don’t leak our internal dependencies to customers With every design choice, consider, \"Can I reverse this choice in the future?\" This may not result in DRY code, and that’s OK! Code that is auto generated has different goals and tradeoffs than code that has been written by hand.","breadcrumbs":"Tenets » Design for the Future","id":"9","title":"Design for the Future"},"90":{"body":"An additional omitted detail is that we provide an \"escape hatch\" allowing Handlers and OperationServices to accept data that isn't modelled. In addition to accepting Op::Input they can accept additional arguments which implement the FromParts trait: # extern crate aws_smithy_http_server;\n# extern crate http;\n# use http::request::Parts;\n# use aws_smithy_http_server::response::IntoResponse;\n/// Provides a protocol aware extraction from a [`Request`]. This borrows the\n/// [`Parts`], in contrast to [`FromRequest`].\npub trait FromParts: Sized { /// The type of the failures yielded extraction attempts. type Rejection: IntoResponse; /// Extracts `self` from a [`Parts`] synchronously. fn from_parts(parts: &mut Parts) -> Result;\n}\n# use aws_smithy_http_server::request::FromParts as FP;\n# impl> FromParts

    for T {\n# type Rejection = >::Rejection;\n# fn from_parts(parts: &mut Parts) -> Result { >::from_parts(parts) }\n# } This differs from FromRequest trait, introduced in Serialization and Deserialization , as it's synchronous and has non-consuming access to Parts , rather than the entire Request . pub struct Parts { pub method: Method, pub uri: Uri, pub version: Version, pub headers: HeaderMap, pub extensions: Extensions, /* private fields */\n} This is commonly used to access types stored within Extensions which have been inserted by a middleware. An Extension struct implements FromParts to support this use case: # extern crate aws_smithy_http_server;\n# extern crate http;\n# extern crate thiserror;\n# use aws_smithy_http_server::{body::BoxBody, request::FromParts, response::IntoResponse};\n# use http::status::StatusCode;\n# use thiserror::Error;\n# fn empty() -> BoxBody { todo!() }\n/// Generic extension type stored in and extracted from [request extensions].\n///\n/// This is commonly used to share state across handlers.\n///\n/// If the extension is missing it will reject the request with a `500 Internal\n/// Server Error` response.\n///\n/// [request extensions]: https://docs.rs/http/latest/http/struct.Extensions.html\n#[derive(Debug, Clone)]\npub struct Extension(pub T); impl FromParts for Extension\nwhere T: Clone + Send + Sync + 'static,\n{ type Rejection = MissingExtension; fn from_parts(parts: &mut http::request::Parts) -> Result { parts.extensions.remove::().map(Extension).ok_or(MissingExtension) }\n} /// The extension has not been added to the [`Request`](http::Request) or has been previously removed.\n#[derive(Debug, Error)]\n#[error(\"the `Extension` is not present in the `http::Request`\")]\npub struct MissingExtension; impl IntoResponse for MissingExtension { fn into_response(self) -> http::Response { let mut response = http::Response::new(empty()); *response.status_mut() = StatusCode::INTERNAL_SERVER_ERROR; response }\n}","breadcrumbs":"Server » The Anatomy of a Service » Accessing Unmodelled Data","id":"90","title":"Accessing Unmodelled Data"},"91":{"body":"This document introduces the project and how code is being generated. It is written for developers who want to start contributing to smithy-rs.","breadcrumbs":"Server » Generating Common Service Code » Generating Common Service Code","id":"91","title":"Generating Common Service Code"},"92":{"body":"The project is divided in: /codegen-core: contains common code to be used for both client and server code generation /codegen-client: client code generation. Depends on codegen-core /codegen-server: server code generation. Depends on codegen-core /aws: the AWS Rust SDK, it deals with AWS services specifically. The folder structure reflects the project's, with the rust-runtime and the codegen /rust-runtime: the generated client and server crates may depend on crates in this folder. Crates here are not code generated. The only crate that is not published is inlineable, which contains common functions used by other crates, copied into the source crate Crates in /rust-runtime (informally referred to as \"runtime crates\") are added to a crate's dependency only when used. For example, if a model uses event streams, the generated crates will depend on aws-smithy-eventstream .","breadcrumbs":"Server » Generating Common Service Code » Folder structure","id":"92","title":"Folder structure"},"93":{"body":"smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and inherits from SmithyBuildPlugin in smithy-build . Code generation is in Kotlin and shared common, non-Rust specific code with the smithy Java repository . They plug into the Smithy gradle plugin, which is a gradle plugin. The comment at the beginning of execute describes what a Decorator is and uses the following terms: Context: contains the model being generated, projection and settings for the build Decorator: (also referred to as customizations) customizes how code is being generated. AWS services are required to sign with the SigV4 protocol, and a decorator adds Rust code to sign requests and responses. Decorators are applied in reverse order of being added and have a priority order. Writer: creates files and adds content; it supports templating, using # for substitutions Location: the file where a symbol will be written to The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method. CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor . CodegenVisitor, RustCodegenPlugin, and wherever there are different implementations between client and server, such as in generating error types, have corresponding server versions. Objects used throughout code generation are: Symbol: a node in a graph, an abstraction that represents the qualified name of a type; symbols reference and depend on other symbols, and have some common properties among languages (such as a namespace or a definition file). For Rust, we add properties to include more metadata about a symbol, such as its type RustType : Option, HashMap, ... along with their namespaces of origin such as std::collections RuntimeType : the information to locate a type, plus the crates it depends on ShapeId : an immutable object that identifies a Shape Useful conversions are: SymbolProvider.toSymbol(shape) where SymbolProvider constructs symbols for shapes. Some symbols require to create other symbols and types; event streams and other streaming shapes are an example. Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider , and all other providers will work with this new symbol. Model.expectShape(shapeId) Each model has a shapeId to shape map; this method returns the shape associated with this shapeId. Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape. CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust ; here is how a service is constructed, here a structure and so on. Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis . The complete result is a Rust crate , in which all dependencies are written into their modules and lib.rs is generated ( here ). execute() ends by running cargo fmt , to avoid having to format correctly Rust in Writers and to be sure the generated code follows the styling rules.","breadcrumbs":"Server » Generating Common Service Code » Generating code","id":"93","title":"Generating code"},"94":{"body":"What is an RFC?: An RFC is a document that proposes a change to smithy-rs or the AWS Rust SDK. Request for Comments means a request for discussion and oversight about the future of the project from maintainers, contributors and users. When should I write an RFC?: The AWS Rust SDK team proactively decides to write RFCs for major features or complex changes that we feel require extra scrutiny. However, the process can be used to request feedback on any change. Even changes that seem obvious and simple at first glance can be improved once a group of interested and experienced people have a chance to weigh in. Who can submit an RFC?: An RFC can be submitted by anyone. In most cases, RFCs are authored by SDK maintainers, but everyone is welcome to submit RFCs. Where do I start?: If you're ready to write and submit an RFC, please start a GitHub discussion with a summary of what you're trying to accomplish first. That way, the AWS Rust SDK team can ensure they have the bandwidth to review and shepherd the RFC through the whole process before you've expended effort in writing it. Once you've gotten the go-ahead, start with the RFC template .","breadcrumbs":"RFCs » RFCs","id":"94","title":"RFCs"},"95":{"body":"RFC-0001: AWS Configuration RFC-0002: Supporting multiple HTTP versions for SDKs that use Event Stream RFC-0003: API for Presigned URLs RFC-0004: Retry Behavior RFC-0005: Service Generation RFC-0006: Service-specific middleware RFC-0007: Split Release Process RFC-0008: Paginators RFC-0009: Example Consolidation RFC-0010: Waiters RFC-0011: Publishing Alpha to Crates.io RFC-0012: Independent Crate Versioning RFC-0013: Body Callback APIs RFC-0014: Fine-grained timeout configuration RFC-0015: How Cargo \"features\" should be used in the SDK and runtime crates RFC-0016: Supporting Flexible Checksums RFC-0017: Customizable Client Operations RFC-0018: Logging in the Presence of Sensitive Data RFC-0019: Event Streams Errors RFC-0020: Service Builder Improvements RFC-0021: Dependency Versions RFC-0022: Error Context and Compatibility RFC-0023: Evolving the new service builder API RFC-0024: RequestID RFC-0025: Constraint traits RFC-0026: Client Crate Organization RFC-0027: Endpoints 2.0 RFC-0028: SDK Credential Cache Type Safety RFC-0029: Finding New Home for Credential Types RFC-0030: Serialization And Deserialization RFC-0031: Providing Fallback Credentials on Timeout RFC-0032: Better Constraint Violations RFC-0033: Improving access to request IDs in SDK clients RFC-0034: The Orchestrator Architecture RFC-0035: Sensible Defaults for Collection Values RFC-0036: Enabling HTTP crate upgrades in the future RFC-0037: The HTTP wrapper type","breadcrumbs":"RFCs » Previously Submitted RFCs","id":"95","title":"Previously Submitted RFCs"},"96":{"body":"Status: Implemented. For an ordered list of proposed changes see: Proposed changes . An AWS SDK loads configuration from multiple locations. Some of these locations can be loaded synchronously. Some are async. Others may actually use AWS services such as STS or SSO. This document proposes an overhaul to the configuration design to facilitate three things: Future-proof: It should be easy to add additional sources of region and credentials, sync and async, from many sources, including code-generated AWS services. Ergonomic: There should be one obvious way to create an AWS service client. Customers should be able to easily customize the client to make common changes. It should encourage sharing of things that are expensive to create. Shareable: A config object should be usable to configure multiple AWS services.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » AWS Configuration RFC","id":"96","title":"AWS Configuration RFC"},"97":{"body":"The following is an imagined usage guide if this RFC where implemented.","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Usage Guide","id":"97","title":"Usage Guide"},"98":{"body":"Using the SDK requires two crates: aws-sdk-: The service you want to use (e.g. dynamodb, s3, sesv2) aws-config: AWS metaconfiguration. This crate contains all the of logic to load configuration for the SDK (regions, credentials, retry configuration, etc.) Add the following to your Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Let's write a small example project to list tables: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let config = aws_config::load_from_env().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n} Tip: Every AWS service exports a top level Error type (e.g. aws_sdk_dynamodb::Error ). Individual operations return specific error types that contain only the error variants returned by the operation . Because all the individual errors implement Into, you can use dynamodb::Error as the return type along with ?. Next, we'll explore some other ways to configure the SDK. Perhaps you want to override the region loaded from the environment with your region. In this case, we'll want more control over how we load config, using aws_config::from_env() directly: use aws_sdk_dynamodb as dynamodb; #[tokio::main]\nasync fn main() -> Result<(), dynamodb::Error> { let region_provider = RegionProviderChain::default_provider().or_else(\"us-west-2\"); let config = aws_config::from_env().region(region_provider).load().await; let dynamodb = dynamodb::Client::new(&config); let resp = dynamodb.list_tables().send().await; println!(\"my tables: {}\", resp.tables.unwrap_or_default()); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Getting Started","id":"98","title":"Getting Started"},"99":{"body":"The Config produced by aws-config can be used with any AWS service. If we wanted to read our Dynamodb DB tables aloud with Polly, we could create a Polly client as well. First, we'll need to add Polly to our Cargo.toml: [dependencies]\naws-sdk-dynamo = \"0.1\"\naws-sdk-polly = \"0.1\"\naws-config = \"0.5\" tokio = { version = \"1\", features = [\"full\"] } Then, we can use the shared configuration to build both service clients. The region override will apply to both clients: use aws_sdk_dynamodb as dynamodb;\nuse aws_sdk_polly as polly; #[tokio::main]\nasync fn main() -> Result<(), Box> { // error type changed to `Box` because we now have dynamo and polly errors let config = aws_config::env_loader().with_region(Region::new(\"us-west-2\")).load().await; let dynamodb = dynamodb::Client::new(&config); let polly = polly::Client::new(&config); let resp = dynamodb.list_tables().send().await; let tables = resp.tables.unwrap_or_default(); let table_sentence = format!(\"my dynamo DB tables are: {}\", tables.join(\", \")); let audio = polly.synthesize_speech() .output_format(OutputFormat::Mp3) .text(table_sentence) .voice_id(VoiceId::Joanna) .send() .await?; // Get MP3 data from the response and save it let mut blob = resp .audio_stream .collect() .await .expect(\"failed to read data\"); let mut file = tokio::fs::File::create(\"tables.mp3\") .await .expect(\"failed to create file\"); file.write_all_buf(&mut blob) .await .expect(\"failed to write to file\"); Ok(())\n}","breadcrumbs":"RFCs » RFC-0001: Sharing configuration between multiple clients » Sharing configuration between multiple services","id":"99","title":"Sharing configuration between multiple services"}},"length":510,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"294":{"tf":1.0}}}},"0":{"0":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":1,"docs":{"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"8":{"df":1,"docs":{"95":{"tf":1.0}}},"9":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":1,"docs":{"95":{"tf":1.0}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"5":{"df":1,"docs":{"95":{"tf":1.0}}},"6":{"df":2,"docs":{"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.4142135623730951},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":6,"docs":{"346":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"426":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":17,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":43,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":28,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.0},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0},"465":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.7320508075688772},"505":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"264":{"tf":1.0},"34":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":2.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":27,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"69":{"tf":1.0},"83":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":77,"docs":{"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.449489742783178},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0},"448":{"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.0},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.0},"292":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.0}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907},"66":{"tf":3.605551275463989}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":10,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"169":{"tf":3.605551275463989},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.0},"504":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.449489742783178},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.605551275463989},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":20,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}}}}}},"df":19,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.0},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":2.0},"14":{"tf":3.3166247903554},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.4142135623730951},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.0},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":27,"docs":{"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.0},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.0},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":33,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.7320508075688772},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":2.6457513110645907},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":11,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":6,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":65,"docs":{"1":{"tf":1.0},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":3.0},"276":{"tf":1.4142135623730951},"278":{"tf":2.449489742783178},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"312":{"tf":2.449489742783178},"313":{"tf":4.242640687119285},"314":{"tf":2.23606797749979},"316":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":2.8284271247461903},"336":{"tf":1.0},"338":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.0},"397":{"tf":2.0},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":20,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.6457513110645907},"364":{"tf":1.7320508075688772},"366":{"tf":3.1622776601683795},"367":{"tf":2.449489742783178},"368":{"tf":4.123105625617661},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":4.47213595499958},"200":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.0}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":80,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.0},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":13,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"108":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"251":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.7320508075688772},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":3.872983346207417},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":7.54983443527075},"227":{"tf":4.242640687119285},"228":{"tf":5.385164807134504},"229":{"tf":3.1622776601683795},"230":{"tf":2.0},"231":{"tf":4.47213595499958},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":2.6457513110645907},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.7320508075688772},"495":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.242640687119285},"490":{"tf":2.0},"491":{"tf":3.7416573867739413},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.449489742783178},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":120,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.4641016151377544},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.449489742783178},"234":{"tf":2.23606797749979},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.6457513110645907},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":2.449489742783178},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"447":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.6457513110645907},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":3.1622776601683795},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.0}}}}}}},"t":{"df":37,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.23606797749979},"290":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.23606797749979},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.6457513110645907},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.0},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.0},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.0},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":71,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"21":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":4.123105625617661},"460":{"tf":3.0},"485":{"tf":1.4142135623730951},"486":{"tf":2.0},"488":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.6457513110645907},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.449489742783178},"112":{"tf":3.1622776601683795},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.4142135623730951},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.0},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.0},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":31,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":3.7416573867739413},"324":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"330":{"tf":2.0},"331":{"tf":1.7320508075688772},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":3.3166247903554},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":2.23606797749979},"432":{"tf":2.23606797749979},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"299":{"tf":1.0},"301":{"tf":1.7320508075688772},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.7320508075688772},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.0},"509":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.0},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.4142135623730951},"412":{"tf":1.0},"482":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":128,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.6457513110645907},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":2.449489742783178},"188":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":3.872983346207417},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":2.23606797749979},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"337":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":14,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":1.7320508075688772},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":93,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.6457513110645907},"364":{"tf":1.4142135623730951},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":35,"docs":{"0":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.449489742783178},"363":{"tf":2.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":2.6457513110645907},"369":{"tf":2.0},"371":{"tf":1.0},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"410":{"tf":2.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":3.3166247903554},"415":{"tf":3.605551275463989},"416":{"tf":2.0},"418":{"tf":4.0},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.6457513110645907},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":76,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":2.23606797749979},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"90":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"240":{"tf":1.0},"248":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":65,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.0},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.0},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.0},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":69,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":2.0},"472":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":36,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.449489742783178},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"398":{"tf":1.0},"405":{"tf":2.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":48,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"11":{"tf":1.0},"143":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.23606797749979},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.4142135623730951},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.0},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.0},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.0},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.6457513110645907},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":37,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":9,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"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":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.0},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.0},"504":{"tf":2.23606797749979},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.0},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":32,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":2.6457513110645907},"347":{"tf":2.8284271247461903},"349":{"tf":3.4641016151377544},"350":{"tf":4.795831523312719},"351":{"tf":4.47213595499958},"352":{"tf":2.6457513110645907},"353":{"tf":2.0},"354":{"tf":2.23606797749979},"356":{"tf":1.0},"357":{"tf":2.449489742783178},"359":{"tf":3.0},"361":{"tf":2.6457513110645907},"42":{"tf":1.0},"43":{"tf":3.605551275463989},"44":{"tf":3.7416573867739413},"459":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.0},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"313":{"tf":3.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":2.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":123,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":4.795831523312719},"262":{"tf":2.449489742783178},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"280":{"tf":1.0},"287":{"tf":3.605551275463989},"289":{"tf":3.872983346207417},"290":{"tf":3.1622776601683795},"291":{"tf":3.0},"293":{"tf":3.0},"294":{"tf":2.6457513110645907},"295":{"tf":3.605551275463989},"296":{"tf":2.8284271247461903},"297":{"tf":4.69041575982343},"298":{"tf":3.0},"299":{"tf":2.6457513110645907},"300":{"tf":1.7320508075688772},"301":{"tf":3.605551275463989},"303":{"tf":1.4142135623730951},"305":{"tf":2.23606797749979},"306":{"tf":2.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.0},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"108":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.449489742783178},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":133,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":3.0},"165":{"tf":2.23606797749979},"166":{"tf":3.1622776601683795},"167":{"tf":2.6457513110645907},"169":{"tf":3.605551275463989},"170":{"tf":3.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.0},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":56,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.23606797749979},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.0},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.23606797749979},"398":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":2.23606797749979},"418":{"tf":2.449489742783178},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":2,"docs":{"10":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":13,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":3.3166247903554},"217":{"tf":2.449489742783178},"218":{"tf":2.6457513110645907},"219":{"tf":2.6457513110645907},"220":{"tf":2.6457513110645907},"221":{"tf":4.47213595499958},"222":{"tf":2.6457513110645907},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":2.8284271247461903},"381":{"tf":2.6457513110645907},"382":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":2.0},"508":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.8284271247461903},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":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":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":15,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":9,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"204":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.0},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":3,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":12,"docs":{"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.0},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"382":{"tf":1.7320508075688772},"383":{"tf":1.4142135623730951},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.7320508075688772},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":1.7320508075688772},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":44,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"201":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.6457513110645907},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":1.7320508075688772},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":3.0},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":6,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"369":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{"483":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":4,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":16,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":111,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.0},"110":{"tf":2.23606797749979},"111":{"tf":2.449489742783178},"112":{"tf":2.449489742783178},"113":{"tf":2.6457513110645907},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":2.0},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":3.1622776601683795},"471":{"tf":3.605551275463989},"472":{"tf":3.0},"475":{"tf":3.4641016151377544},"476":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":2.0},"482":{"tf":2.23606797749979},"484":{"tf":1.4142135623730951},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"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":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.0},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":25,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.1622776601683795},"434":{"tf":1.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":2.23606797749979},"67":{"tf":4.0},"68":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}},"i":{"df":12,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":4,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.449489742783178},"439":{"tf":2.23606797749979},"440":{"tf":1.7320508075688772},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":55,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"12":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":1.7320508075688772},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":1.7320508075688772},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.23606797749979},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.0},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":2.449489742783178},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.23606797749979}}}}}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.0},"506":{"tf":1.0},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":29,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":1.7320508075688772},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"163":{"tf":1.0},"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.6457513110645907},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":46,"docs":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":1.7320508075688772},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":38,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.449489742783178},"243":{"tf":1.4142135623730951},"244":{"tf":2.449489742783178},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"248":{"tf":2.6457513110645907},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":2.449489742783178},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":7,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.23606797749979},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.23606797749979},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"423":{"tf":1.0}}}},"df":1,"docs":{"325":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.0},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.7320508075688772},"465":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":43,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.23606797749979},"141":{"tf":2.8284271247461903},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.1622776601683795},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":3.3166247903554},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.6457513110645907},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.123105625617661},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":1.7320508075688772},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":10,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.242640687119285},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"340":{"tf":2.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.7320508075688772},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":35,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.4142135623730951},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"494":{"tf":1.0},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.23606797749979},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":97,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.23606797749979},"402":{"tf":1.7320508075688772},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.0},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":23,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":36,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.7320508075688772},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.0},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"236":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":143,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"232":{"tf":1.4142135623730951},"234":{"tf":2.0},"235":{"tf":1.0},"236":{"tf":2.0},"239":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.4641016151377544},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.1622776601683795},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.4142135623730951},"44":{"tf":2.23606797749979},"445":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.7320508075688772},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.605551275463989},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"437":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.0},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"310":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":2.23606797749979},"459":{"tf":1.7320508075688772},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":3.1622776601683795},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.4142135623730951},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"112":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.0},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":14,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"408":{"tf":1.0},"438":{"tf":3.0},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":36,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":3.872983346207417},"156":{"tf":3.4641016151377544},"157":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":2.0},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.6457513110645907},"356":{"tf":2.8284271247461903},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":1.7320508075688772},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":15,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":32,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.0},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.0},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.0},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.449489742783178},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.1622776601683795},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.6457513110645907},"86":{"tf":1.0},"88":{"tf":3.3166247903554},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.0},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":1.7320508075688772},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":11,"docs":{"101":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.0},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"240":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":3.605551275463989},"118":{"tf":2.0},"119":{"tf":2.8284271247461903},"120":{"tf":2.23606797749979},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.0},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.0},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":38,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"150":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.23606797749979},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":2.23606797749979},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.7320508075688772},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.449489742783178},"277":{"tf":3.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":122,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.4142135623730951},"413":{"tf":4.47213595499958},"414":{"tf":2.0},"415":{"tf":3.3166247903554},"416":{"tf":2.8284271247461903},"418":{"tf":3.3166247903554},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":21,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.23606797749979},"149":{"tf":2.23606797749979},"150":{"tf":2.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":2.23606797749979},"184":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.4142135623730951},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.0},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.449489742783178},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":31,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"152":{"tf":2.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.0},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":50,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.0},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":17,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":26,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.0},"475":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":154,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":3.3166247903554},"213":{"tf":1.0},"214":{"tf":2.6457513110645907},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.1622776601683795},"434":{"tf":1.7320508075688772},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":3.3166247903554},"438":{"tf":2.6457513110645907},"439":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.0},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.4641016151377544},"501":{"tf":2.0},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"317":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"437":{"tf":2.6457513110645907},"438":{"tf":2.8284271247461903},"439":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":1.7320508075688772},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.23606797749979},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.3166247903554},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"459":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":72,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.4142135623730951},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.23606797749979},"124":{"tf":3.1622776601683795},"125":{"tf":2.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"130":{"tf":3.605551275463989},"131":{"tf":2.8284271247461903},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.4142135623730951},"487":{"tf":3.605551275463989},"488":{"tf":1.4142135623730951},"489":{"tf":4.69041575982343},"490":{"tf":2.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":2.8284271247461903},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":79,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":114,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.7320508075688772},"369":{"tf":2.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"401":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"419":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"449":{"tf":2.0},"452":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"465":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":2.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"492":{"tf":1.0},"61":{"tf":1.4142135623730951},"94":{"tf":3.4641016151377544},"95":{"tf":6.164414002968976},"96":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.0},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.0},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.23606797749979},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.23606797749979},"274":{"tf":2.23606797749979},"275":{"tf":2.0},"276":{"tf":2.8284271247461903},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.23606797749979},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.6457513110645907},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":80,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":2.23606797749979},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.449489742783178},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"221":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":6,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"482":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":124,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"169":{"tf":2.8284271247461903},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"5":{"tf":2.0},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":1.7320508075688772},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.7320508075688772},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":12,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"17":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":161,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.4142135623730951},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.7320508075688772},"169":{"tf":3.872983346207417},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.0}}},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":53,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.7320508075688772},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":64,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.23606797749979},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":1.0},"247":{"tf":2.449489742783178},"248":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":2.23606797749979},"252":{"tf":1.4142135623730951},"253":{"tf":2.0},"254":{"tf":1.4142135623730951},"255":{"tf":2.6457513110645907},"256":{"tf":3.1622776601683795},"257":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.4142135623730951},"67":{"tf":1.0},"81":{"tf":3.4641016151377544},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":39,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.23606797749979},"386":{"tf":2.23606797749979},"387":{"tf":2.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"402":{"tf":2.6457513110645907},"404":{"tf":1.0},"405":{"tf":2.0},"406":{"tf":1.0},"408":{"tf":1.7320508075688772},"409":{"tf":2.23606797749979},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":46,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":160,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.23606797749979},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.0},"141":{"tf":3.0},"142":{"tf":2.449489742783178},"143":{"tf":2.0},"144":{"tf":1.0},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":3.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"273":{"tf":1.7320508075688772},"274":{"tf":4.242640687119285},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":3.1622776601683795},"279":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.3166247903554},"84":{"tf":2.449489742783178},"86":{"tf":3.0},"87":{"tf":2.8284271247461903},"88":{"tf":2.0},"89":{"tf":3.7416573867739413},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":112,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.23606797749979},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"351":{"tf":1.0},"40":{"tf":1.4142135623730951},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":30,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"0":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":3.1622776601683795},"122":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.0},"472":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":21,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":175,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":4.0},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":2.8284271247461903},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.23606797749979},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.7320508075688772},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":2.0},"36":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"447":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":89,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.0},"277":{"tf":2.6457513110645907},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":34,"docs":{"100":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"119":{"tf":1.0},"145":{"tf":1.4142135623730951},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.4142135623730951},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"475":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.7320508075688772},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":33,"docs":{"108":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":1.7320508075688772},"260":{"tf":2.6457513110645907},"261":{"tf":3.1622776601683795},"262":{"tf":1.4142135623730951},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"504":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.0},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.0},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.0},"447":{"tf":1.4142135623730951},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.0},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":76,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":29,"docs":{"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":24,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.0},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"5":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":2.0},"205":{"tf":1.0},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":34,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":16,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":3.872983346207417},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":25,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.0},"205":{"tf":3.0},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"209":{"tf":2.449489742783178},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.6457513110645907},"213":{"tf":1.0},"214":{"tf":3.1622776601683795},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":2.6457513110645907},"412":{"tf":1.4142135623730951},"413":{"tf":2.8284271247461903},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":3.605551275463989},"418":{"tf":1.4142135623730951},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.0}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.23606797749979},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.449489742783178},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.0},"506":{"tf":2.0},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":118,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":3.7416573867739413},"323":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.23606797749979},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"363":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"135":{"tf":1.0},"15":{"tf":1.4142135623730951},"25":{"tf":1.0},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":7,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":171,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.3166247903554},"310":{"tf":3.872983346207417},"312":{"tf":1.0},"313":{"tf":5.477225575051661},"319":{"tf":2.8284271247461903},"32":{"tf":2.23606797749979},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":1.7320508075688772},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.449489742783178},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":2.23606797749979},"367":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":2.6457513110645907},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":2.0},"386":{"tf":1.4142135623730951},"390":{"tf":2.0},"395":{"tf":2.0},"396":{"tf":2.0},"397":{"tf":2.6457513110645907},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.23606797749979},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":3.3166247903554},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":1,"docs":{"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":2.8284271247461903},"41":{"tf":1.7320508075688772},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.6457513110645907}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":53,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"df":18,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":10,"docs":{"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":247,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.449489742783178},"109":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":2.8284271247461903},"222":{"tf":1.0},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.4142135623730951},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.7320508075688772},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":1.7320508075688772},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":101,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.23606797749979},"468":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":2.0},"492":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.0},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.449489742783178},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":2,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":71,"docs":{"105":{"tf":2.0},"108":{"tf":1.7320508075688772},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":2.6457513110645907},"188":{"tf":3.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":2.23606797749979},"192":{"tf":3.4641016151377544},"193":{"tf":3.7416573867739413},"194":{"tf":4.47213595499958},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":1.4142135623730951},"284":{"tf":2.6457513110645907},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":22,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.23606797749979},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"428":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":3.1622776601683795},"432":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":6,"docs":{"171":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":4,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":52,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":2.8284271247461903},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"195":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{"df":3,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"469":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"2":{"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"470":{"tf":1.7320508075688772},"475":{"tf":1.0}}},"3":{"3":{".":{"0":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"222":{"tf":1.0}}},"9":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"df":1,"docs":{"196":{"tf":1.0}}},"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"25":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"105":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"8":{"9":{".":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"1":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"294":{"tf":1.0}}},"df":1,"docs":{"294":{"tf":1.0}}}},"0":{"0":{"1":{"df":13,"docs":{"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},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"2":{"df":7,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":10,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":10,"docs":{"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},"130":{"tf":1.0},"131":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":10,"docs":{"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},"140":{"tf":1.0},"95":{"tf":1.0}}},"6":{"df":5,"docs":{"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":11,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":9,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"95":{"tf":1.0}}},"9":{"df":9,"docs":{"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},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"1":{"0":{"df":7,"docs":{"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"2":{"df":14,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":15,"docs":{"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":9,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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.0},"233":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":20,"docs":{"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},"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},"95":{"tf":1.0}}},"9":{"df":5,"docs":{"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":19,"docs":{"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},"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},"280":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":7,"docs":{"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":16,"docs":{"287":{"tf":1.0},"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},"300":{"tf":1.0},"301":{"tf":1.0},"95":{"tf":1.0}}},"3":{"df":16,"docs":{"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},"95":{"tf":1.0}}},"4":{"df":6,"docs":{"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":11,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"7":{"df":17,"docs":{"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},"95":{"tf":1.0}}},"8":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"9":{"df":7,"docs":{"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"3":{"0":{"df":36,"docs":{"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},"408":{"tf":1.0},"409":{"tf":1.0},"95":{"tf":1.0}}},"1":{"df":10,"docs":{"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},"418":{"tf":1.0},"95":{"tf":1.0}}},"2":{"df":15,"docs":{"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},"95":{"tf":1.0}}},"3":{"df":17,"docs":{"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"95":{"tf":1.0}}},"4":{"df":14,"docs":{"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},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"95":{"tf":1.0}}},"5":{"df":8,"docs":{"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},"95":{"tf":1.0}}},"6":{"df":12,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"95":{"tf":1.0}}},"7":{"df":7,"docs":{"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"95":{"tf":1.0}}},"8":{"df":12,"docs":{"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"/":{"1":{"3":{"/":{"2":{"0":{"2":{"3":{"df":1,"docs":{"415":{"tf":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":{"70":{"tf":1.0},"83":{"tf":1.0}}},"9":{"df":1,"docs":{"80":{"tf":2.0}}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"503":{"tf":1.0}},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":11,"docs":{"131":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"229":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"423":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"m":{"1":{"0":{".":{"2":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"3":{"1":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"7":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"9":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"6":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"3":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"3":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"9":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"1":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"4":{"0":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{"4":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"6":{"8":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{".":{"7":{"2":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"0":{"7":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"6":{"8":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{".":{"9":{"5":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{".":{"0":{"4":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"5":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"6":{"1":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"'":{"df":2,"docs":{"413":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"\"":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}},".":{".":{"=":{"6":{"9":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"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":{}},"0":{"df":9,"docs":{"252":{"tf":1.0},"294":{"tf":1.7320508075688772},"30":{"tf":1.0},"386":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":1.0},"474":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"r":{"c":{".":{"2":{"df":1,"docs":{"478":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":2,"docs":{"252":{"tf":1.0},"85":{"tf":1.0}}},"2":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":3,"docs":{"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"0":{"0":{"0":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"9":{",":{"4":{"9":{"1":{",":{"7":{"1":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"229":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"471":{"tf":1.0}},"m":{"5":{"2":{".":{"0":{"1":{"7":{"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":{"4":{"8":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"8":{"7":{"df":1,"docs":{"325":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.7320508075688772},"362":{"tf":1.0},"503":{"tf":1.0}}},"2":{"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":3,"docs":{"329":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}}},"3":{"df":1,"docs":{"308":{"tf":1.0}}},"4":{"2":{"df":1,"docs":{"1":{"tf":1.0}}},"7":{"4":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"310":{"tf":1.0}}},"6":{"df":2,"docs":{"226":{"tf":1.0},"386":{"tf":1.0}}},"7":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"df":1,"docs":{"48":{"tf":1.0}}},"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":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"503":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":44,"docs":{"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"274":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.7320508075688772},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"356":{"tf":1.0},"366":{"tf":2.23606797749979},"367":{"tf":2.0},"368":{"tf":2.0},"372":{"tf":1.7320508075688772},"413":{"tf":2.8284271247461903},"414":{"tf":2.23606797749979},"415":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":2.8284271247461903},"423":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"471":{"tf":3.0},"475":{"tf":1.4142135623730951},"478":{"tf":2.0},"508":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"m":{"0":{".":{"1":{"0":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{".":{"0":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{".":{"1":{"9":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"2":{"\"":{")":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"413":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}},"*":{"(":{"df":0,"docs":{},"n":{"+":{"1":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"0":{"df":18,"docs":{"346":{"tf":2.449489742783178},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"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},"426":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"508":{"tf":1.0},"80":{"tf":1.0}}},"2":{"1":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}}},"2":{"df":3,"docs":{"362":{"tf":1.0},"386":{"tf":1.0},"80":{"tf":2.0}}},"3":{"/":{"0":{"1":{"/":{"2":{"1":{"df":1,"docs":{"396":{"tf":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":{"156":{"tf":1.0},"226":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"314":{"tf":1.0}},"µ":{"df":1,"docs":{"471":{"tf":1.0}}}},"1":{"2":{"9":{"df":1,"docs":{"433":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"419":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{",":{"7":{"6":{"7":{",":{"3":{"0":{"0":{"df":1,"docs":{"386":{"tf":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":{"13":{"tf":1.0}}},"5":{"6":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"337":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"378":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":0,"docs":{},"t":{"0":{"9":{":":{"1":{"3":{":":{"3":{"5":{".":{"3":{"7":{"2":{"5":{"1":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"1":{"0":{"4":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"5":{"2":{"df":0,"docs":{},"z":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"df":0,"docs":{},"z":{"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":{}}},"8":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"369":{"tf":1.0}}},"9":{"df":1,"docs":{"310":{"tf":1.0}}},"d":{"4":{"d":{"3":{"8":{"5":{"9":{"5":{"9":{"3":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"156":{"tf":1.0},"188":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"330":{"tf":1.4142135623730951},"362":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":3.3166247903554},"415":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"423":{"tf":1.0},"430":{"tf":1.0},"458":{"tf":1.0},"468":{"tf":1.0},"471":{"tf":1.0},"478":{"tf":1.4142135623730951},"508":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"0":{".":{"5":{"5":{"5":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"5":{"9":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{".":{"2":{"4":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"8":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"4":{"8":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"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":{}},"4":{"5":{".":{"0":{"0":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"8":{"8":{"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":{}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"3":{"0":{"0":{"0":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"345":{"tf":1.0}}}},"1":{"df":1,"docs":{"310":{"tf":1.0}}},"2":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"386":{"tf":1.0},"82":{"tf":1.0}}},"3":{"3":{"9":{"df":1,"docs":{"387":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"309":{"tf":1.0}}},"7":{"df":1,"docs":{"309":{"tf":1.0}}},"8":{"df":2,"docs":{"305":{"tf":1.0},"309":{"tf":1.0}}},"9":{"df":1,"docs":{"309":{"tf":1.0}}},"df":10,"docs":{"125":{"tf":1.0},"188":{"tf":1.4142135623730951},"214":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"428":{"tf":1.4142135623730951},"458":{"tf":1.0},"472":{"tf":1.0},"73":{"tf":1.0}},"m":{"1":{"0":{".":{"8":{"5":{"7":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{".":{"4":{"7":{"3":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{".":{"2":{"0":{"8":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"5":{"3":{"1":{"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":{"0":{"0":{"df":1,"docs":{"324":{"tf":1.0}}},"1":{"df":1,"docs":{"80":{"tf":1.0}}},"df":1,"docs":{"309":{"tf":1.0}}},"1":{"2":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"6":{"2":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"319":{"tf":1.0}}},"df":7,"docs":{"196":{"tf":1.0},"226":{"tf":2.0},"319":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"478":{"tf":1.0},"66":{"tf":1.0}},"m":{"2":{"4":{".":{"8":{"8":{"1":{"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":{}}},"5":{".":{".":{"=":{"1":{"0":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"/":{"2":{"0":{"2":{"1":{"df":1,"docs":{"29":{"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":{"396":{"tf":1.0}}},"df":4,"docs":{"491":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}},"2":{"df":1,"docs":{"491":{"tf":1.0}}},"3":{"df":1,"docs":{"491":{"tf":1.0}}},"4":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{},"g":{"b":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}}},"]":{"*":{"\"":{"#":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"427":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"471":{"tf":1.0},"478":{"tf":1.0}},"m":{"0":{".":{"8":{"4":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{".":{"2":{"3":{"1":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{".":{"0":{"7":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{".":{"2":{"4":{"6":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{".":{"0":{"6":{"9":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"3":{",":{"6":{"0":{"1":{",":{"9":{"9":{"4":{"df":1,"docs":{"386":{"tf":1.0}}},"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":3,"docs":{"200":{"tf":1.0},"386":{"tf":1.7320508075688772},"482":{"tf":1.0}}},"9":{"df":4,"docs":{"324":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":1,"docs":{"310":{"tf":2.0}},"m":{"1":{".":{"0":{"5":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"3":{"4":{"6":{"7":{"8":{"9":{"0":{"2":{"df":0,"docs":{},"e":{"a":{"9":{"3":{"8":{"7":{"8":{"3":{"a":{"7":{"2":{"0":{"0":{"d":{"7":{"b":{"2":{"c":{"0":{"b":{"4":{"8":{"7":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"7":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"c":{"0":{"3":{"8":{"a":{"4":{"3":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"329":{"tf":1.4142135623730951}}},"8":{"0":{"1":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"7":{"df":1,"docs":{"229":{"tf":1.0}}},"df":2,"docs":{"322":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{"7":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"4":{"6":{".":{"1":{"6":{"8":{"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":{}}},"9":{"_":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"m":{"1":{"9":{".":{"5":{"3":{"0":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{".":{"0":{"9":{"8":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":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":{"309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"x":{"df":4,"docs":{"199":{"tf":1.0},"229":{"tf":1.0},"266":{"tf":1.0},"506":{"tf":1.0}}}},"df":17,"docs":{"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"268":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"309":{"tf":4.69041575982343},"310":{"tf":5.0990195135927845},"325":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"85":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{},"e":{":":{"_":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"508":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"a":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"k":{".":{"a":{"df":1,"docs":{"455":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"1":{"9":{"1":{"2":{"9":{"a":{"df":0,"docs":{},"e":{"a":{"d":{"4":{"df":0,"docs":{},"f":{"b":{"c":{"8":{"c":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"e":{"3":{"d":{"3":{"4":{"d":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"8":{"a":{"6":{"2":{"d":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"284":{"tf":1.0}}}}},"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"204":{"tf":1.0},"239":{"tf":1.0},"295":{"tf":1.4142135623730951},"319":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"386":{"tf":1.0},"432":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0}}}},"n":{"df":0,"docs":{},"f":{"]":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"%":{"df":0,"docs":{},"e":{"2":{"%":{"8":{"0":{"%":{"9":{"3":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":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":{"229":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"v":{"df":43,"docs":{"119":{"tf":1.0},"125":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"329":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"503":{"tf":1.4142135623730951},"52":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"420":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":11,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.7320508075688772},"241":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"356":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":30,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"171":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":3.3166247903554},"281":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.7320508075688772},"359":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"419":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{"175":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":40,"docs":{"110":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"371":{"tf":1.4142135623730951},"373":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.7320508075688772},"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},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":2.0},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"156":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"464":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"254":{"tf":1.0},"256":{"tf":1.4142135623730951},"274":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"293":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"309":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"r":{"d":{"df":4,"docs":{"111":{"tf":1.0},"130":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"349":{"tf":1.0},"415":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"475":{"tf":1.0},"505":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"419":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":10,"docs":{"101":{"tf":1.0},"210":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"303":{"tf":1.0},"316":{"tf":1.0},"394":{"tf":1.0},"424":{"tf":1.0},"56":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"246":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"395":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"234":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"171":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"453":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.6457513110645907},"493":{"tf":1.7320508075688772},"53":{"tf":1.0}}}},"v":{"df":7,"docs":{"116":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"305":{"tf":1.0},"415":{"tf":1.0}}},"x":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"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":{"229":{"tf":2.449489742783178}}}}}}}}},"df":39,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":2.6457513110645907},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"270":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"415":{"tf":1.4142135623730951},"430":{"tf":1.0},"465":{"tf":1.4142135623730951},"472":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"504":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":2.0},"130":{"tf":1.0},"24":{"tf":1.4142135623730951}}}}},"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":69,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"119":{"tf":1.0},"122":{"tf":2.23606797749979},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":2.0},"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":2.6457513110645907},"226":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"409":{"tf":1.0},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":2.23606797749979},"448":{"tf":1.0},"461":{"tf":2.449489742783178},"465":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"490":{"tf":1.4142135623730951},"496":{"tf":2.8284271247461903},"65":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.7320508075688772},"88":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":44,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"220":{"tf":1.0},"222":{"tf":1.7320508075688772},"234":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":18,"docs":{"119":{"tf":1.0},"189":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"256":{"tf":1.0},"340":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"501":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"48":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"191":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"350":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.4142135623730951},"499":{"tf":1.0}}}}}}},"df":64,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.7320508075688772},"143":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.7320508075688772},"297":{"tf":2.23606797749979},"3":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"38":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":2.8284271247461903},"49":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":2.0},"505":{"tf":1.4142135623730951},"65":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"274":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"218":{"tf":1.0},"257":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"434":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":2,"docs":{"391":{"tf":1.0},"394":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"372":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"335":{"tf":1.0},"5":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"0":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"193":{"tf":1.7320508075688772},"240":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"412":{"tf":1.4142135623730951},"81":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"331":{"tf":1.0},"371":{"tf":1.0}}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"227":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"199":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.0},"253":{"tf":1.0},"260":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"484":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":1,"docs":{"322":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"189":{"tf":1.0},"7":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":12,"docs":{"264":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"246":{"tf":1.0},"278":{"tf":1.0},"32":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"460":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"314":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"226":{"tf":1.0},"301":{"tf":1.0},"319":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":5,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"377":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"431":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"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":{"224":{"tf":1.0},"226":{"tf":3.605551275463989},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"231":{"tf":2.23606797749979},"431":{"tf":1.0},"460":{"tf":1.0}}}}}}}}},"i":{"a":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}},"s":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"291":{"tf":1.0}}}}},"l":{"(":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"351":{"tf":1.0},"465":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{},"w":{"(":{"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":{"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":68,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.4142135623730951},"243":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.4142135623730951},"310":{"tf":2.8284271247461903},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.7320508075688772},"410":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"466":{"tf":1.4142135623730951},"469":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"485":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}},"g":{"df":10,"docs":{"161":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"371":{"tf":1.0},"396":{"tf":1.0},"457":{"tf":1.0},"480":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":13,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0},"250":{"tf":1.0},"274":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"d":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":10,"docs":{"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":27,"docs":{"100":{"tf":1.4142135623730951},"119":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"189":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"257":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"472":{"tf":1.0},"494":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"14":{"tf":1.4142135623730951},"141":{"tf":1.0},"228":{"tf":1.0},"486":{"tf":1.0},"9":{"tf":1.0}},"n":{"df":27,"docs":{"111":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"331":{"tf":2.0},"350":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"367":{"tf":2.0},"368":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"416":{"tf":1.7320508075688772},"423":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.7320508075688772},"84":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"103":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.0},"251":{"tf":1.0},"26":{"tf":1.0},"270":{"tf":1.0},"289":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"340":{"tf":1.0},"366":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"503":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":33,"docs":{"175":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.0},"194":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"231":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"342":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"437":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.0},"68":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"26":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":2,"docs":{"312":{"tf":1.0},"63":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"12":{"tf":1.0},"171":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.0},"274":{"tf":1.0},"285":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"349":{"tf":1.0}}},"z":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"229":{"tf":3.1622776601683795},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":2.0},"503":{"tf":1.0},"504":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"428":{"tf":1.0}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"z":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":9,"docs":{"69":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"146":{"tf":1.0},"427":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}},"y":{"df":1,"docs":{"161":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":20,"docs":{"146":{"tf":1.0},"175":{"tf":1.0},"204":{"tf":1.4142135623730951},"216":{"tf":1.0},"227":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"336":{"tf":1.0},"347":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"453":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"60":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"297":{"tf":2.0},"298":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"14":{"tf":1.0},"495":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"499":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"451":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"139":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"340":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":87,"docs":{"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.6457513110645907},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"316":{"tf":1.7320508075688772},"331":{"tf":1.0},"362":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":2.0},"472":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":2.449489742783178},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"95":{"tf":1.7320508075688772}},"—":{"a":{"df":1,"docs":{"475":{"tf":1.0}}},"df":0,"docs":{}}},"p":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":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":{"309":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"p":{"_":{"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":{},"|":{"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":{"244":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"df":21,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"206":{"tf":1.0},"244":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"309":{"tf":3.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"508":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"137":{"tf":1.0},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"482":{"tf":1.0},"506":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"365":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"438":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"80":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"205":{"tf":1.0},"240":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":2.23606797749979},"284":{"tf":1.0},"289":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"428":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":66,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"240":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":2.23606797749979},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"347":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"81":{"tf":1.0},"88":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":27,"docs":{"117":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"167":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":3.1622776601683795},"288":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":3.1622776601683795},"330":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"402":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"156":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"72":{"tf":1.0}}}}},"v":{"df":2,"docs":{"314":{"tf":1.0},"321":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"21":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"86":{"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":2,"docs":{"154":{"tf":1.0},"482":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"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":{"304":{"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":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":2.23606797749979},"416":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}},"e":{"<":{"c":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0}}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":2,"docs":{"110":{"tf":1.0},"67":{"tf":1.0}},"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":3,"docs":{"428":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":7,"docs":{"105":{"tf":1.0},"158":{"tf":1.4142135623730951},"244":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"372":{"tf":1.0}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"188":{"tf":1.0},"24":{"tf":1.0},"471":{"tf":1.0},"505":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.4142135623730951},"437":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}},"m":{"df":3,"docs":{"289":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"269":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"33":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"494":{"tf":1.0}}}},"y":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"209":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"499":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"146":{"tf":1.0},"149":{"tf":2.6457513110645907},"152":{"tf":2.23606797749979},"153":{"tf":1.0},"154":{"tf":1.0},"183":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"8":{"5":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":2.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":7,"docs":{"14":{"tf":1.0},"239":{"tf":1.0},"308":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"287":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"395":{"tf":1.0},"401":{"tf":1.0},"434":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"191":{"tf":1.4142135623730951},"199":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.7320508075688772},"372":{"tf":1.0},"434":{"tf":1.0},"86":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":13,"docs":{"141":{"tf":1.0},"175":{"tf":1.0},"265":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"110":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"362":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"313":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"374":{"tf":1.0},"412":{"tf":1.4142135623730951}}}}}}},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}},"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":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}},"df":57,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"249":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"279":{"tf":1.4142135623730951},"304":{"tf":1.0},"319":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"100":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"414":{"tf":2.0},"71":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"p":{"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"107":{"tf":1.0},"220":{"tf":1.4142135623730951},"333":{"tf":1.0},"344":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"416":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"31":{"tf":1.0},"419":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":14,"docs":{"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"33":{"tf":1.0},"420":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"500":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}}},"k":{"df":3,"docs":{"318":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"330":{"tf":1.0},"371":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":1.7320508075688772},"489":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.0},"50":{"tf":1.0}},"e":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"99":{"tf":1.0}}},"t":{"df":2,"docs":{"478":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"234":{"tf":1.4142135623730951},"458":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.0}}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"274":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":2.0},"459":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":3.7416573867739413},"67":{"tf":1.0},"68":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"114":{"tf":1.0},"357":{"tf":1.7320508075688772},"460":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"80":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"63":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"457":{"tf":2.0}}}}}}}},"df":10,"docs":{"164":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"305":{"tf":1.0},"316":{"tf":1.0},"386":{"tf":1.0},"43":{"tf":1.0},"485":{"tf":1.0},"63":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"351":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"<":{"'":{"_":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":1.0}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"z":{"df":1,"docs":{"63":{"tf":1.0}}}},"o":{"df":7,"docs":{"156":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"468":{"tf":1.0},"9":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"101":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"197":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.7320508075688772},"462":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0}}}},"df":6,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"166":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"286":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":30,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"193":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"341":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"376":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"437":{"tf":1.0},"458":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"d":{"df":34,"docs":{"101":{"tf":1.0},"121":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"401":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":2.0},"44":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":2.0},"462":{"tf":1.0},"464":{"tf":1.0},"508":{"tf":1.4142135623730951},"99":{"tf":2.0}}}},"r":{"df":13,"docs":{"112":{"tf":1.0},"247":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.7320508075688772},"362":{"tf":1.0},"68":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"df":7,"docs":{"117":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":158,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":3.605551275463989},"103":{"tf":1.0},"105":{"tf":3.4641016151377544},"106":{"tf":2.6457513110645907},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":2.23606797749979},"143":{"tf":1.4142135623730951},"144":{"tf":2.0},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":2.449489742783178},"152":{"tf":3.1622776601683795},"153":{"tf":3.3166247903554},"154":{"tf":1.7320508075688772},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"169":{"tf":3.7416573867739413},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"182":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.449489742783178},"192":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":2.0},"2":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"224":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"252":{"tf":1.0},"26":{"tf":1.4142135623730951},"283":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":2.23606797749979},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"371":{"tf":3.1622776601683795},"372":{"tf":2.449489742783178},"373":{"tf":2.23606797749979},"374":{"tf":1.7320508075688772},"380":{"tf":1.7320508075688772},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.23606797749979},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"5":{"tf":2.0},"501":{"tf":1.0},"503":{"tf":2.23606797749979},"504":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951},"92":{"tf":2.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":2.449489742783178},"99":{"tf":2.23606797749979}},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"183":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":2.0}}},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"1":{"2":{"3":{"\"":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"127":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":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":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.0}}}}}},"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":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"126":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"350":{"tf":1.0},"408":{"tf":1.0},"452":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"a":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"67":{"tf":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":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"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":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{"0":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"0":{"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":{}},"1":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"_":{"1":{"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":{}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"d":{"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":{"376":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"392":{"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"408":{"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":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":{"397":{"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":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"s":{"3":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"s":{"d":{"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":3,"docs":{"371":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"371":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"458":{"tf":1.0}}}}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"395":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"337":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"i":{"d":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"212":{"tf":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":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"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":{},"i":{"df":1,"docs":{"351":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"c":{"df":9,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"395":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"396":{"tf":1.0}}}}}},"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":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}},"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":{},"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"a":{"b":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"p":{"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":{":":{":":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"175":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}}}},"df":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":{"341":{"tf":1.0},"345":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"269":{"tf":1.0}}}}}}},"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":13,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0},"79":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"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":{"80":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"84":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"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":{"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"{":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"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":1,"docs":{"85":{"tf":1.0}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"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":{"85":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"84":{"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":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"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":{},"p":{"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":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"84":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"76":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"77":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"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":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.4142135623730951},"409":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":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":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"326":{"tf":1.0},"377":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"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":1,"docs":{"377":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"351":{"tf":1.0},"377":{"tf":1.0}}}},"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":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"341":{"tf":1.0},"345":{"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":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"261":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"377":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"458":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"127":{"tf":1.0},"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":{}}}}}},"s":{"d":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"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":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":3.1622776601683795}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"`":{"]":{"[":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"s":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"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":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"131":{"tf":1.0},"144":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"1":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"0":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"1":{"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}},"y":{"#":{"1":{"0":{"3":{"9":{"df":1,"docs":{"322":{"tf":1.0}}},"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":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"211":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"<":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"269":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"269":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"135":{"tf":1.4142135623730951},"269":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"428":{"tf":1.0},"508":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"119":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"25":{"tf":1.0},"268":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"434":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"71":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":22,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.0},"287":{"tf":1.4142135623730951},"293":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"297":{"tf":2.8284271247461903}}},"df":0,"docs":{},"g":{"df":20,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"359":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"17":{"tf":1.0},"331":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"d":{"_":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"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":3,"docs":{"227":{"tf":1.0},"386":{"tf":1.7320508075688772},"505":{"tf":1.0}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":39,"docs":{"11":{"tf":1.0},"111":{"tf":1.0},"131":{"tf":1.4142135623730951},"143":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.4142135623730951},"276":{"tf":1.0},"296":{"tf":1.0},"298":{"tf":1.0},"313":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"352":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":2.0},"387":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.4142135623730951},"452":{"tf":1.0},"482":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"361":{"tf":1.0}}}}}},"i":{"c":{"df":2,"docs":{"156":{"tf":1.0},"340":{"tf":1.0}}},"df":5,"docs":{"43":{"tf":1.0},"508":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"181":{"tf":1.7320508075688772},"183":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}}},"df":19,"docs":{"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"221":{"tf":2.0},"229":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"305":{"tf":1.0},"367":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"438":{"tf":1.0},"448":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"52":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":25,"docs":{"106":{"tf":1.4142135623730951},"116":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"297":{"tf":1.0},"309":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"500":{"tf":1.0},"61":{"tf":1.0}}}}},"df":42,"docs":{"137":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"376":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"81":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":41,"docs":{"126":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"165":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"347":{"tf":1.0},"371":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.4142135623730951},"428":{"tf":1.0},"435":{"tf":1.0},"454":{"tf":5.0},"46":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":3.872983346207417},"94":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"132":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"414":{"tf":1.0},"508":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":3,"docs":{"303":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"204":{"tf":1.0}}}},"v":{"df":1,"docs":{"22":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":35,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.23606797749979},"14":{"tf":3.4641016151377544},"206":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"44":{"tf":1.0},"453":{"tf":1.0},"486":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"382":{"tf":2.0},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":8,"docs":{"312":{"tf":1.0},"313":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"400":{"tf":1.0},"406":{"tf":1.0},"44":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"145":{"tf":1.0},"192":{"tf":1.0}}}},"w":{"df":16,"docs":{"132":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"269":{"tf":1.0},"284":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"63":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":5,"docs":{"139":{"tf":1.7320508075688772},"270":{"tf":1.0},"405":{"tf":1.0},"409":{"tf":1.0},"471":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":8,"docs":{"218":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.0},"274":{"tf":1.0},"316":{"tf":1.0},"366":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":12,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"45":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"258":{"tf":1.0},"299":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.4142135623730951},"367":{"tf":1.0},"419":{"tf":1.7320508075688772},"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},"5":{"tf":1.0},"95":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":38,"docs":{"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},"112":{"tf":1.0},"115":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"219":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"500":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"108":{"tf":1.0}},"g":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":4,"docs":{"29":{"tf":1.4142135623730951},"395":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772}}}}},"d":{"df":14,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"304":{"tf":1.0},"352":{"tf":1.0},"448":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":3,"docs":{"226":{"tf":1.0},"229":{"tf":1.0},"319":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"312":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"b":{"df":10,"docs":{"261":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.23606797749979},"395":{"tf":1.0},"409":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"k":{"df":10,"docs":{"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"199":{"tf":1.4142135623730951},"27":{"tf":1.0},"351":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"224":{"tf":1.0},"499":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":34,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"226":{"tf":2.8284271247461903},"227":{"tf":3.0},"228":{"tf":3.4641016151377544},"229":{"tf":4.358898943540674},"230":{"tf":2.449489742783178},"231":{"tf":3.4641016151377544},"233":{"tf":1.4142135623730951},"313":{"tf":3.4641016151377544},"354":{"tf":1.0},"395":{"tf":1.0},"428":{"tf":1.4142135623730951},"469":{"tf":1.0},"470":{"tf":1.7320508075688772},"471":{"tf":1.0},"478":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":2.8284271247461903},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":2.449489742783178},"505":{"tf":1.7320508075688772},"506":{"tf":2.0},"507":{"tf":2.0},"508":{"tf":2.6457513110645907},"82":{"tf":1.0},"95":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"227":{"tf":1.0},"230":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"507":{"tf":1.0}}},"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":3.1622776601683795},"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":2,"docs":{"204":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0}}},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"392":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":11,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":1.7320508075688772},"352":{"tf":1.7320508075688772},"361":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":2.449489742783178},"506":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"261":{"tf":1.4142135623730951},"28":{"tf":1.0},"41":{"tf":1.4142135623730951},"48":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}},"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"269":{"tf":1.0},"38":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":52,"docs":{"103":{"tf":1.0},"13":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"291":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":2.6457513110645907},"328":{"tf":1.0},"331":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"382":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"475":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"308":{"tf":1.0},"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":15,"docs":{"156":{"tf":1.0},"161":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"474":{"tf":1.0},"56":{"tf":2.23606797749979},"67":{"tf":1.0},"81":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"<":{"<":{"df":0,"docs":{},"m":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"<":{"c":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"d":{"5":{":":{":":{"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":{"226":{"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":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"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":{},"h":{"a":{"1":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"5":{"6":{":":{":":{"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":{"226":{"tf":1.0}}}}}},"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":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"275":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":3.1622776601683795}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.0},"255":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":12,"docs":{"143":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.4142135623730951},"297":{"tf":1.0},"313":{"tf":1.7320508075688772},"33":{"tf":4.0},"349":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"79":{"tf":1.0},"89":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"313":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"199":{"tf":2.0},"200":{"tf":1.0},"226":{"tf":4.898979485566356},"350":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"482":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.4142135623730951}},"e":{"<":{"'":{"a":{"df":1,"docs":{"414":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":17,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"169":{"tf":1.0},"192":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.449489742783178},"313":{"tf":2.6457513110645907}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":42,"docs":{"105":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"307":{"tf":1.0},"457":{"tf":1.4142135623730951}}}}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"359":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"269":{"tf":1.0},"62":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"15":{"tf":1.0},"218":{"tf":1.0},"318":{"tf":1.0},"381":{"tf":1.0},"457":{"tf":1.0},"60":{"tf":1.0}}}}},"o":{"a":{"d":{"df":2,"docs":{"296":{"tf":1.0},"482":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"167":{"tf":1.0}},"n":{"df":6,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"46":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":1,"docs":{"335":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"(":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.7320508075688772},"352":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{">":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"g":{"df":6,"docs":{"180":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"261":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"116":{"tf":1.0},"21":{"tf":1.0},"272":{"tf":1.0},"39":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"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":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":65,"docs":{"1":{"tf":1.0},"104":{"tf":2.0},"110":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"149":{"tf":2.0},"150":{"tf":1.0},"152":{"tf":2.0},"153":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.7320508075688772},"217":{"tf":1.0},"221":{"tf":1.0},"231":{"tf":2.0},"233":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"244":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"311":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":4.0},"422":{"tf":1.0},"458":{"tf":1.4142135623730951},"500":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":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":{"313":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{")":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"313":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.4142135623730951},"313":{"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":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"2":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"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":{},"t":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}}}}},":":{":":{"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":{"102":{"tf":1.0},"371":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"d":{"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":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"356":{"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":111,"docs":{"102":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":2.0},"142":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.23606797749979},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.6457513110645907},"264":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":2.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":2.23606797749979},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":3.1622776601683795},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.0},"303":{"tf":2.0},"304":{"tf":1.7320508075688772},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.6457513110645907},"311":{"tf":2.23606797749979},"312":{"tf":2.8284271247461903},"313":{"tf":4.358898943540674},"314":{"tf":2.6457513110645907},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.8284271247461903},"335":{"tf":3.0},"336":{"tf":1.0},"338":{"tf":2.0},"340":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0},"373":{"tf":1.7320508075688772},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.0},"38":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"390":{"tf":2.449489742783178},"397":{"tf":2.23606797749979},"398":{"tf":1.4142135623730951},"406":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":2.0},"458":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"490":{"tf":1.0},"500":{"tf":1.4142135623730951},"52":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"135":{"tf":1.7320508075688772},"137":{"tf":1.0},"150":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"3":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.4142135623730951},"362":{"tf":1.0},"376":{"tf":1.0},"451":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"226":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"372":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":3.0},"196":{"tf":1.0},"197":{"tf":1.7320508075688772}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}},"d":{"df":0,"docs":{},"l":{"df":7,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":9,"docs":{"101":{"tf":1.0},"139":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"o":{"df":1,"docs":{"17":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"116":{"tf":1.0},"330":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"199":{"tf":2.6457513110645907},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"205":{"tf":2.0},"207":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":5.0},"227":{"tf":1.7320508075688772},"228":{"tf":3.1622776601683795},"229":{"tf":2.23606797749979},"28":{"tf":1.0},"326":{"tf":1.0},"386":{"tf":1.0},"395":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":2.449489742783178}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":1.0},"231":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"f":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{":":{"df":0,"docs":{},"x":{"?":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"198":{"tf":1.7320508075688772},"199":{"tf":2.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"{":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"1":{"df":2,"docs":{"72":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"3":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"4":{"df":2,"docs":{"72":{"tf":2.0},"89":{"tf":2.0}}},"6":{"a":{".":{"2":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":21,"docs":{"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.8284271247461903},"364":{"tf":2.0},"365":{"tf":1.0},"366":{"tf":3.3166247903554},"367":{"tf":2.6457513110645907},"368":{"tf":4.242640687119285},"369":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"95":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}}}},"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":13,"docs":{"113":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"200":{"tf":2.449489742783178},"226":{"tf":2.8284271247461903},"227":{"tf":2.8284271247461903},"228":{"tf":2.449489742783178},"229":{"tf":1.0},"231":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"460":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"269":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":7,"docs":{"198":{"tf":2.23606797749979},"199":{"tf":4.58257569495584},"200":{"tf":2.23606797749979},"225":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":68,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.8284271247461903},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":2.0},"155":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"200":{"tf":2.0},"204":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"288":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"398":{"tf":1.0},"411":{"tf":1.4142135623730951},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":2.23606797749979},"433":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.872983346207417},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"77":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"322":{"tf":1.0},"451":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"499":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"331":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"197":{"tf":1.0},"469":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"230":{"tf":1.0},"313":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"261":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}}}},"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"105":{"tf":1.0},"132":{"tf":1.0},"250":{"tf":1.0},"309":{"tf":1.0},"363":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.0},"445":{"tf":1.0},"475":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"478":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":10,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"194":{"tf":1.0},"216":{"tf":1.4142135623730951},"282":{"tf":1.0},"98":{"tf":1.0},"99":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"165":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"282":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.0},"380":{"tf":1.0},"405":{"tf":4.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":4,"docs":{"185":{"tf":1.0},"226":{"tf":1.0},"323":{"tf":1.0},"386":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":80,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"248":{"tf":1.0},"252":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"305":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":2.0},"363":{"tf":1.0},"368":{"tf":1.0},"378":{"tf":1.7320508075688772},"381":{"tf":1.0},"386":{"tf":1.4142135623730951},"392":{"tf":1.0},"401":{"tf":1.0},"408":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":1.7320508075688772},"415":{"tf":2.449489742783178},"417":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":2.0},"432":{"tf":1.0},"433":{"tf":2.0},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":1,"docs":{"313":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"297":{"tf":1.0},"301":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"52":{"tf":1.0}},"i":{"df":2,"docs":{"282":{"tf":1.4142135623730951},"296":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"s":{"df":17,"docs":{"197":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.4142135623730951},"298":{"tf":1.0},"306":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.4142135623730951},"373":{"tf":1.0},"381":{"tf":1.0},"428":{"tf":1.0},"448":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"243":{"tf":1.0}}}}}}}}},"df":13,"docs":{"161":{"tf":1.0},"194":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"221":{"tf":2.0},"274":{"tf":1.7320508075688772},"356":{"tf":1.0},"368":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"67":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"141":{"tf":1.0},"212":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"17":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"408":{"tf":1.0},"432":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{"248":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"220":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.0}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"380":{"tf":2.23606797749979},"457":{"tf":2.0},"459":{"tf":6.48074069840786}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"106":{"tf":1.0},"238":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":2.0},"416":{"tf":1.0},"418":{"tf":3.0},"492":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"191":{"tf":1.0},"318":{"tf":1.0},"415":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":5,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"306":{"tf":1.0},"336":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":129,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"188":{"tf":2.8284271247461903},"193":{"tf":3.0},"194":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"251":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"31":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"36":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"40":{"tf":1.0},"409":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"417":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.7320508075688772},"437":{"tf":1.0},"446":{"tf":1.4142135623730951},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.4142135623730951},"462":{"tf":1.7320508075688772},"468":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"484":{"tf":1.7320508075688772},"485":{"tf":1.7320508075688772},"486":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"496":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"345":{"tf":1.0},"364":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"263":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"324":{"tf":1.0},"326":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":2,"docs":{"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"112":{"tf":1.0},"256":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"309":{"tf":3.3166247903554},"313":{"tf":2.6457513110645907}}}},"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951}}}}}},"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":{"427":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":27,"docs":{"13":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"231":{"tf":1.0},"25":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"306":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"458":{"tf":2.449489742783178},"489":{"tf":1.4142135623730951},"491":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"309":{"tf":1.0},"70":{"tf":1.0},"83":{"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":1,"docs":{"309":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":53,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"131":{"tf":1.4142135623730951},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"262":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"320":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.4142135623730951},"419":{"tf":1.0},"432":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"496":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"q":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"d":{"5":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"_":{"1":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":2.449489742783178}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"226":{"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":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":2.449489742783178}}},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"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":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":23,"docs":{"14":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":4.0},"223":{"tf":2.0},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":7.681145747868608},"227":{"tf":4.358898943540674},"228":{"tf":5.477225575051661},"229":{"tf":3.3166247903554},"230":{"tf":2.23606797749979},"231":{"tf":4.58257569495584},"232":{"tf":2.23606797749979},"233":{"tf":1.7320508075688772},"343":{"tf":1.0},"460":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"95":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772}}},"y":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"0":{"tf":1.0},"160":{"tf":1.0},"252":{"tf":1.0},"38":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"285":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"373":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"226":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":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":{"30":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":2,"docs":{"229":{"tf":2.8284271247461903},"506":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"229":{"tf":1.0}},"e":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}}}},"df":10,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":6.48074069840786},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"432":{"tf":1.0}}}}}},"i":{"df":15,"docs":{"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":2.449489742783178},"150":{"tf":1.4142135623730951},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"196":{"tf":2.0},"306":{"tf":1.0}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"v":{"df":3,"docs":{"150":{"tf":1.0},"295":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":1,"docs":{"222":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.0},"402":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"206":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"0":{"tf":1.0},"239":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"5":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":15,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"485":{"tf":2.0},"486":{"tf":1.0},"487":{"tf":2.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0}},"i":{"df":14,"docs":{"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"269":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":3.605551275463989},"488":{"tf":1.0},"489":{"tf":4.358898943540674},"490":{"tf":2.23606797749979},"491":{"tf":3.872983346207417},"492":{"tf":1.7320508075688772},"493":{"tf":3.0},"494":{"tf":2.6457513110645907},"495":{"tf":2.6457513110645907},"496":{"tf":3.1622776601683795}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"175":{"tf":1.0},"176":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"175":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"482":{"tf":1.0}}}}},"r":{"df":6,"docs":{"169":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"366":{"tf":1.0},"415":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"303":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"240":{"tf":1.0},"405":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":5,"docs":{"123":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0}}},".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"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":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"117":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"p":{"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":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"345":{"tf":1.0},"371":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":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":{"236":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"c":{"df":10,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"219":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"<":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"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":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"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":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"355":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":157,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":2.6457513110645907},"11":{"tf":1.0},"110":{"tf":3.605551275463989},"111":{"tf":1.0},"112":{"tf":2.8284271247461903},"113":{"tf":1.0},"115":{"tf":2.0},"117":{"tf":3.0},"118":{"tf":2.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"130":{"tf":2.6457513110645907},"138":{"tf":1.7320508075688772},"14":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":2.6457513110645907},"174":{"tf":1.7320508075688772},"175":{"tf":2.0},"178":{"tf":1.0},"186":{"tf":1.0},"196":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"25":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":2.0},"281":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.4142135623730951},"296":{"tf":1.0},"306":{"tf":1.0},"318":{"tf":3.0},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":2.23606797749979},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":2.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":1.7320508075688772},"355":{"tf":2.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"410":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":2.449489742783178},"434":{"tf":2.6457513110645907},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":2.6457513110645907},"452":{"tf":1.7320508075688772},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.6457513110645907},"46":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"469":{"tf":1.0},"477":{"tf":1.7320508075688772},"479":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"144":{"tf":1.0}}}}}}},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"320":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":24,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"135":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"195":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.0},"236":{"tf":1.0},"269":{"tf":1.0},"290":{"tf":1.7320508075688772},"30":{"tf":1.0},"300":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"459":{"tf":2.0},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"229":{"tf":1.7320508075688772},"475":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951}},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"156":{"tf":1.0},"236":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"423":{"tf":1.0},"432":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":169,"docs":{"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"147":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"161":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.449489742783178},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"315":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"336":{"tf":2.0},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"341":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"405":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.7320508075688772},"462":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":2.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"91":{"tf":2.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":30,"docs":{"114":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.0},"145":{"tf":1.0},"150":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.0},"182":{"tf":1.0},"200":{"tf":1.0},"232":{"tf":2.0},"233":{"tf":1.4142135623730951},"27":{"tf":1.0},"316":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"446":{"tf":1.7320508075688772},"448":{"tf":1.0},"458":{"tf":2.8284271247461903},"486":{"tf":1.0},"496":{"tf":1.7320508075688772},"508":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":2.0}}}}}}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"df":32,"docs":{"199":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"357":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"425":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"54":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":10,"docs":{"116":{"tf":1.0},"121":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"349":{"tf":1.0},"438":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.7320508075688772}}},"r":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"312":{"tf":1.7320508075688772}}}}}}}}}}},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{"84":{"tf":1.0}},"e":{"#":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"307":{"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":2.0},"344":{"tf":1.0},"71":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"437":{"tf":1.0},"446":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"261":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"356":{"tf":1.0},"369":{"tf":1.0},"386":{"tf":1.4142135623730951},"56":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"216":{"tf":1.0},"39":{"tf":2.6457513110645907},"405":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"239":{"tf":1.0},"289":{"tf":1.0},"423":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"405":{"tf":1.0},"419":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"155":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.0},"257":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"336":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":2.0},"84":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":5,"docs":{"221":{"tf":1.0},"380":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"489":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"r":{"df":11,"docs":{"135":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"228":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"380":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}}}},"t":{"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":2.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"24":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":2.6457513110645907},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.7320508075688772},"330":{"tf":1.0},"350":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"428":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.7320508075688772},"481":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.0},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"285":{"tf":1.0}}},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":47,"docs":{"105":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.0},"156":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":2.449489742783178},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"353":{"tf":1.0},"358":{"tf":1.0},"366":{"tf":1.4142135623730951},"382":{"tf":1.0},"393":{"tf":1.4142135623730951},"397":{"tf":1.0},"405":{"tf":2.8284271247461903},"409":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"71":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":29,"docs":{"0":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"290":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.4142135623730951},"491":{"tf":1.0},"507":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"x":{"df":15,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"350":{"tf":1.0},"382":{"tf":1.0},"413":{"tf":1.0},"43":{"tf":1.0},"460":{"tf":1.0},"495":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"136":{"tf":1.4142135623730951},"396":{"tf":1.0},"486":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"71":{"tf":1.0}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"204":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"316":{"tf":1.0},"418":{"tf":1.4142135623730951},"492":{"tf":1.0},"71":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.0},"368":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"404":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"230":{"tf":1.7320508075688772},"353":{"tf":1.0},"387":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"117":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"435":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"452":{"tf":1.0},"7":{"tf":1.0}},"u":{"df":1,"docs":{"418":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"330":{"tf":1.0},"38":{"tf":1.0},"399":{"tf":1.4142135623730951},"406":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"423":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":13,"docs":{"182":{"tf":1.4142135623730951},"241":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"372":{"tf":1.0},"418":{"tf":1.0},"463":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"81":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"12":{"tf":1.0},"220":{"tf":1.4142135623730951},"246":{"tf":1.0},"313":{"tf":1.0},"338":{"tf":1.4142135623730951},"438":{"tf":1.0}}}}}}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"2":{"tf":1.0},"350":{"tf":1.0},"458":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"371":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"372":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":9,"docs":{"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":3.1622776601683795},"461":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":72,"docs":{"100":{"tf":1.0},"101":{"tf":3.3166247903554},"102":{"tf":2.449489742783178},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":2.0},"106":{"tf":2.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.0},"124":{"tf":2.449489742783178},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":2.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":2.0},"142":{"tf":2.449489742783178},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"214":{"tf":2.0},"288":{"tf":1.0},"290":{"tf":1.0},"333":{"tf":2.0},"337":{"tf":1.7320508075688772},"342":{"tf":1.0},"344":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"43":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":3.605551275463989},"472":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":2.0},"496":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"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":{}}},"u":{"df":0,"docs":{},"r":{"df":92,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.7320508075688772},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.7320508075688772},"302":{"tf":1.0},"309":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"449":{"tf":1.0},"450":{"tf":2.0},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":2.23606797749979},"458":{"tf":4.242640687119285},"460":{"tf":3.0},"485":{"tf":2.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.8284271247461903},"64":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":2.449489742783178},"97":{"tf":1.0},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"174":{"tf":1.0},"219":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"71":{"tf":1.0},"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":10,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.0},"172":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"381":{"tf":1.0},"438":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":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":{"2":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":14,"docs":{"17":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":2.0},"396":{"tf":1.0},"411":{"tf":1.0},"459":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"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":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.6457513110645907},"112":{"tf":3.3166247903554},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"235":{"tf":1.0},"25":{"tf":1.7320508075688772},"338":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"491":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"302":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":4,"docs":{"217":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":1.0},"413":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"d":{"df":35,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"146":{"tf":1.0},"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"101":{"tf":1.0},"159":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"194":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"413":{"tf":1.0},"437":{"tf":1.4142135623730951},"487":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"`":{"df":1,"docs":{"226":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"428":{"tf":1.0}}}}},"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"229":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"428":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"205":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"420":{"tf":2.449489742783178},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.449489742783178},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"68":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.7320508075688772}}}}}}},"df":34,"docs":{"140":{"tf":1.0},"218":{"tf":1.0},"245":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.0},"322":{"tf":4.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":2.23606797749979},"331":{"tf":2.0},"419":{"tf":2.8284271247461903},"420":{"tf":2.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":2.23606797749979},"425":{"tf":1.7320508075688772},"426":{"tf":2.6457513110645907},"427":{"tf":2.449489742783178},"428":{"tf":3.4641016151377544},"429":{"tf":1.7320508075688772},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":2.449489742783178},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"423":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"424":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.8284271247461903},"431":{"tf":2.23606797749979},"432":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"s":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"430":{"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":{},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"428":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":8,"docs":{"324":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"428":{"tf":2.0},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"432":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":61,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"130":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"21":{"tf":1.7320508075688772},"229":{"tf":1.0},"235":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.7320508075688772},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.7320508075688772},"449":{"tf":1.0},"450":{"tf":1.0},"453":{"tf":1.4142135623730951},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"175":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"330":{"tf":1.4142135623730951},"353":{"tf":1.0},"38":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"84":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":11,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":2.0},"39":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":48,"docs":{"101":{"tf":2.0},"105":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":2.0},"297":{"tf":1.0},"325":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"351":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"40":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.4142135623730951},"426":{"tf":1.0},"43":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"44":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"500":{"tf":1.0}}}}}}}}},"df":16,"docs":{"227":{"tf":1.0},"229":{"tf":3.7416573867739413},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"389":{"tf":1.0},"394":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"80":{"tf":2.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":10,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"153":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":2.23606797749979},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"301":{"tf":2.0},"340":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"361":{"tf":2.0},"454":{"tf":1.0},"455":{"tf":2.0},"459":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"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":{},"v":{"df":1,"docs":{"355":{"tf":1.0}}}},".":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"355":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"355":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"149":{"tf":1.0},"163":{"tf":1.0},"199":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"3":{"tf":1.0},"325":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.4142135623730951}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"247":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"173":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"254":{"tf":1.0},"269":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"460":{"tf":1.0},"471":{"tf":1.0},"497":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":13,"docs":{"2":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"416":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":11,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"171":{"tf":1.0},"236":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.4142135623730951},"463":{"tf":1.0},"489":{"tf":1.0}}},"t":{"df":2,"docs":{"131":{"tf":1.0},"351":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"351":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"t":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.4142135623730951},"229":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"277":{"tf":2.23606797749979},"298":{"tf":1.0},"30":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":2.0},"325":{"tf":1.4142135623730951},"349":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"376":{"tf":1.0},"437":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.7320508075688772},"72":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":17,"docs":{"112":{"tf":1.0},"130":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"153":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"21":{"tf":1.0},"217":{"tf":1.0},"229":{"tf":1.0},"30":{"tf":1.0},"328":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"14":{"tf":1.0},"160":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"266":{"tf":1.0},"27":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"274":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"494":{"tf":1.4142135623730951},"66":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"131":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.7320508075688772},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"199":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"310":{"tf":1.0},"376":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"306":{"tf":1.7320508075688772},"412":{"tf":1.0},"482":{"tf":1.4142135623730951},"56":{"tf":2.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"31":{"tf":1.0},"324":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"167":{"tf":1.0},"437":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"356":{"tf":1.0},"431":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"435":{"tf":1.0},"486":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}},"w":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"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":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"h":{"a":{"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":1,"docs":{"112":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"135":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"'":{"df":6,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"386":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"345":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"352":{"tf":1.0}},"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":{"352":{"tf":1.0}}}}}},"df":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":{"345":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.0},"345":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":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":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"41":{"tf":2.449489742783178},"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}},"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"u":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"430":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":3,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}},"df":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":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"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":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"336":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"156":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"<":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":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":{"345":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"342":{"tf":1.0},"345":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"339":{"tf":1.0},"345":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.7320508075688772}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":140,"docs":{"101":{"tf":1.7320508075688772},"115":{"tf":1.0},"12":{"tf":2.6457513110645907},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":2.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":2.6457513110645907},"147":{"tf":2.449489742783178},"148":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"152":{"tf":2.8284271247461903},"153":{"tf":2.8284271247461903},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":2.449489742783178},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":3.4641016151377544},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.6457513110645907},"187":{"tf":1.0},"188":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"194":{"tf":4.123105625617661},"195":{"tf":1.7320508075688772},"196":{"tf":2.23606797749979},"197":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"254":{"tf":1.4142135623730951},"276":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":2.449489742783178},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":2.8284271247461903},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.7320508075688772},"355":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.23606797749979},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"472":{"tf":2.8284271247461903},"474":{"tf":1.0},"475":{"tf":2.23606797749979},"476":{"tf":1.0},"478":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.0},"508":{"tf":1.0},"57":{"tf":1.4142135623730951},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"92":{"tf":3.0},"93":{"tf":1.4142135623730951},"95":{"tf":2.0},"98":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":18,"docs":{"146":{"tf":1.7320508075688772},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"}":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"340":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"12":{"tf":1.0}}}}}}}},"c":{"3":{"2":{"c":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"200":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.449489742783178}}},"df":2,"docs":{"224":{"tf":1.0},"226":{"tf":2.8284271247461903}},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"3":{"2":{"_":{"c":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.7320508075688772},"226":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":93,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":3.3166247903554},"131":{"tf":2.449489742783178},"141":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":2.23606797749979},"27":{"tf":1.0},"274":{"tf":1.7320508075688772},"279":{"tf":2.0},"295":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"339":{"tf":1.4142135623730951},"346":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"378":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.7320508075688772},"466":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0},"489":{"tf":2.8284271247461903},"491":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.7320508075688772},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"65":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"150":{"tf":1.4142135623730951},"174":{"tf":1.0},"191":{"tf":1.0},"212":{"tf":1.4142135623730951},"228":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.0},"500":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{"366":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"363":{"tf":2.8284271247461903},"364":{"tf":1.4142135623730951},"368":{"tf":2.6457513110645907},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"372":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"413":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"367":{"tf":1.0},"411":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"18":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":2.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"418":{"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":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"413":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"413":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":39,"docs":{"0":{"tf":1.0},"100":{"tf":2.449489742783178},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"22":{"tf":2.0},"333":{"tf":1.0},"337":{"tf":1.7320508075688772},"344":{"tf":1.0},"362":{"tf":2.8284271247461903},"363":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":2.0},"368":{"tf":2.8284271247461903},"369":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"410":{"tf":2.449489742783178},"411":{"tf":1.7320508075688772},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":3.4641016151377544},"415":{"tf":3.7416573867739413},"416":{"tf":2.23606797749979},"417":{"tf":1.0},"418":{"tf":4.123105625617661},"52":{"tf":1.4142135623730951},"67":{"tf":1.0},"95":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"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":2,"docs":{"112":{"tf":1.0},"257":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"337":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}}}}}},"df":2,"docs":{"229":{"tf":3.7416573867739413},"508":{"tf":1.0}}}},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"0":{"tf":1.4142135623730951},"471":{"tf":1.7320508075688772}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"252":{"tf":1.0},"372":{"tf":1.0},"386":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{":":{":":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"c":{"a":{"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":{"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"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":2,"docs":{"457":{"tf":1.0},"459":{"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":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"356":{"tf":1.0},"459":{"tf":2.8284271247461903},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"84":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"309":{"tf":1.0},"311":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"+":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"+":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":82,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"147":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"223":{"tf":1.0},"229":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.0},"398":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"435":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"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":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"d":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":125,"docs":{"0":{"tf":1.0},"100":{"tf":1.7320508075688772},"102":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"111":{"tf":2.0},"112":{"tf":2.0},"114":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"144":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":2.449489742783178},"237":{"tf":2.8284271247461903},"238":{"tf":2.23606797749979},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"33":{"tf":2.23606797749979},"333":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"356":{"tf":2.0},"359":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.7320508075688772},"363":{"tf":3.1622776601683795},"366":{"tf":1.7320508075688772},"367":{"tf":1.7320508075688772},"368":{"tf":3.605551275463989},"37":{"tf":1.0},"396":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"418":{"tf":1.0},"43":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.23606797749979},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":2.23606797749979},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.7320508075688772},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.7320508075688772},"491":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":2.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"105":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":2.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"z":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"236":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"453":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"489":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"t":{"df":7,"docs":{"119":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"303":{"tf":1.0},"311":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"182":{"tf":2.0}}}},"x":{"df":8,"docs":{"199":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"506":{"tf":1.0},"77":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.7320508075688772}},"i":{"c":{"df":2,"docs":{"372":{"tf":1.0},"373":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"{":{"b":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"284":{"tf":1.0},"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":80,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":2.449489742783178},"229":{"tf":2.6457513110645907},"231":{"tf":1.0},"240":{"tf":2.23606797749979},"241":{"tf":2.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"261":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":2.0},"322":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.449489742783178},"378":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":2.449489742783178},"396":{"tf":2.449489742783178},"397":{"tf":1.7320508075688772},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.449489742783178},"404":{"tf":1.0},"406":{"tf":1.7320508075688772},"409":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.7320508075688772},"81":{"tf":2.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"388":{"tf":1.0},"395":{"tf":1.0}},"e":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"e":{"+":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"319":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":10,"docs":{"130":{"tf":1.0},"189":{"tf":1.0},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"31":{"tf":1.0},"377":{"tf":1.0},"469":{"tf":1.0},"61":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"28":{"tf":1.0},"30":{"tf":2.23606797749979},"333":{"tf":1.0},"344":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"387":{"tf":2.23606797749979},"409":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":3,"docs":{"12":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":2.0}}}},"b":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"d":{"b":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"350":{"tf":1.0}}},"df":1,"docs":{"189":{"tf":1.0}}},"df":6,"docs":{"194":{"tf":1.0},"274":{"tf":1.0},"52":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":5,"docs":{"204":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"%":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"247":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"255":{"tf":1.0},"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"250":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"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":1,"docs":{"249":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":37,"docs":{"240":{"tf":1.0},"248":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"287":{"tf":1.0},"299":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.0},"367":{"tf":1.0},"38":{"tf":1.7320508075688772},"405":{"tf":1.4142135623730951},"433":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":2.6457513110645907},"489":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":1.7320508075688772},"509":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.0}},"g":{"df":1,"docs":{"290":{"tf":1.0}}}}}},"c":{"df":1,"docs":{"386":{"tf":1.0}},"i":{"d":{"df":11,"docs":{"12":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"489":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"52":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":7,"docs":{"361":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"431":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"216":{"tf":1.0},"245":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}}},"r":{"df":8,"docs":{"122":{"tf":1.0},"131":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"71":{"tf":1.0},"93":{"tf":2.23606797749979}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"125":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"254":{"tf":1.0},"255":{"tf":1.0},"307":{"tf":1.0},"381":{"tf":1.0}}},"df":0,"docs":{}}},"df":8,"docs":{"132":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.0},"381":{"tf":1.4142135623730951},"396":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.0},"408":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"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":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"368":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"417":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":70,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"221":{"tf":4.242640687119285},"226":{"tf":2.23606797749979},"229":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":2.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"39":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":2.0},"468":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"491":{"tf":3.1622776601683795},"496":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}},"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":{"d":{"df":1,"docs":{"356":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"s":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":63,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":2.6457513110645907},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"211":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"259":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"346":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.0},"371":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":2.0},"458":{"tf":2.449489742783178},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":2.23606797749979},"494":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.4142135623730951},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":12,"docs":{"146":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"355":{"tf":1.0},"426":{"tf":1.0},"44":{"tf":1.0},"459":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":8,"docs":{"171":{"tf":1.7320508075688772},"173":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":6,"docs":{"117":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"416":{"tf":1.0},"491":{"tf":1.0},"507":{"tf":1.0}}},"t":{"df":3,"docs":{"170":{"tf":1.0},"171":{"tf":1.0},"183":{"tf":1.0}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"136":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"156":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":1,"docs":{"3":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"125":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"289":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":72,"docs":{"101":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"105":{"tf":2.0},"112":{"tf":1.0},"13":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"16":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":2.0},"244":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":2.23606797749979},"373":{"tf":2.0},"374":{"tf":1.4142135623730951},"380":{"tf":1.0},"386":{"tf":1.0},"411":{"tf":1.0},"419":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.0},"469":{"tf":1.7320508075688772},"470":{"tf":2.23606797749979},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"477":{"tf":2.0},"478":{"tf":1.7320508075688772},"479":{"tf":1.0},"484":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"306":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"144":{"tf":1.0},"263":{"tf":1.0},"280":{"tf":1.0},"302":{"tf":1.0},"475":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"449":{"tf":1.4142135623730951},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"13":{"tf":1.0},"38":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"402":{"tf":1.4142135623730951},"406":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":24,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"226":{"tf":2.23606797749979},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.0},"351":{"tf":1.0},"39":{"tf":1.0},"423":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"390":{"tf":1.0},"395":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"d":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"p":{":":{":":{"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":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"395":{"tf":1.0}}}}},"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":{},"r":{"df":0,"docs":{},"i":{"b":{"df":30,"docs":{"114":{"tf":1.0},"192":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"253":{"tf":1.4142135623730951},"258":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"354":{"tf":1.0},"386":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.0},"470":{"tf":1.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"131":{"tf":2.0},"264":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"343":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"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":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":55,"docs":{"13":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":2.6457513110645907},"330":{"tf":1.0},"331":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":2.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":2.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":1.4142135623730951},"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":2.23606797749979},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":2.0},"423":{"tf":2.23606797749979},"427":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"59":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":53,"docs":{"0":{"tf":2.0},"1":{"tf":1.4142135623730951},"10":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"2":{"tf":1.0},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.4142135623730951},"322":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"350":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.7320508075688772},"44":{"tf":2.0},"45":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"68":{"tf":1.7320508075688772},"9":{"tf":2.0},"96":{"tf":1.0}}}},"r":{"df":10,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"485":{"tf":1.0},"491":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"218":{"tf":1.0},"269":{"tf":1.7320508075688772},"278":{"tf":1.0},"431":{"tf":1.0},"87":{"tf":1.0}}}}},"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":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":29,"docs":{"143":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"223":{"tf":1.0},"249":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"291":{"tf":1.0},"3":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"331":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.4142135623730951},"77":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"269":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"351":{"tf":1.0},"468":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.4142135623730951},"493":{"tf":1.0},"507":{"tf":1.0},"87":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"453":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"177":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"196":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":30,"docs":{"136":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"198":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"499":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"59":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"419":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"200":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"238":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"170":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":52,"docs":{"119":{"tf":1.0},"143":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"210":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"296":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"337":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"366":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":2.23606797749979},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":16,"docs":{"150":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"234":{"tf":1.0},"294":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":2,"docs":{"447":{"tf":1.0},"499":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"108":{"tf":1.0},"236":{"tf":2.0},"286":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":38,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.4142135623730951},"238":{"tf":1.0},"241":{"tf":1.0},"277":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.4142135623730951},"420":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"464":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"476":{"tf":1.0},"481":{"tf":1.0},"50":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"154":{"tf":1.0},"438":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"123":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.23606797749979},"248":{"tf":1.0},"491":{"tf":1.4142135623730951}},"e":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"352":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"153":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"150":{"tf":1.4142135623730951},"247":{"tf":1.0},"254":{"tf":1.0}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"169":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"234":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"411":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"158":{"tf":1.4142135623730951},"205":{"tf":1.0},"227":{"tf":1.0},"239":{"tf":1.0},"28":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"336":{"tf":1.4142135623730951},"369":{"tf":1.0},"403":{"tf":1.4142135623730951},"418":{"tf":1.0},"5":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"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":{"83":{"tf":1.0}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"373":{"tf":1.0},"416":{"tf":1.0},"438":{"tf":1.0},"447":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":17,"docs":{"119":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":2.0},"22":{"tf":2.23606797749979},"347":{"tf":1.0},"354":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"475":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.4142135623730951},"67":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"320":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"508":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"<":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}},"df":2,"docs":{"299":{"tf":1.0},"344":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"257":{"tf":1.0},"31":{"tf":1.0},"335":{"tf":1.0},"367":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"319":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"464":{"tf":1.0}}}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}}},"i":{"d":{"df":4,"docs":{"229":{"tf":1.0},"282":{"tf":1.0},"54":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"289":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"304":{"tf":1.0},"314":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"343":{"tf":1.0},"424":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":26,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":2.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"220":{"tf":1.0},"289":{"tf":1.0},"345":{"tf":1.4142135623730951},"355":{"tf":1.0},"402":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"468":{"tf":1.0},"63":{"tf":1.0},"84":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}},".":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"<":{"df":0,"docs":{},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":37,"docs":{"114":{"tf":1.0},"154":{"tf":1.0},"188":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"221":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.7320508075688772},"32":{"tf":2.8284271247461903},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"414":{"tf":1.0},"419":{"tf":1.0},"426":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"91":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":8,"docs":{"221":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"52":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":28,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"182":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"283":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"428":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"307":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":35,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"204":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"289":{"tf":1.0},"301":{"tf":1.0},"324":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"396":{"tf":1.0},"408":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"495":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"366":{"tf":1.0},"438":{"tf":1.0}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}}},"’":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":6,"docs":{"222":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"373":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":1,"docs":{"9":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"304":{"tf":1.0}},"n":{"df":5,"docs":{"110":{"tf":1.0},"134":{"tf":1.4142135623730951},"156":{"tf":1.0},"350":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"156":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"413":{"tf":1.4142135623730951},"475":{"tf":1.0},"481":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"240":{"tf":1.0},"297":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"116":{"tf":1.7320508075688772},"212":{"tf":1.0},"411":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"44":{"tf":1.0},"489":{"tf":1.0},"73":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":37,"docs":{"136":{"tf":1.4142135623730951},"153":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.4142135623730951},"265":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.0},"44":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"124":{"tf":1.0},"204":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"o":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"b":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"c":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"41":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"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":{"21":{"tf":1.0}}}}}}}},"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":{"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":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.7320508075688772}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"180":{"tf":1.0},"350":{"tf":1.4142135623730951},"405":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":3,"docs":{"350":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"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":{"204":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"338":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"112":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"442":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"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":{},"g":{"df":34,"docs":{"125":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"306":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"353":{"tf":1.0},"37":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"459":{"tf":2.23606797749979},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.0},"78":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"4":{"9":{"9":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":71,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"165":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"235":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.0},"33":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"398":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"416":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"494":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"313":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"303":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"156":{"tf":1.0},"199":{"tf":1.0},"487":{"tf":1.0},"507":{"tf":1.7320508075688772},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"219":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"33":{"tf":1.0},"431":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":14,"docs":{"109":{"tf":1.0},"143":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.0},"234":{"tf":1.0},"251":{"tf":1.0},"287":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"439":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"293":{"tf":1.0},"313":{"tf":1.0},"332":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"508":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":12,"docs":{"143":{"tf":1.0},"150":{"tf":1.0},"164":{"tf":1.0},"269":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"428":{"tf":1.0},"492":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"c":{"2":{"df":2,"docs":{"32":{"tf":1.0},"405":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.7320508075688772}}}},"o":{"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":3,"docs":{"12":{"tf":1.0},"135":{"tf":1.0},"331":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":9,"docs":{"194":{"tf":1.7320508075688772},"199":{"tf":1.0},"212":{"tf":2.0},"236":{"tf":2.449489742783178},"261":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.0},"446":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"32":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"362":{"tf":1.0},"94":{"tf":1.0}}}}}}},"g":{"df":2,"docs":{"156":{"tf":1.0},"350":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":4,"docs":{"209":{"tf":1.0},"411":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"318":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"386":{"tf":1.0},"462":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"340":{"tf":1.0},"469":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"m":{"b":{"df":1,"docs":{"309":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"150":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":10,"docs":{"104":{"tf":1.0},"199":{"tf":1.0},"229":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":1.0},"343":{"tf":1.4142135623730951},"431":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"251":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.4142135623730951},"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"17":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":2.23606797749979},"217":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"233":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"380":{"tf":2.449489742783178},"381":{"tf":1.0},"433":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0}}}},"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"451":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"416":{"tf":1.0},"457":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"d":{"df":15,"docs":{"200":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":4.358898943540674},"231":{"tf":1.4142135623730951},"313":{"tf":1.0},"386":{"tf":2.8284271247461903},"387":{"tf":1.0},"482":{"tf":1.0},"503":{"tf":3.1622776601683795},"504":{"tf":2.449489742783178},"505":{"tf":1.4142135623730951},"506":{"tf":2.449489742783178},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0}},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"269":{"tf":1.0},"37":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0},"491":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"316":{"tf":1.0},"337":{"tf":1.0},"59":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":23,"docs":{"105":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.0},"331":{"tf":1.0},"395":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"492":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":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":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"350":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}}}}}}},"df":36,"docs":{"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"22":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":3.0},"347":{"tf":3.0},"348":{"tf":1.0},"349":{"tf":3.605551275463989},"350":{"tf":5.0},"351":{"tf":4.69041575982343},"352":{"tf":3.0},"353":{"tf":2.449489742783178},"354":{"tf":2.449489742783178},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":3.0},"358":{"tf":1.0},"359":{"tf":3.1622776601683795},"360":{"tf":1.0},"361":{"tf":3.0},"42":{"tf":1.7320508075688772},"43":{"tf":3.7416573867739413},"44":{"tf":3.872983346207417},"459":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.7320508075688772},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"356":{"tf":1.0}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"361":{"tf":1.0}}}}}}}}}}}},"v":{"df":1,"docs":{"350":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"351":{"tf":1.0}}}}}}}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":15,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"286":{"tf":1.0},"322":{"tf":2.449489742783178},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"328":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":2.0},"482":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"354":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"415":{"tf":1.0},"418":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":5,"docs":{"267":{"tf":1.0},"268":{"tf":1.0},"52":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"217":{"tf":1.0},"278":{"tf":1.0},"313":{"tf":1.0},"349":{"tf":1.0},"362":{"tf":1.4142135623730951},"380":{"tf":1.0},"404":{"tf":1.0},"415":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"496":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"244":{"tf":1.0},"249":{"tf":1.0},"454":{"tf":1.0},"54":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":26,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.4142135623730951},"171":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"245":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"503":{"tf":1.0},"73":{"tf":1.0},"86":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"84":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"264":{"tf":1.0},"313":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":44,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"276":{"tf":1.4142135623730951},"289":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"325":{"tf":2.23606797749979},"333":{"tf":1.0},"34":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"391":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"50":{"tf":1.4142135623730951},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"147":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0}}}}}},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"126":{"tf":1.0},"131":{"tf":1.4142135623730951},"154":{"tf":1.0},"380":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"257":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"101":{"tf":1.4142135623730951},"106":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"214":{"tf":1.0},"350":{"tf":1.4142135623730951},"380":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"131":{"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":{"44":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"396":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"452":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":8,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"493":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"451":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"161":{"tf":1.0},"204":{"tf":1.0},"313":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.7320508075688772},"313":{"tf":3.1622776601683795}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"157":{"tf":1.7320508075688772},"2":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"287":{"tf":1.0},"293":{"tf":1.0},"303":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"433":{"tf":1.0},"96":{"tf":1.0}}}}}}},"r":{"(":{"_":{"df":3,"docs":{"156":{"tf":1.4142135623730951},"229":{"tf":1.0},"260":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"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":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":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":{"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"414":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"156":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"422":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":8,"docs":{"228":{"tf":1.0},"268":{"tf":1.0},"416":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"457":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"260":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":2.0}}}}}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"289":{"tf":1.0},"299":{"tf":1.4142135623730951},"440":{"tf":1.0},"445":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"295":{"tf":1.0}}},"(":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"426":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"e":{"0":{"1":{"0":{"7":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"1":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"7":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"8":{"df":2,"docs":{"309":{"tf":1.0},"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":125,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":3.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.0},"228":{"tf":2.8284271247461903},"229":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"251":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":2.449489742783178},"261":{"tf":4.898979485566356},"262":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":2.23606797749979},"277":{"tf":3.0},"280":{"tf":1.0},"287":{"tf":3.872983346207417},"288":{"tf":1.0},"289":{"tf":4.0},"290":{"tf":3.3166247903554},"291":{"tf":3.3166247903554},"292":{"tf":1.0},"293":{"tf":3.1622776601683795},"294":{"tf":2.8284271247461903},"295":{"tf":3.872983346207417},"296":{"tf":3.1622776601683795},"297":{"tf":4.898979485566356},"298":{"tf":3.3166247903554},"299":{"tf":3.0},"300":{"tf":2.0},"301":{"tf":3.872983346207417},"303":{"tf":1.4142135623730951},"305":{"tf":2.449489742783178},"306":{"tf":2.23606797749979},"307":{"tf":2.6457513110645907},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.7320508075688772},"316":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"331":{"tf":1.4142135623730951},"333":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"340":{"tf":2.6457513110645907},"341":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"344":{"tf":2.449489742783178},"393":{"tf":1.4142135623730951},"396":{"tf":1.0},"408":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":2.6457513110645907},"434":{"tf":3.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":2.0},"446":{"tf":1.0},"45":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"489":{"tf":3.0},"491":{"tf":2.449489742783178},"493":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"54":{"tf":2.0},"56":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":3.3166247903554},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"341":{"tf":1.0},"344":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"293":{"tf":2.0},"489":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"80":{"tf":1.0}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":4,"docs":{"269":{"tf":1.0},"306":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"325":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"362":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"471":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":11,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"351":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"196":{"tf":1.0},"468":{"tf":1.0}}}}}},"t":{"c":{"df":8,"docs":{"119":{"tf":1.0},"266":{"tf":1.0},"310":{"tf":1.0},"349":{"tf":1.4142135623730951},"368":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"[":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"349":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"221":{"tf":1.0},"316":{"tf":1.0},"349":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":22,"docs":{"105":{"tf":1.4142135623730951},"118":{"tf":1.0},"143":{"tf":1.0},"169":{"tf":1.0},"266":{"tf":1.0},"282":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.4142135623730951},"422":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"94":{"tf":1.0}},"t":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}},"df":33,"docs":{"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.0},"216":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":2.0},"260":{"tf":1.7320508075688772},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"318":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":2.0},"413":{"tf":1.4142135623730951},"433":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"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":{"92":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"103":{"tf":1.4142135623730951},"204":{"tf":1.0},"241":{"tf":1.0},"325":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}},"r":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"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":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"119":{"tf":1.0},"161":{"tf":1.0},"227":{"tf":1.0},"369":{"tf":1.0},"454":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"5":{"tf":1.0}}}},"v":{"df":24,"docs":{"111":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.7320508075688772},"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},"32":{"tf":1.0},"45":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"231":{"tf":1.4142135623730951},"453":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.0},"335":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"171":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"362":{"tf":1.0},"452":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":134,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"163":{"tf":3.3166247903554},"164":{"tf":3.1622776601683795},"165":{"tf":2.6457513110645907},"166":{"tf":3.3166247903554},"167":{"tf":2.8284271247461903},"168":{"tf":1.0},"169":{"tf":3.7416573867739413},"170":{"tf":3.1622776601683795},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":2.23606797749979},"226":{"tf":1.0},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"408":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.4142135623730951},"422":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"435":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":2.0},"458":{"tf":2.0},"459":{"tf":1.0},"470":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.7320508075688772},"508":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"12":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":19,"docs":{"119":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"240":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"325":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"415":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"451":{"tf":1.0},"488":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"325":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"248":{"tf":1.0},"250":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"305":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"221":{"tf":1.0},"396":{"tf":1.4142135623730951},"434":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"145":{"tf":1.0},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"177":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"454":{"tf":2.449489742783178},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"7":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"118":{"tf":1.0},"169":{"tf":1.0},"362":{"tf":1.0}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":63,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"5":{"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.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"301":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":1,"docs":{"459":{"tf":1.0}}},"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":16,"docs":{"12":{"tf":1.0},"228":{"tf":2.8284271247461903},"275":{"tf":1.0},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"387":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0}},"e":{"d":{"_":{"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":{"229":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":5,"docs":{"124":{"tf":1.0},"13":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"236":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"303":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"386":{"tf":1.0},"414":{"tf":1.0},"436":{"tf":1.0},"449":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"i":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"116":{"tf":1.7320508075688772},"410":{"tf":1.0},"411":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":2,"docs":{"116":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"i":{"df":1,"docs":{"418":{"tf":2.23606797749979}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.0},"273":{"tf":1.0},"347":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"124":{"tf":1.0},"129":{"tf":1.0},"313":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"458":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}},"r":{"df":7,"docs":{"302":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"415":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":18,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"203":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"380":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":31,"docs":{"143":{"tf":1.4142135623730951},"218":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.4142135623730951},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"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},"477":{"tf":1.0},"478":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"216":{"tf":1.0},"274":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"406":{"tf":1.0},"414":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":3,"docs":{"305":{"tf":1.0},"313":{"tf":2.23606797749979},"84":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"112":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"418":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":27,"docs":{"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"18":{"tf":1.0},"251":{"tf":1.0},"255":{"tf":2.449489742783178},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"279":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.7320508075688772},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":2.23606797749979},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.4142135623730951},"482":{"tf":2.449489742783178},"72":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.6457513110645907},"84":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":3.1622776601683795}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{">":{"(":{")":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"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":{},"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}}}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}},"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":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"82":{"tf":1.0}}},"2":{"df":1,"docs":{"82":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}}},"t":{">":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":35,"docs":{"182":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"391":{"tf":1.0},"394":{"tf":2.449489742783178},"398":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":2.6457513110645907},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.0},"418":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":2.449489742783178},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":3.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":2.23606797749979}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"119":{"tf":1.0},"135":{"tf":1.0},"231":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.4142135623730951},"438":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"269":{"tf":2.0},"82":{"tf":1.0}}}}}},"df":6,"docs":{"22":{"tf":1.0},"229":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0}}}}},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"4":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}},"s":{"4":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951}}},">":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":3,"docs":{"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0}}}}}},"{":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},".":{"a":{".":{"df":0,"docs":{},"q":{"df":2,"docs":{"451":{"tf":1.0},"460":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"_":{"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":{},"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":3,"docs":{"427":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"411":{"tf":1.0},"427":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"332":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"437":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"t":{"df":5,"docs":{"261":{"tf":1.0},"309":{"tf":1.4142135623730951},"415":{"tf":1.0},"430":{"tf":1.0},"505":{"tf":1.0}},"o":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"194":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"351":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"430":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"221":{"tf":1.0},"266":{"tf":1.4142135623730951},"277":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":1.0},"459":{"tf":1.0},"482":{"tf":1.0},"54":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"310":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":1,"docs":{"414":{"tf":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":{"414":{"tf":2.449489742783178},"415":{"tf":2.8284271247461903},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.23606797749979}}}}}}}}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"220":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":2.6457513110645907},"415":{"tf":2.449489742783178},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":2.6457513110645907},"95":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"<":{"'":{"a":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":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":{"414":{"tf":1.0}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"221":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0}},"i":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"200":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"325":{"tf":1.0},"422":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":5,"docs":{"150":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"309":{"tf":2.0},"424":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"305":{"tf":1.0},"307":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":6,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"378":{"tf":1.0}}},"r":{"df":2,"docs":{"194":{"tf":1.0},"491":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"114":{"tf":1.0},"171":{"tf":1.0}}}}}},"t":{"df":4,"docs":{"17":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"386":{"tf":1.0}}}}}}},"df":13,"docs":{"194":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":74,"docs":{"101":{"tf":1.0},"103":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":3.605551275463989},"217":{"tf":2.8284271247461903},"218":{"tf":2.8284271247461903},"219":{"tf":3.1622776601683795},"220":{"tf":3.0},"221":{"tf":4.69041575982343},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"283":{"tf":1.0},"31":{"tf":1.0},"330":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"346":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":3.0},"381":{"tf":2.8284271247461903},"382":{"tf":2.8284271247461903},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"405":{"tf":3.4641016151377544},"406":{"tf":1.0},"409":{"tf":1.0},"431":{"tf":1.4142135623730951},"460":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"492":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":2.23606797749979},"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.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"81":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"31":{"tf":1.0},"37":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"229":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":2,"docs":{"427":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"214":{"tf":1.4142135623730951},"266":{"tf":1.0},"414":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"494":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":7,"docs":{"112":{"tf":1.0},"160":{"tf":1.0},"21":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"352":{"tf":1.0},"38":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":1,"docs":{"395":{"tf":1.0}}},"(":{"df":1,"docs":{"377":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"468":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"1":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":49,"docs":{"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.0},"229":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.4142135623730951},"272":{"tf":1.0},"279":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.0},"33":{"tf":1.0},"343":{"tf":1.0},"38":{"tf":2.0},"387":{"tf":1.0},"395":{"tf":1.7320508075688772},"396":{"tf":1.7320508075688772},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":3.0},"402":{"tf":1.0},"404":{"tf":1.4142135623730951},"408":{"tf":1.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.449489742783178},"446":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"468":{"tf":1.0},"48":{"tf":2.0},"49":{"tf":1.7320508075688772},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"305":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.0},"506":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"452":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":24,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"206":{"tf":1.0},"251":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"345":{"tf":1.0},"362":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"508":{"tf":1.0},"93":{"tf":2.0},"99":{"tf":1.7320508075688772}}},"l":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{":":{"#":{"3":{"3":{"3":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"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":3,"docs":{"104":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"401":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"(":{"df":0,"docs":{},"|":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":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":{"257":{"tf":2.6457513110645907},"78":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":16,"docs":{"105":{"tf":1.0},"119":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"226":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":1.0},"274":{"tf":1.0},"350":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.4142135623730951},"482":{"tf":1.0},"503":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":3.3166247903554}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":19,"docs":{"13":{"tf":1.0},"153":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.7320508075688772},"66":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":22,"docs":{"112":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"310":{"tf":1.0},"345":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":43,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"117":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"229":{"tf":1.0},"251":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"334":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":1.0},"436":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.0},"481":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"283":{"tf":1.0},"301":{"tf":1.0},"395":{"tf":1.0}}},"x":{"df":23,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":2.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0},"507":{"tf":1.0},"53":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":13,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"331":{"tf":1.4142135623730951},"350":{"tf":1.0},"81":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"156":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":21,"docs":{"204":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"290":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"o":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"207":{"tf":1.0},"28":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}}},"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"349":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"19":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"318":{"tf":1.0},"349":{"tf":1.0},"454":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"333":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{}},"<":{"c":{"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":36,"docs":{"101":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"120":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"2":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"340":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"500":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.0}}}},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"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":{"71":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":122,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.7320508075688772},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.0},"199":{"tf":3.872983346207417},"2":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":8.06225774829855},"227":{"tf":2.8284271247461903},"228":{"tf":2.8284271247461903},"229":{"tf":4.0},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.6457513110645907},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"272":{"tf":2.0},"274":{"tf":3.7416573867739413},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"319":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":2.449489742783178},"371":{"tf":2.23606797749979},"377":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":2.6457513110645907},"398":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":2.8284271247461903},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"442":{"tf":1.0},"457":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":3.1622776601683795},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"48":{"tf":2.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.4641016151377544},"490":{"tf":1.7320508075688772},"493":{"tf":1.7320508075688772},"506":{"tf":2.0},"508":{"tf":2.23606797749979},"56":{"tf":1.7320508075688772},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.8284271247461903},"80":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}}}}}},"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}},"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":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"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":2,"docs":{"156":{"tf":1.0},"162":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"226":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.0},"406":{"tf":1.0},"482":{"tf":1.0}},"s":{"df":3,"docs":{"27":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"241":{"tf":1.0},"92":{"tf":2.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":104,"docs":{"109":{"tf":1.7320508075688772},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.7320508075688772},"174":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"291":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"378":{"tf":1.0},"396":{"tf":1.4142135623730951},"405":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.0},"422":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"495":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"o":{"df":2,"docs":{"221":{"tf":2.0},"48":{"tf":2.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"244":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"141":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"477":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"334":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"495":{"tf":1.0}}}},"v":{"df":1,"docs":{"471":{"tf":1.0}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"194":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"418":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"422":{"tf":1.0}}}}},"k":{"df":1,"docs":{"7":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"99":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"108":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"226":{"tf":1.0},"299":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.7320508075688772},"386":{"tf":2.8284271247461903},"387":{"tf":3.0},"401":{"tf":1.4142135623730951},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"301":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}}},"<":{"'":{"_":{"df":3,"docs":{"248":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":19,"docs":{"114":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"457":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"251":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":11,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.4142135623730951},"489":{"tf":1.0}},"s":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"135":{"tf":1.0},"322":{"tf":1.0}}}},"df":13,"docs":{"27":{"tf":1.0},"288":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"4":{"tf":1.0},"418":{"tf":2.0},"508":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":5,"docs":{"287":{"tf":1.0},"342":{"tf":1.0},"391":{"tf":1.0},"433":{"tf":1.0},"54":{"tf":1.0}}}}},"p":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":1,"docs":{"90":{"tf":1.0}}},"r":{"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":2.0}}}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"108":{"tf":1.0},"470":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"428":{"tf":1.0}}},"df":16,"docs":{"132":{"tf":2.23606797749979},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"331":{"tf":1.7320508075688772},"381":{"tf":1.0},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"205":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"318":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"163":{"tf":1.0},"337":{"tf":1.4142135623730951},"464":{"tf":1.0},"58":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"205":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"150":{"tf":1.0},"289":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"471":{"tf":1.0},"482":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"325":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"371":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"475":{"tf":1.0}}}}},"<":{"&":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"d":{"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":{},"s":{"d":{"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":1,"docs":{"371":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"101":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"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":{"106":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{"<":{"c":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"482":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":7,"docs":{"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0}}},"y":{"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"8":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"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":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":{"85":{"tf":1.4142135623730951}}}}}}}}}},"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"274":{"tf":1.0},"84":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"<":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}},"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}},"s":{"<":{"df":0,"docs":{},"p":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"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":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"86":{"tf":1.0}},"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":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"269":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"132":{"tf":1.0},"410":{"tf":1.0}}}}},"l":{"df":11,"docs":{"132":{"tf":1.0},"165":{"tf":1.0},"18":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"477":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":10,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"205":{"tf":1.0},"263":{"tf":1.0},"269":{"tf":1.0},"361":{"tf":1.0},"374":{"tf":1.0},"423":{"tf":1.4142135623730951},"500":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":81,"docs":{"100":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":2.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":2.0},"204":{"tf":1.4142135623730951},"214":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"310":{"tf":2.23606797749979},"311":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"373":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"396":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":2.0},"430":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"139":{"tf":1.0},"155":{"tf":1.0},"23":{"tf":1.0},"356":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"266":{"tf":2.23606797749979},"355":{"tf":1.7320508075688772},"356":{"tf":2.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"105":{"tf":1.0},"197":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"316":{"tf":1.0},"330":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"12":{"tf":1.0},"260":{"tf":1.0},"381":{"tf":1.0},"471":{"tf":1.0}}}}}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":3,"docs":{"249":{"tf":1.0},"266":{"tf":2.6457513110645907},"269":{"tf":1.7320508075688772}},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"102":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"274":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.7320508075688772},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"337":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"400":{"tf":1.0},"413":{"tf":2.23606797749979},"414":{"tf":2.23606797749979},"416":{"tf":2.0},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"455":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"489":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"413":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"414":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"414":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"414":{"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"416":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":4,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":2.0},"269":{"tf":1.0},"309":{"tf":2.0},"310":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"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":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"df":0,"docs":{}},"—":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.0}}}}},"g":{"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":3,"docs":{"167":{"tf":1.0},"169":{"tf":1.0},"289":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"157":{"tf":1.0},"3":{"tf":1.0},"350":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":2.449489742783178},"382":{"tf":2.0},"383":{"tf":1.7320508075688772},"409":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"113":{"tf":1.4142135623730951},"383":{"tf":1.0},"446":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":206,"docs":{"101":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":2.23606797749979},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":2.0},"156":{"tf":2.449489742783178},"157":{"tf":1.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":2.23606797749979},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"27":{"tf":2.6457513110645907},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":2.0},"296":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.0},"308":{"tf":2.23606797749979},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.0},"313":{"tf":2.6457513110645907},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0},"322":{"tf":2.6457513110645907},"324":{"tf":1.7320508075688772},"325":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":2.0},"341":{"tf":1.0},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"349":{"tf":2.23606797749979},"35":{"tf":1.0},"350":{"tf":2.0},"351":{"tf":2.449489742783178},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"4":{"tf":2.0},"40":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":2.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.7320508075688772},"465":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.6457513110645907},"62":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"69":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":2.6457513110645907},"93":{"tf":3.7416573867739413},"95":{"tf":1.0},"96":{"tf":1.0}}}}},"t":{":":{":":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"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":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"251":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"80":{"tf":1.0},"89":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"304":{"tf":1.0},"309":{"tf":1.4142135623730951},"314":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"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":{},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"80":{"tf":1.7320508075688772},"89":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"304":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"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":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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":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":{"146":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":2.0},"408":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.4142135623730951},"508":{"tf":1.0},"98":{"tf":1.4142135623730951}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"s":{"3":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"117":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"435":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":7,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"86":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}},"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":1,"docs":{"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"83":{"tf":1.0},"84":{"tf":2.449489742783178}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.8284271247461903}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":2.6457513110645907}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{":":{":":{"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":{},"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":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"313":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"s":{"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":{"310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"_":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"150":{"tf":1.0},"154":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1":{"tf":1.0},"183":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"471":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"147":{"tf":1.4142135623730951},"273":{"tf":1.0},"319":{"tf":1.4142135623730951},"361":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"381":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}},"n":{"df":44,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":1.0},"231":{"tf":2.0},"245":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"413":{"tf":1.7320508075688772},"416":{"tf":1.0},"430":{"tf":1.0},"438":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":3,"docs":{"349":{"tf":1.0},"350":{"tf":2.0},"43":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"203":{"tf":1.0},"235":{"tf":1.0}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"15":{"tf":1.0},"150":{"tf":1.0},"240":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"303":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"72":{"tf":1.0},"9":{"tf":1.0}}}},"df":22,"docs":{"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"261":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":2.23606797749979},"314":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"371":{"tf":1.0},"377":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"455":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"307":{"tf":1.0}}},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":4,"docs":{"257":{"tf":1.0},"297":{"tf":1.7320508075688772},"305":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"p":{"2":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"b":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.0}}},"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"201":{"tf":1.7320508075688772},"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},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"257":{"tf":1.0},"302":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"218":{"tf":1.0},"284":{"tf":1.0},"33":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.4142135623730951},"130":{"tf":1.0},"284":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.7320508075688772},"51":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"146":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"310":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}}},"t":{";":{"df":0,"docs":{},"|":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"|":{"b":{"(":{"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":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"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":{"52":{"tf":1.0}}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}}},"df":9,"docs":{"193":{"tf":2.23606797749979},"194":{"tf":3.3166247903554},"284":{"tf":1.0},"349":{"tf":2.6457513110645907},"72":{"tf":3.3166247903554},"86":{"tf":2.8284271247461903},"87":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951},"89":{"tf":3.3166247903554}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"205":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.0},"316":{"tf":1.0},"414":{"tf":1.0},"468":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"218":{"tf":1.0},"240":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"247":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.0},"258":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"h":{"2":{"df":2,"docs":{"108":{"tf":1.0},"111":{"tf":1.0}}},"a":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"166":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":46,"docs":{"102":{"tf":1.0},"110":{"tf":2.23606797749979},"112":{"tf":2.0},"113":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"193":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"232":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"402":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"482":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"71":{"tf":1.0},"79":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"c":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.0},"279":{"tf":1.0},"82":{"tf":1.7320508075688772}}}}}}}},"0":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"274":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"`":{"]":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":42,"docs":{"137":{"tf":1.0},"18":{"tf":1.0},"212":{"tf":1.0},"257":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":1.0},"269":{"tf":4.0},"272":{"tf":2.0},"274":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":2.449489742783178},"312":{"tf":2.0},"313":{"tf":2.8284271247461903},"317":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"500":{"tf":1.0},"54":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951},"84":{"tf":2.23606797749979},"89":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"e":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.4142135623730951},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"220":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"459":{"tf":1.0},"495":{"tf":1.0},"506":{"tf":1.0}}}},"i":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"338":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"1":{"tf":1.4142135623730951},"16":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"298":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"308":{"tf":1.0},"311":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"112":{"tf":1.0},"153":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"230":{"tf":1.7320508075688772},"30":{"tf":1.0},"319":{"tf":1.0},"337":{"tf":1.0},"405":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.8284271247461903}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"34":{"tf":1.0},"37":{"tf":1.0}}}}},"u":{"6":{"4":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"326":{"tf":1.0},"466":{"tf":2.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"328":{"tf":1.0}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"232":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"269":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"112":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"419":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"470":{"tf":1.0},"489":{"tf":1.0},"504":{"tf":1.0},"68":{"tf":1.0},"93":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"266":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":2.8284271247461903}},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"183":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"418":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"200":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"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":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":2.23606797749979},"229":{"tf":1.4142135623730951},"231":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"82":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":42,"docs":{"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"13":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"226":{"tf":4.123105625617661},"227":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":3.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"269":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"347":{"tf":1.0},"351":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":1.4142135623730951},"457":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":3.0},"491":{"tf":1.0},"500":{"tf":2.0},"501":{"tf":1.7320508075688772},"503":{"tf":1.0},"504":{"tf":2.0},"505":{"tf":1.4142135623730951},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"]":{"df":1,"docs":{"199":{"tf":1.0}}},"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":6,"docs":{"199":{"tf":1.7320508075688772},"226":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"226":{"tf":4.795831523312719},"227":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"x":{"df":4,"docs":{"200":{"tf":1.0},"226":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"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":{}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},".":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"236":{"tf":1.0},"501":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"<":{"'":{"_":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"200":{"tf":1.0},"226":{"tf":2.449489742783178},"227":{"tf":1.0},"229":{"tf":1.0},"482":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"r":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"&":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"c":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"3":{"2":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"226":{"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":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"275":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"r":{"df":2,"docs":{"14":{"tf":1.0},"56":{"tf":1.0}}},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"303":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"205":{"tf":1.0},"229":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951}}}},"p":{"df":14,"docs":{"131":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"269":{"tf":1.0},"305":{"tf":1.4142135623730951},"318":{"tf":1.0},"33":{"tf":1.0},"397":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"40":{"tf":1.0},"481":{"tf":1.0}}}}}},"n":{"c":{"df":5,"docs":{"245":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"458":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"500":{"tf":1.0}}},"df":40,"docs":{"153":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"206":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"226":{"tf":1.0},"229":{"tf":2.0},"503":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"319":{"tf":1.0}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"291":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"226":{"tf":1.0},"278":{"tf":1.0},"300":{"tf":1.0},"345":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"0":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"2":{"tf":1.0},"284":{"tf":1.0},"310":{"tf":1.0},"336":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"451":{"tf":1.4142135623730951},"52":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"204":{"tf":1.4142135623730951},"356":{"tf":1.0},"412":{"tf":1.0},"458":{"tf":1.4142135623730951},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"171":{"tf":1.0},"431":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"316":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"499":{"tf":1.0}}}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"100":{"tf":1.0},"162":{"tf":1.0},"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"361":{"tf":1.0},"418":{"tf":1.0}}}},"j":{"df":0,"docs":{},"r":{"3":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"423":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":16,"docs":{"111":{"tf":1.0},"112":{"tf":2.0},"156":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.4142135623730951},"343":{"tf":1.0},"371":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"431":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"247":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"240":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"k":{"df":7,"docs":{"305":{"tf":1.0},"438":{"tf":1.7320508075688772},"446":{"tf":1.7320508075688772},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"52":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"112":{"tf":1.0},"141":{"tf":1.0},"289":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"80":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"261":{"tf":1.0},"84":{"tf":1.0}}}}}},"/":{"1":{".":{"1":{"df":3,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"229":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"108":{"tf":1.0},"112":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"229":{"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":{"2":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"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":{"483":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{"_":{"1":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"255":{"tf":1.7320508075688772},"451":{"tf":1.0},"458":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"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":2,"docs":{"231":{"tf":1.0},"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"457":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"482":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"482":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"231":{"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"231":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":4,"docs":{"255":{"tf":1.0},"475":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":16,"docs":{"117":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"479":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"266":{"tf":2.8284271247461903},"268":{"tf":1.7320508075688772},"269":{"tf":2.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"73":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"313":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"90":{"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":{},"r":{"df":0,"docs":{},"i":{":":{":":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"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":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"=":{"0":{".":{"2":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"df":1,"docs":{"475":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"231":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"333":{"tf":1.0},"343":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":5,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}}}},"v":{"c":{"df":1,"docs":{"274":{"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":{"df":1,"docs":{"112":{"tf":2.23606797749979}}}}}}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"460":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"460":{"tf":1.0}}}}}}}},"df":125,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":2.449489742783178},"109":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.6457513110645907},"112":{"tf":2.6457513110645907},"113":{"tf":2.8284271247461903},"117":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"135":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.0},"17":{"tf":1.4142135623730951},"18":{"tf":2.0},"19":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":2.23606797749979},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"245":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"253":{"tf":1.7320508075688772},"254":{"tf":1.0},"255":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"283":{"tf":1.0},"289":{"tf":2.0},"3":{"tf":1.7320508075688772},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":2.23606797749979},"439":{"tf":1.0},"446":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"469":{"tf":2.23606797749979},"470":{"tf":3.3166247903554},"471":{"tf":3.7416573867739413},"472":{"tf":3.1622776601683795},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":3.7416573867739413},"476":{"tf":2.0},"477":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":2.449489742783178},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"486":{"tf":1.7320508075688772},"491":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"72":{"tf":3.1622776601683795},"73":{"tf":1.0},"75":{"tf":2.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"86":{"tf":3.0},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"89":{"tf":3.3166247903554},"90":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"243":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"243":{"tf":1.0},"249":{"tf":1.0},"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"243":{"tf":1.0},"261":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"77":{"tf":2.23606797749979},"79":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"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":{"88":{"tf":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":{"77":{"tf":1.0},"88":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"<":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":2.0}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"243":{"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":1,"docs":{"243":{"tf":1.0}}}}}}},"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":3,"docs":{"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"56":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"243":{"tf":1.0},"249":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"s":{":":{"/":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"7":{"2":{"3":{"0":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"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":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"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":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":2.449489742783178}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"491":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{"0":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"0":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"1":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"1":{":":{":":{"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":{"471":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"226":{"tf":1.0},"324":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":2.8284271247461903},"387":{"tf":2.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"386":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"#":{"1":{"0":{"9":{"7":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"304":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"304":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{":":{":":{"<":{"_":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"0":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"135":{"tf":1.7320508075688772},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"17":{"tf":1.0},"172":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"244":{"tf":1.0},"294":{"tf":2.23606797749979},"3":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":2.6457513110645907},"478":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"81":{"tf":1.0}},"—":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"289":{"tf":1.0},"499":{"tf":1.0}}}},"m":{"df":1,"docs":{"56":{"tf":1.0}}},"v":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"202":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"361":{"tf":1.0},"459":{"tf":1.0}}}},".":{"df":9,"docs":{"240":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"81":{"tf":1.0}}},"/":{"df":0,"docs":{},"o":{"df":2,"docs":{"137":{"tf":1.0},"39":{"tf":2.8284271247461903}}}},"1":{"6":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"28":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":2.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":26,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"143":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.6457513110645907},"433":{"tf":3.4641016151377544},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"462":{"tf":1.0},"84":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"a":{"df":4,"docs":{"1":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"453":{"tf":1.0}},"l":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"437":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":21,"docs":{"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"274":{"tf":2.0},"366":{"tf":1.0},"367":{"tf":1.0},"457":{"tf":1.0},"490":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.449489742783178},"67":{"tf":4.123105625617661},"68":{"tf":3.4641016151377544}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"164":{"tf":1.0},"269":{"tf":1.0},"318":{"tf":1.7320508075688772},"33":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.4142135623730951},"460":{"tf":1.0},"471":{"tf":1.0},"70":{"tf":1.4142135623730951},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"<":{"&":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"316":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"305":{"tf":1.4142135623730951},"314":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"460":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"287":{"tf":1.0},"331":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":2,"docs":{"26":{"tf":1.0},"486":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"x":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"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":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"319":{"tf":1.0}}}}},"f":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"309":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"244":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"312":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"457":{"tf":1.4142135623730951},"5":{"tf":1.0},"97":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"410":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"362":{"tf":1.0},"366":{"tf":1.0},"415":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"200":{"tf":1.0},"251":{"tf":1.0},"289":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"340":{"tf":1.0},"368":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"492":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"361":{"tf":1.0},"93":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"306":{"tf":2.23606797749979},"308":{"tf":1.0},"311":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"350":{"tf":1.0},"396":{"tf":1.0},"472":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"411":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"<":{"'":{"a":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":4,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"267":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.4142135623730951},"56":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}},"df":10,"docs":{"211":{"tf":1.0},"249":{"tf":1.0},"274":{"tf":2.23606797749979},"275":{"tf":1.0},"299":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.0}}}}}}}}}}}}}}}},"f":{"df":2,"docs":{"269":{"tf":1.0},"274":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"h":{"df":1,"docs":{"266":{"tf":1.0}}},"m":{"df":1,"docs":{"219":{"tf":2.0}}},"o":{"df":1,"docs":{"236":{"tf":1.0}},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"312":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"r":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"t":{"df":5,"docs":{"248":{"tf":1.4142135623730951},"350":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":69,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"116":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"229":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"289":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":1.0},"368":{"tf":2.449489742783178},"370":{"tf":1.0},"371":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"41":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.23606797749979},"490":{"tf":1.7320508075688772},"506":{"tf":1.0},"508":{"tf":2.23606797749979},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":222,"docs":{"0":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"177":{"tf":1.4142135623730951},"185":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"212":{"tf":3.1622776601683795},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":2.23606797749979},"312":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.23606797749979},"32":{"tf":1.0},"320":{"tf":2.449489742783178},"321":{"tf":1.0},"322":{"tf":2.0},"323":{"tf":2.0},"324":{"tf":2.449489742783178},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"338":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"362":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"366":{"tf":3.1622776601683795},"367":{"tf":2.6457513110645907},"368":{"tf":2.8284271247461903},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"402":{"tf":1.7320508075688772},"406":{"tf":1.0},"409":{"tf":2.0},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":2.449489742783178},"416":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":2.0},"438":{"tf":2.6457513110645907},"439":{"tf":2.449489742783178},"440":{"tf":2.0},"446":{"tf":2.6457513110645907},"449":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"46":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"478":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":2.23606797749979},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.7320508075688772},"494":{"tf":1.0},"496":{"tf":1.0},"502":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"172":{"tf":1.0},"199":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}}},"df":2,"docs":{"229":{"tf":1.0},"486":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"124":{"tf":1.0},"183":{"tf":1.0},"263":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.7320508075688772},"471":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"141":{"tf":1.4142135623730951},"150":{"tf":1.0},"222":{"tf":1.0},"324":{"tf":1.0},"368":{"tf":1.0},"38":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":50,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"239":{"tf":1.0},"263":{"tf":2.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},"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},"280":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"322":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"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},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"n":{"0":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"1":{"df":3,"docs":{"267":{"tf":3.0},"272":{"tf":2.6457513110645907},"274":{"tf":1.0}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"295":{"tf":1.0},"489":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":55,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"239":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"396":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.4142135623730951},"428":{"tf":1.0},"434":{"tf":1.0},"447":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"477":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.4142135623730951},"491":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":2,"docs":{"169":{"tf":1.0},"324":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"331":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"105":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"309":{"tf":2.0},"331":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"449":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"13":{"tf":1.0},"238":{"tf":1.0},"382":{"tf":1.0},"405":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"12":{"tf":1.0},"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"423":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"12":{"tf":1.0},"185":{"tf":1.7320508075688772},"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},"270":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":7,"docs":{"112":{"tf":1.0},"194":{"tf":1.0},"328":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"489":{"tf":2.6457513110645907},"78":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"275":{"tf":1.0},"33":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"12":{"tf":1.7320508075688772},"156":{"tf":1.0},"22":{"tf":1.0},"230":{"tf":1.0},"27":{"tf":1.0},"32":{"tf":1.0},"366":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"460":{"tf":1.0},"492":{"tf":1.0},"56":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"181":{"tf":1.0},"285":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"236":{"tf":1.0},"251":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":2.0},"304":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":2,"docs":{"310":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"266":{"tf":1.0},"296":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"!":{"(":{"?":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"229":{"tf":1.0},"508":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.7320508075688772}}}}}}}}}}}},"df":37,"docs":{"101":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"13":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.4142135623730951},"274":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":2.23606797749979},"301":{"tf":1.4142135623730951},"307":{"tf":1.0},"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"404":{"tf":2.0},"428":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":2.0},"70":{"tf":1.0},"78":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"81":{"tf":2.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"250":{"tf":1.0},"274":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"93":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":13,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"351":{"tf":1.0},"453":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"54":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"266":{"tf":1.0},"319":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"231":{"tf":1.7320508075688772},"232":{"tf":1.0},"239":{"tf":1.0},"266":{"tf":1.0},"359":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"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":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"110":{"tf":1.0},"131":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":2.23606797749979},"229":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":3.3166247903554},"290":{"tf":1.0},"325":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":2.0},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":1.0},"71":{"tf":2.23606797749979},"77":{"tf":2.0},"87":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"204":{"tf":1.0},"212":{"tf":1.0},"507":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{":":{":":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"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":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"112":{"tf":1.0},"408":{"tf":1.0}}},")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"508":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":69,"docs":{"112":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":2.6457513110645907},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":2.6457513110645907},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"20":{"tf":2.449489742783178},"212":{"tf":2.0},"230":{"tf":1.0},"234":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":2.8284271247461903},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"31":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"350":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"383":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":2.0},"40":{"tf":1.0},"408":{"tf":2.23606797749979},"422":{"tf":1.0},"426":{"tf":2.0},"428":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.0},"500":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"s":{"/":{"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":0,"docs":{},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"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":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":23,"docs":{"102":{"tf":1.0},"143":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.4142135623730951},"236":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"349":{"tf":1.0},"482":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"70":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"d":{"df":9,"docs":{"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"343":{"tf":1.0},"366":{"tf":1.0},"411":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.4142135623730951},"74":{"tf":1.0},"78":{"tf":1.7320508075688772}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"199":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"305":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"n":{"c":{"df":13,"docs":{"110":{"tf":1.0},"306":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"423":{"tf":1.0},"430":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"293":{"tf":1.0},"314":{"tf":1.0},"48":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":42,"docs":{"100":{"tf":1.0},"144":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"230":{"tf":1.4142135623730951},"254":{"tf":1.0},"303":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"433":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"477":{"tf":1.0},"481":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":6,"docs":{"249":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772}}}}}}}}}},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"1":{"6":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"131":{"tf":1.0},"229":{"tf":1.0},"28":{"tf":1.0},"322":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"387":{"tf":1.0}},"r":{"df":18,"docs":{"102":{"tf":1.0},"122":{"tf":1.4142135623730951},"137":{"tf":1.0},"162":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"258":{"tf":1.0},"306":{"tf":1.4142135623730951},"309":{"tf":1.0},"316":{"tf":1.0},"346":{"tf":1.0},"359":{"tf":1.4142135623730951},"446":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"496":{"tf":1.4142135623730951},"7":{"tf":1.0},"80":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"153":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"199":{"tf":1.0},"249":{"tf":1.0},"282":{"tf":1.0},"410":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"135":{"tf":1.0}}},"t":{"df":4,"docs":{"282":{"tf":1.7320508075688772},"414":{"tf":1.0},"454":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"420":{"tf":1.7320508075688772}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"130":{"tf":1.4142135623730951},"155":{"tf":1.0},"20":{"tf":1.0},"436":{"tf":1.0},"441":{"tf":1.4142135623730951},"451":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"486":{"tf":1.0},"500":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"461":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":2.0},"56":{"tf":1.0}}}}}}}}},"df":21,"docs":{"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":2.6457513110645907},"458":{"tf":1.4142135623730951},"459":{"tf":1.7320508075688772},"460":{"tf":3.1622776601683795},"461":{"tf":1.4142135623730951},"472":{"tf":2.0},"477":{"tf":1.0},"478":{"tf":1.0},"486":{"tf":1.4142135623730951},"490":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":4.242640687119285},"59":{"tf":1.0},"65":{"tf":1.0}},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"_":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"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":{},"i":{"a":{"df":0,"docs":{},"l":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"255":{"tf":1.0},"314":{"tf":1.0},"330":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"f":{"a":{"c":{"df":24,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"277":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"490":{"tf":1.4142135623730951},"71":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"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":{"33":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"309":{"tf":1.0},"33":{"tf":1.7320508075688772},"346":{"tf":1.0},"457":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":42,"docs":{"130":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"3":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"354":{"tf":1.0},"371":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.7320508075688772},"423":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"204":{"tf":1.0},"322":{"tf":1.0},"357":{"tf":1.0},"420":{"tf":1.0},"495":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"o":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"268":{"tf":1.0},"423":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"277":{"tf":1.0},"86":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"490":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"269":{"tf":1.0},"277":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":3,"docs":{"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"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":{"269":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"351":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":28,"docs":{"123":{"tf":1.0},"130":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"200":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"296":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.7320508075688772},"335":{"tf":1.0},"36":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":6,"docs":{"105":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"289":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"289":{"tf":2.449489742783178}}}}}}}}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"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":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"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":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"324":{"tf":1.0},"331":{"tf":1.0}}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"249":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"<":{"df":1,"docs":{"249":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}},"o":{"c":{"df":5,"docs":{"156":{"tf":1.0},"176":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"49":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":9,"docs":{"174":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"309":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"d":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"v":{"df":4,"docs":{"255":{"tf":1.0},"266":{"tf":1.7320508075688772},"276":{"tf":1.0},"413":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"153":{"tf":1.0},"209":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"293":{"tf":1.0},"454":{"tf":1.0},"491":{"tf":1.0}},"t":{"df":1,"docs":{"438":{"tf":1.0}}},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":2.0}},"e":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"(":{"\"":{"1":{"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{".":{"1":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"48":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"<":{"df":0,"docs":{},"p":{">":{">":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.0}}}},"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"48":{"tf":1.0}}}}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"228":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"40":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"109":{"tf":1.0},"118":{"tf":1.0},"153":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"238":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"350":{"tf":1.0},"401":{"tf":1.0},"467":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"56":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":29,"docs":{"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"289":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"340":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"427":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"499":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"t":{"'":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":51,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.0},"301":{"tf":1.0},"309":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"406":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"437":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"83":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"227":{"tf":1.0},"500":{"tf":1.0}}}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"105":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"162":{"tf":1.0},"199":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"82":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"268":{"tf":1.0},"3":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.0},"476":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":15,"docs":{"136":{"tf":1.0},"245":{"tf":1.0},"275":{"tf":1.0},"313":{"tf":1.4142135623730951},"350":{"tf":1.0},"376":{"tf":1.0},"387":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"420":{"tf":1.0},"428":{"tf":1.0},"463":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"j":{"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":2,"docs":{"340":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":4,"docs":{"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"325":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"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":{"408":{"tf":1.0}}}}}}}}},"df":7,"docs":{"252":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"408":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"298":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"245":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"396":{"tf":1.4142135623730951}}}}}}}}},"k":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}},"p":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":20,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"183":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"382":{"tf":2.0},"413":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.0},"61":{"tf":1.0},"9":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"(":{"\"":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"(":{")":{"?":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"112":{"tf":1.7320508075688772},"139":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"455":{"tf":1.0},"458":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"175":{"tf":1.0},"413":{"tf":2.0},"415":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"261":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":2.0},"493":{"tf":1.0},"508":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"120":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"330":{"tf":1.0},"404":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"56":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"496":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":16,"docs":{"120":{"tf":1.0},"122":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"422":{"tf":1.0},"500":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"409":{"tf":1.0}}},"df":7,"docs":{"131":{"tf":1.0},"231":{"tf":1.0},"340":{"tf":1.0},"355":{"tf":1.0},"4":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"305":{"tf":1.0},"350":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"240":{"tf":1.0},"496":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}},"i":{"d":{"df":2,"docs":{"322":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}},"m":{"b":{"d":{"a":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"105":{"tf":1.0},"378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"d":{"df":2,"docs":{"153":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":6,"docs":{"163":{"tf":1.0},"184":{"tf":1.4142135623730951},"258":{"tf":2.449489742783178},"280":{"tf":2.23606797749979},"316":{"tf":1.7320508075688772},"427":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"11":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"325":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"386":{"tf":1.0},"93":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"j":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"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":{},"g":{"df":9,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0},"29":{"tf":1.4142135623730951},"335":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"470":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"167":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"309":{"tf":1.0},"7":{"tf":1.0}}}}}},"s":{"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":14,"docs":{"13":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":2.0},"295":{"tf":1.0},"310":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":3.0},"471":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"356":{"tf":1.0},"377":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"139":{"tf":1.0},"250":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":26,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"226":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"330":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.0},"453":{"tf":1.0},"469":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"274":{"tf":1.0},"387":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"469":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"211":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"211":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"p":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":6,"docs":{"275":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"275":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"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":{"0":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":41,"docs":{"109":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":3.4641016151377544},"212":{"tf":2.0},"213":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":3.0},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"428":{"tf":2.0},"432":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.8284271247461903},"472":{"tf":1.0},"496":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"86":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"3":{"df":1,"docs":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"z":{"df":0,"docs":{},"i":{"df":8,"docs":{"112":{"tf":1.0},"155":{"tf":1.0},"313":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"368":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"362":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"370":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"368":{"tf":1.0}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"364":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":5,"docs":{"274":{"tf":2.6457513110645907},"275":{"tf":1.4142135623730951},"305":{"tf":1.0},"312":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772}},"e":{"a":{"d":{"df":10,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.4142135623730951},"303":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"428":{"tf":1.0}}},"k":{"df":11,"docs":{"156":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"313":{"tf":1.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":2,"docs":{"289":{"tf":1.0},"424":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"354":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":6,"docs":{"249":{"tf":1.0},"313":{"tf":1.4142135623730951},"322":{"tf":1.0},"381":{"tf":1.0},"455":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"153":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.4142135623730951},"394":{"tf":1.0},"453":{"tf":1.0}}}},"n":{"d":{"df":1,"docs":{"428":{"tf":1.0}}},"df":7,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"324":{"tf":1.0},"326":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"428":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":5,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"430":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"430":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{":":{"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":{"431":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"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":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"_":{"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":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":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"423":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":2.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"430":{"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":{"430":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"431":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"229":{"tf":4.123105625617661},"231":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":2.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"428":{"tf":2.23606797749979},"431":{"tf":2.0},"432":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":2.449489742783178},"504":{"tf":2.6457513110645907},"505":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"505":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"423":{"tf":2.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"423":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":1.0}}}}}}}},"s":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.7320508075688772},"338":{"tf":1.0},"387":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"432":{"tf":1.0},"56":{"tf":1.0}}}},"t":{"'":{"df":14,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"354":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.7320508075688772},"65":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":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":{"147":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"162":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"204":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"241":{"tf":1.0},"284":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"380":{"tf":1.0},"416":{"tf":1.0},"451":{"tf":1.4142135623730951},"458":{"tf":2.449489742783178},"460":{"tf":2.0},"470":{"tf":1.0},"481":{"tf":1.4142135623730951},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"496":{"tf":2.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"257":{"tf":1.0},"313":{"tf":1.0},"324":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"371":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":22,"docs":{"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}},"y":{"'":{"df":4,"docs":{"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"305":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":16,"docs":{"132":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":2.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"322":{"tf":1.0}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"2":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"12":{"tf":1.4142135623730951},"124":{"tf":1.0},"131":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.4142135623730951},"156":{"tf":1.0},"205":{"tf":2.0},"312":{"tf":1.0},"313":{"tf":1.0},"428":{"tf":1.0},"68":{"tf":1.0},"78":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}}},"df":9,"docs":{"117":{"tf":1.0},"156":{"tf":1.0},"216":{"tf":1.0},"229":{"tf":1.0},"261":{"tf":1.0},"290":{"tf":1.0},"313":{"tf":1.0},"345":{"tf":1.0},"464":{"tf":1.0}}},"k":{"df":5,"docs":{"169":{"tf":1.0},"221":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"33":{"tf":1.0},"453":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"228":{"tf":1.0}}},"t":{"<":{"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":45,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"141":{"tf":1.0},"183":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"317":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.0},"35":{"tf":2.0},"351":{"tf":1.0},"374":{"tf":1.4142135623730951},"41":{"tf":1.0},"410":{"tf":1.0},"426":{"tf":1.7320508075688772},"428":{"tf":2.0},"431":{"tf":1.4142135623730951},"451":{"tf":1.0},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"373":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":12,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"153":{"tf":1.0},"203":{"tf":1.4142135623730951},"270":{"tf":1.0},"336":{"tf":1.0},"372":{"tf":1.4142135623730951},"431":{"tf":1.0},"482":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"366":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}}}}},"df":20,"docs":{"101":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":2.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":2.0},"371":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"195":{"tf":1.0},"350":{"tf":1.0},"412":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"3":{"7":{"3":{"4":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"350":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"290":{"tf":1.7320508075688772},"336":{"tf":1.0},"460":{"tf":1.0},"472":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"183":{"tf":1.0},"289":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":42,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":2.8284271247461903},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.6457513110645907},"245":{"tf":1.7320508075688772},"246":{"tf":1.7320508075688772},"247":{"tf":2.0},"248":{"tf":3.0},"249":{"tf":2.23606797749979},"250":{"tf":2.0},"251":{"tf":2.6457513110645907},"252":{"tf":2.8284271247461903},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"299":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"331":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"53":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"95":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"440":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"_":{"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":{"75":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"274":{"tf":1.0},"75":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"(":{"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"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":{},"p":{"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":{"df":0,"docs":{},"}":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"251":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"c":{"df":34,"docs":{"101":{"tf":1.7320508075688772},"119":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"366":{"tf":1.0},"386":{"tf":1.4142135623730951},"401":{"tf":1.0},"402":{"tf":2.0},"437":{"tf":1.4142135623730951},"457":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":17,"docs":{"141":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"310":{"tf":1.0},"39":{"tf":1.4142135623730951},"416":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"164":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"238":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"337":{"tf":1.0},"371":{"tf":1.0},"414":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":51,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"274":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":2.0},"89":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":2,"docs":{"112":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":10,"docs":{"135":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"306":{"tf":1.0},"454":{"tf":2.23606797749979},"459":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0}}},"s":{"df":1,"docs":{"331":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"t":{"df":9,"docs":{"119":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"231":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"475":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"306":{"tf":1.0},"5":{"tf":1.0}}}},"w":{"df":17,"docs":{"156":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"470":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.4142135623730951},"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.0},"508":{"tf":1.0},"509":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"196":{"tf":1.0},"234":{"tf":1.0},"356":{"tf":1.0},"458":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"458":{"tf":1.0},"491":{"tf":1.0}}}}}}},"r":{"df":5,"docs":{"72":{"tf":1.4142135623730951},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"t":{";":{"&":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{";":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{";":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":3,"docs":{"72":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"505":{"tf":1.0}}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"306":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"307":{"tf":1.0},"350":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":8,"docs":{"205":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"78":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{".":{"<":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"105":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"171":{"tf":1.0},"175":{"tf":1.4142135623730951},"181":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"253":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"343":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"67":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":24,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":2.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"304":{"tf":1.0},"350":{"tf":1.4142135623730951},"428":{"tf":1.0},"450":{"tf":1.0},"472":{"tf":1.0},"508":{"tf":1.0},"71":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"373":{"tf":1.0},"416":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":15,"docs":{"103":{"tf":1.0},"12":{"tf":1.0},"164":{"tf":1.0},"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.7320508075688772},"220":{"tf":1.0},"372":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.4142135623730951},"48":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"180":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"180":{"tf":1.4142135623730951},"185":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0}}}}}}}},"df":13,"docs":{"101":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"180":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"285":{"tf":2.449489742783178},"354":{"tf":1.0},"438":{"tf":1.0},"94":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":1,"docs":{"459":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"112":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"(":{"&":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"175":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"349":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0}}}}}},"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":{"119":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"150":{"tf":1.0},"153":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"230":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.7320508075688772},"413":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.7320508075688772},"451":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"495":{"tf":1.0},"5":{"tf":1.7320508075688772},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"68":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"306":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"451":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":12,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"386":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"467":{"tf":1.0},"472":{"tf":1.4142135623730951},"5":{"tf":1.0},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"413":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"246":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"221":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0},"38":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"'":{"df":2,"docs":{"423":{"tf":1.0},"431":{"tf":1.0}}},"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"423":{"tf":1.0}}}},"df":1,"docs":{"325":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"268":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":1,"docs":{"325":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"416":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"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":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"227":{"tf":1.7320508075688772},"255":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"313":{"tf":1.0},"318":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"37":{"tf":2.23606797749979},"387":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"413":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"453":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":2.0},"465":{"tf":1.0},"466":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.0}},"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":{"204":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"k":{"df":12,"docs":{"111":{"tf":1.0},"155":{"tf":1.0},"221":{"tf":1.4142135623730951},"244":{"tf":1.0},"306":{"tf":1.0},"33":{"tf":1.7320508075688772},"372":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"491":{"tf":1.4142135623730951},"50":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.7320508075688772},"454":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"404":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"261":{"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":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":43,"docs":{"108":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.23606797749979},"200":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":2.6457513110645907},"229":{"tf":2.449489742783178},"230":{"tf":1.0},"260":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"276":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"294":{"tf":1.7320508075688772},"296":{"tf":1.0},"297":{"tf":2.0},"301":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"452":{"tf":1.0},"457":{"tf":1.0},"489":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}},"x":{":":{"1":{"2":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"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":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"131":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"324":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"124":{"tf":1.0},"290":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"12":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":2.0},"229":{"tf":1.0},"329":{"tf":1.0}}}}}}},"y":{"b":{"df":2,"docs":{"418":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}},"t":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"5":{":":{":":{"df":0,"docs":{},"m":{"d":{"5":{"df":1,"docs":{"226":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"501":{"tf":1.0}}}},"df":16,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":2.8284271247461903},"235":{"tf":1.0},"338":{"tf":1.0},"56":{"tf":2.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"105":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"351":{"tf":1.0},"371":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"74":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"340":{"tf":1.0}}}}}}}}},"t":{"df":3,"docs":{"301":{"tf":1.0},"419":{"tf":1.0},"453":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":17,"docs":{"171":{"tf":1.4142135623730951},"181":{"tf":1.0},"216":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"410":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"474":{"tf":1.0},"492":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":11,"docs":{"112":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"322":{"tf":1.0},"413":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"86":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"df":28,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.4142135623730951},"156":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":2.449489742783178},"33":{"tf":2.0},"342":{"tf":1.0},"356":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.7320508075688772},"426":{"tf":2.449489742783178},"427":{"tf":2.23606797749979},"428":{"tf":1.7320508075688772},"431":{"tf":3.7416573867739413},"448":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"49":{"tf":2.0}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"135":{"tf":1.7320508075688772},"227":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"135":{"tf":1.0},"252":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"374":{"tf":1.0},"394":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"455":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"155":{"tf":1.0},"175":{"tf":1.0},"368":{"tf":1.0}}},"g":{"df":10,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"227":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"108":{"tf":1.0},"131":{"tf":2.0},"205":{"tf":1.0},"221":{"tf":1.4142135623730951},"240":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.6457513110645907},"454":{"tf":5.291502622129181},"455":{"tf":2.0},"459":{"tf":2.449489742783178},"508":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"t":{"a":{"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":{"98":{"tf":1.0}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"192":{"tf":1.0},"261":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"383":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.7320508075688772},"504":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"261":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.0}}},"df":2,"docs":{"171":{"tf":1.0},"322":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":101,"docs":{"101":{"tf":1.0},"104":{"tf":1.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":2.449489742783178},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"261":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":2.6457513110645907},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"290":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.0},"398":{"tf":2.0},"413":{"tf":2.23606797749979},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"447":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"494":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"56":{"tf":2.0},"74":{"tf":1.0},"77":{"tf":2.23606797749979},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":2.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"137":{"tf":1.0},"39":{"tf":1.4142135623730951},"460":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"74":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"88":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":2.449489742783178},"124":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":2.449489742783178},"141":{"tf":3.1622776601683795},"142":{"tf":2.23606797749979},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"16":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.6457513110645907},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":3.4641016151377544},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":1.0},"251":{"tf":3.4641016151377544},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.6457513110645907},"256":{"tf":2.8284271247461903},"257":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"274":{"tf":4.242640687119285},"280":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"304":{"tf":1.0},"310":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"338":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.23606797749979},"75":{"tf":2.0},"76":{"tf":2.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772}}},"[":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"173":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":5,"docs":{"135":{"tf":1.0},"137":{"tf":1.0},"378":{"tf":1.0},"415":{"tf":1.0},"458":{"tf":1.0}}},"df":1,"docs":{"330":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"df":2,"docs":{"24":{"tf":1.0},"251":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"316":{"tf":1.0},"318":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":5,"docs":{"113":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"329":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"1":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"2":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"188":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"197":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"310":{"tf":1.0},"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"236":{"tf":1.0},"262":{"tf":1.0}}}}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"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":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"302":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"78":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"13":{"tf":1.0},"406":{"tf":2.0},"504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"105":{"tf":1.0},"228":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"475":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":18,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"508":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"422":{"tf":1.0},"431":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":2.0}}}}}}}}}}}}},"df":3,"docs":{"305":{"tf":2.0},"308":{"tf":1.0},"313":{"tf":2.449489742783178}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"150":{"tf":1.4142135623730951},"181":{"tf":1.0},"307":{"tf":1.0},"330":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"105":{"tf":1.4142135623730951},"121":{"tf":1.0},"167":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0}}}}},"x":{"df":3,"docs":{"112":{"tf":1.0},"27":{"tf":1.4142135623730951},"301":{"tf":1.0}}}},"m":{"df":1,"docs":{"189":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"162":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":10,"docs":{"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"324":{"tf":1.0},"39":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":2.6457513110645907}},"e":{"df":3,"docs":{"124":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":1.0}},"l":{".":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{">":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"464":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},":":{":":{"a":{":":{":":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"422":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}},"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":{"89":{"tf":1.0}}}}}}}},"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":{"86":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"b":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":95,"docs":{"108":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"120":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":2.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"193":{"tf":2.8284271247461903},"197":{"tf":1.0},"241":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.7320508075688772},"257":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":2.23606797749979},"27":{"tf":2.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"322":{"tf":2.449489742783178},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"333":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"340":{"tf":1.0},"352":{"tf":1.0},"355":{"tf":1.4142135623730951},"373":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.4142135623730951},"406":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.7320508075688772},"434":{"tf":2.23606797749979},"438":{"tf":2.449489742783178},"448":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"463":{"tf":1.0},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.7320508075688772},"76":{"tf":2.23606797749979},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":3.1622776601683795},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979}},"e":{"d":{"_":{"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":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"455":{"tf":1.0},"459":{"tf":1.7320508075688772}}}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":2.0}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"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":{"89":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"77":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"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":1,"docs":{"335":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"86":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"350":{"tf":1.0},"482":{"tf":1.0}},"i":{"df":28,"docs":{"112":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"231":{"tf":1.0},"241":{"tf":1.4142135623730951},"264":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"343":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"409":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":4.358898943540674},"53":{"tf":1.0},"54":{"tf":2.6457513110645907},"7":{"tf":1.0},"71":{"tf":1.0},"88":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"2":{"tf":1.0},"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":34,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.7320508075688772},"301":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"337":{"tf":1.0},"339":{"tf":1.7320508075688772},"340":{"tf":2.23606797749979},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.7320508075688772},"349":{"tf":2.449489742783178},"351":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"431":{"tf":1.7320508075688772},"461":{"tf":2.23606797749979},"508":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"]":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"471":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":65,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.7320508075688772},"237":{"tf":1.7320508075688772},"244":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"3":{"tf":1.0},"309":{"tf":1.4142135623730951},"328":{"tf":1.0},"331":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"432":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.7320508075688772},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"479":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"499":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"323":{"tf":1.0},"93":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"270":{"tf":1.0},"369":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"458":{"tf":1.0},"54":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"e":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"105":{"tf":1.0},"106":{"tf":2.23606797749979},"141":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"237":{"tf":1.0},"291":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"314":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"345":{"tf":3.1622776601683795},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"482":{"tf":1.0},"508":{"tf":1.0}}}}},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":18,"docs":{"13":{"tf":1.0},"161":{"tf":1.0},"237":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"290":{"tf":1.0},"412":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":48,"docs":{"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.7320508075688772},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"167":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"285":{"tf":1.7320508075688772},"302":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":1.0},"426":{"tf":1.0},"430":{"tf":1.4142135623730951},"460":{"tf":1.0},"494":{"tf":1.4142135623730951},"496":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"119":{"tf":1.0},"236":{"tf":1.4142135623730951},"239":{"tf":1.0},"250":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.4142135623730951},"43":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"475":{"tf":1.0}},"e":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"<":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"470":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":43,"docs":{"111":{"tf":1.0},"156":{"tf":1.7320508075688772},"171":{"tf":1.0},"199":{"tf":3.605551275463989},"200":{"tf":1.0},"21":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"226":{"tf":3.1622776601683795},"227":{"tf":2.23606797749979},"228":{"tf":2.23606797749979},"229":{"tf":3.7416573867739413},"231":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":2.0},"324":{"tf":1.4142135623730951},"371":{"tf":1.0},"39":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":3.3166247903554},"470":{"tf":1.0},"482":{"tf":1.7320508075688772},"487":{"tf":1.0},"490":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"90":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"222":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"_":{"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":{},"i":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"442":{"tf":1.0}}}}}}}}},"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":{},"i":{"d":{"df":1,"docs":{"442":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"422":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"100":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"81":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},")":{"df":0,"docs":{},"w":{"df":1,"docs":{"447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"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":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}},"df":60,"docs":{"116":{"tf":1.0},"121":{"tf":2.0},"141":{"tf":1.0},"174":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"231":{"tf":2.0},"238":{"tf":2.0},"249":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"274":{"tf":1.0},"278":{"tf":2.449489742783178},"289":{"tf":1.0},"297":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.23606797749979},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":2.23606797749979},"344":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.7320508075688772},"411":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.0},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":12,"docs":{"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"426":{"tf":1.0},"46":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"355":{"tf":1.0},"471":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":6,"docs":{"131":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"290":{"tf":1.0},"303":{"tf":1.0},"428":{"tf":1.7320508075688772},"482":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"481":{"tf":1.0},"490":{"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":23,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"13":{"tf":1.0},"159":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"21":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"290":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"343":{"tf":1.0},"386":{"tf":1.0},"433":{"tf":1.0},"458":{"tf":1.0},"489":{"tf":2.449489742783178},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"199":{"tf":1.0},"257":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"451":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"118":{"tf":1.0},"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"df":107,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":2.6457513110645907},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"119":{"tf":2.0},"131":{"tf":1.0},"135":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"189":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.7320508075688772},"357":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"482":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":3,"docs":{"207":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"411":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"386":{"tf":1.0}}},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"156":{"tf":1.0},"204":{"tf":1.0},"27":{"tf":1.0},"312":{"tf":1.0},"343":{"tf":1.0},"44":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.0},"289":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.7320508075688772},"322":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.0},"423":{"tf":1.0},"462":{"tf":1.0},"5":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"w":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"249":{"tf":1.0},"256":{"tf":1.0}}}}},"s":{"d":{"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":1,"docs":{"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"76":{"tf":1.0}}}}},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"228":{"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":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":{"44":{"tf":1.0}}}}}}}},"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"487":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":107,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"119":{"tf":1.7320508075688772},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.7320508075688772},"145":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.4142135623730951},"263":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"295":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"349":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"356":{"tf":1.0},"363":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"39":{"tf":1.0},"398":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":2.449489742783178},"402":{"tf":2.0},"414":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":2.6457513110645907},"458":{"tf":1.0},"46":{"tf":2.0},"461":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"470":{"tf":1.0},"48":{"tf":2.23606797749979},"484":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":2.8284271247461903},"49":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":2.23606797749979},"508":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"188":{"tf":1.4142135623730951},"196":{"tf":1.0},"285":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.7320508075688772}}}},"df":1,"docs":{"274":{"tf":1.0}},"i":{"df":2,"docs":{"165":{"tf":1.0},"183":{"tf":1.0}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"71":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"71":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"278":{"tf":1.4142135623730951},"414":{"tf":1.0},"420":{"tf":1.0},"491":{"tf":1.0},"89":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"106":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":18,"docs":{"149":{"tf":1.7320508075688772},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"175":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"290":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"346":{"tf":1.0},"413":{"tf":1.4142135623730951},"471":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"290":{"tf":1.0},"482":{"tf":1.0}},"r":{"df":1,"docs":{"482":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"324":{"tf":2.0},"331":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"194":{"tf":1.0},"196":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"366":{"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":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"104":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"289":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"462":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"211":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"289":{"tf":2.8284271247461903},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":2.6457513110645907},"301":{"tf":1.4142135623730951},"352":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"424":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":2.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"50":{"tf":2.6457513110645907}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"112":{"tf":1.0},"131":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"431":{"tf":1.0},"435":{"tf":1.0},"453":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"78":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":23,"docs":{"104":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":2.449489742783178},"200":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.4142135623730951},"289":{"tf":1.0},"311":{"tf":2.449489742783178},"319":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.4142135623730951},"431":{"tf":1.0},"437":{"tf":1.0},"457":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"62":{"tf":1.0}},"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":{"306":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"131":{"tf":1.0},"493":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"153":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.4142135623730951},"261":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"415":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"291":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"291":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"291":{"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":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":61,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"438":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"293":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"df":5,"docs":{"155":{"tf":1.0},"204":{"tf":1.0},"343":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"274":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":26,"docs":{"111":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"224":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"372":{"tf":1.0},"431":{"tf":1.4142135623730951},"457":{"tf":1.0},"49":{"tf":1.0},"99":{"tf":1.0}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"392":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"38":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":2,"docs":{"35":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"328":{"tf":1.0},"40":{"tf":1.0}}}},"m":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":36,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.0},"141":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"196":{"tf":1.0},"207":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":2.0},"303":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"375":{"tf":1.0},"386":{"tf":1.7320508075688772},"389":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"396":{"tf":1.0},"43":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"489":{"tf":1.0},"67":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":22,"docs":{"117":{"tf":1.0},"139":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"291":{"tf":1.0}}}}}}}}}}}}}}}},"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":7,"docs":{"137":{"tf":1.4142135623730951},"248":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"68":{"tf":1.0},"84":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"312":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"278":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"169":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.7320508075688772},"430":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0}}}}}}},"c":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"33":{"tf":1.0},"336":{"tf":1.0},"362":{"tf":1.0},"411":{"tf":1.4142135623730951},"415":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":2.0},"453":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"212":{"tf":1.7320508075688772},"236":{"tf":1.0},"446":{"tf":1.0},"56":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":7,"docs":{"2":{"tf":1.0},"203":{"tf":1.0},"353":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"k":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"&":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":2.0}}}},"df":0,"docs":{}}},"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"423":{"tf":1.0}}}},"_":{"df":2,"docs":{"444":{"tf":1.0},"445":{"tf":1.0}}},"a":{"df":1,"docs":{"422":{"tf":1.0}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"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":{".":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"8":{"8":{"8":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"260":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"268":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"452":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"156":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"324":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"236":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"260":{"tf":1.0}}}},".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":2.6457513110645907}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"408":{"tf":1.0},"427":{"tf":1.0},"440":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.0},"80":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":8,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.4142135623730951},"306":{"tf":1.0},"359":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"144":{"tf":1.0},"167":{"tf":1.4142135623730951},"196":{"tf":1.0},"239":{"tf":1.0},"285":{"tf":1.0},"322":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"110":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"313":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"c":{"df":28,"docs":{"117":{"tf":1.0},"135":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"381":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"464":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"508":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"_":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"327":{"tf":1.0}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":98,"docs":{"110":{"tf":1.0},"116":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"241":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":3.872983346207417},"335":{"tf":2.23606797749979},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.449489742783178},"350":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0},"372":{"tf":1.4142135623730951},"382":{"tf":1.0},"391":{"tf":1.0},"398":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"420":{"tf":1.0},"422":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"458":{"tf":1.0},"471":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":2.23606797749979},"5":{"tf":1.0},"503":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"210":{"tf":1.0},"482":{"tf":1.0}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"414":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"354":{"tf":1.0},"355":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"p":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"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":{"312":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"0":{"df":3,"docs":{"267":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"274":{"tf":1.0}}},"1":{"df":8,"docs":{"267":{"tf":3.3166247903554},"272":{"tf":3.0},"274":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":2.0}}},"2":{"df":5,"docs":{"274":{"tf":2.449489742783178},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"3":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"4":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.7416573867739413},"313":{"tf":3.3166247903554}}},"5":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},"6":{"df":4,"docs":{"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"310":{"tf":3.4641016151377544},"313":{"tf":3.4641016151377544}}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":7,"docs":{"290":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"319":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}}}},"df":10,"docs":{"112":{"tf":1.0},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"234":{"tf":1.0},"312":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"84":{"tf":2.0},"86":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"240":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"469":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"274":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"175":{"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":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"_":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"279":{"tf":1.0}}}},"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":{"(":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"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":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"274":{"tf":3.3166247903554}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"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":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"f":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.3166247903554}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.0},"279":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":3.0},"279":{"tf":1.4142135623730951}}}}}}}}},"1":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{">":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":2.0},"272":{"tf":2.0},"274":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"272":{"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":2,"docs":{"265":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"279":{"tf":2.0}},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"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":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"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":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}}},"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":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"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":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":3,"docs":{"142":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.0},"439":{"tf":1.7320508075688772},"446":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"305":{"tf":1.0},"312":{"tf":1.0},"86":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.0},"56":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"312":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"0":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"0":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.7320508075688772}}},"1":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"_":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"2":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"307":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"y":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}},"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":5,"docs":{"240":{"tf":1.0},"251":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"155":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":0,"docs":{},"i":{"df":6,"docs":{"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":7,"docs":{"267":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":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":{"265":{"tf":1.0},"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"0":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":1.7320508075688772}}},"1":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}},"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}}}}}},"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":{"356":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"84":{"tf":2.0},"90":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"84":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"356":{"tf":1.7320508075688772},"77":{"tf":1.0},"84":{"tf":3.1622776601683795}},"e":{">":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"}":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"333":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":6,"docs":{"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"266":{"tf":2.23606797749979},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"333":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":145,"docs":{"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":1.4142135623730951},"112":{"tf":3.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"157":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.7320508075688772},"18":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":2.0},"212":{"tf":1.4142135623730951},"22":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"232":{"tf":1.4142135623730951},"234":{"tf":2.449489742783178},"235":{"tf":1.4142135623730951},"236":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"24":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"261":{"tf":2.23606797749979},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"267":{"tf":1.0},"274":{"tf":3.605551275463989},"279":{"tf":2.0},"3":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":3.7416573867739413},"314":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":2.8284271247461903},"334":{"tf":1.0},"336":{"tf":3.3166247903554},"340":{"tf":1.4142135623730951},"344":{"tf":2.0},"345":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"414":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":2.449489742783178},"432":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":2.0},"435":{"tf":1.0},"437":{"tf":2.0},"439":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.449489742783178},"460":{"tf":1.4142135623730951},"470":{"tf":2.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"504":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.23606797749979},"76":{"tf":2.0},"77":{"tf":2.6457513110645907},"78":{"tf":2.0},"79":{"tf":1.0},"80":{"tf":2.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.0},"84":{"tf":3.7416573867739413},"87":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.449489742783178},"95":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"489":{"tf":1.0},"493":{"tf":1.0},"7":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":4,"docs":{"244":{"tf":1.0},"274":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}}}},"s":{"df":1,"docs":{"428":{"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":1,"docs":{"84":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"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":1,"docs":{"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":9,"docs":{"100":{"tf":1.0},"17":{"tf":1.4142135623730951},"199":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"112":{"tf":1.0},"336":{"tf":1.0},"351":{"tf":1.0},"37":{"tf":1.0},"471":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"(":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"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":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"437":{"tf":1.0}}}}}},"(":{"&":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"199":{"tf":1.0},"220":{"tf":1.4142135623730951}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{"431":{"tf":1.4142135623730951}}}}}}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"431":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"431":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"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":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"431":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"489":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"274":{"tf":1.0}}},"1":{"df":4,"docs":{"267":{"tf":1.0},"274":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0}}},"2":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"3":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"4":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"5":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"6":{"df":2,"docs":{"307":{"tf":1.0},"308":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"489":{"tf":1.0},"493":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":2.449489742783178},"89":{"tf":2.449489742783178}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"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":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}}}}}},"t":{"df":4,"docs":{"38":{"tf":1.0},"401":{"tf":1.4142135623730951},"431":{"tf":1.0},"93":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"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":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"x":{"df":0,"docs":{},"r":{"df":1,"docs":{"455":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"u":{"3":{"2":{"df":2,"docs":{"200":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"(":{"0":{"df":1,"docs":{"458":{"tf":1.0}}},"1":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"b":{"(":{"2":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"c":{"(":{"3":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"227":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":42,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":2.23606797749979},"232":{"tf":1.0},"24":{"tf":1.0},"252":{"tf":1.0},"272":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"367":{"tf":1.7320508075688772},"38":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":2.449489742783178},"455":{"tf":1.0},"462":{"tf":1.0},"48":{"tf":1.0},"486":{"tf":1.0},"500":{"tf":1.4142135623730951},"506":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"68":{"tf":1.0},"82":{"tf":1.0}}}}}},"x":{"df":4,"docs":{"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951}}},"{":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"2":{"df":1,"docs":{"418":{"tf":1.0}}},"3":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"457":{"tf":1.0},"54":{"tf":1.0}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":31,"docs":{"310":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"451":{"tf":2.6457513110645907},"452":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":2.6457513110645907},"458":{"tf":1.0},"459":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"472":{"tf":1.0},"482":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":2.23606797749979},"53":{"tf":3.4641016151377544},"54":{"tf":2.23606797749979},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":2.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"95":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"494":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":45,"docs":{"108":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"21":{"tf":1.0},"212":{"tf":1.4142135623730951},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.7320508075688772},"261":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"356":{"tf":1.7320508075688772},"38":{"tf":1.0},"415":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"453":{"tf":1.0},"465":{"tf":1.0},"475":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"50":{"tf":1.0},"507":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":16,"docs":{"112":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":2.0},"334":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.7320508075688772},"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":2.0},"345":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"155":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.7320508075688772},"274":{"tf":1.0},"341":{"tf":1.4142135623730951},"371":{"tf":1.0},"438":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"220":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"475":{"tf":1.0}},"i":{"df":3,"docs":{"470":{"tf":2.0},"481":{"tf":1.0},"482":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"300":{"tf":1.0},"362":{"tf":1.0},"413":{"tf":1.0},"508":{"tf":1.0},"96":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":14,"docs":{"169":{"tf":1.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.0},"487":{"tf":1.0},"54":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"38":{"tf":1.0}}}},"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":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"143":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.7320508075688772},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"336":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":2.0},"372":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"408":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"437":{"tf":1.0},"459":{"tf":1.7320508075688772},"461":{"tf":1.0},"482":{"tf":1.0},"499":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"227":{"tf":2.0},"229":{"tf":1.0},"73":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"212":{"tf":1.0},"418":{"tf":1.0},"507":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"200":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}},"n":{"df":6,"docs":{"171":{"tf":1.0},"218":{"tf":1.4142135623730951},"244":{"tf":1.0},"281":{"tf":1.0},"294":{"tf":1.0},"438":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"i":{"d":{"df":2,"docs":{"443":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"0":{"df":1,"docs":{"265":{"tf":1.0}}},"1":{"df":1,"docs":{"265":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":{"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"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":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"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":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":63,"docs":{"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"155":{"tf":2.0},"171":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":2.0},"240":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"265":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"297":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"312":{"tf":1.0},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"340":{"tf":1.4142135623730951},"35":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0},"38":{"tf":1.0},"383":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"397":{"tf":1.7320508075688772},"408":{"tf":1.0},"438":{"tf":3.1622776601683795},"443":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":2.0},"451":{"tf":1.4142135623730951},"454":{"tf":2.23606797749979},"455":{"tf":1.0},"459":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}}}},"v":{"1":{"df":1,"docs":{"402":{"tf":1.0}}},"2":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"11":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.4142135623730951},"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"148":{"tf":1.0},"171":{"tf":1.0},"193":{"tf":1.0},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"335":{"tf":1.0},"410":{"tf":1.0},"416":{"tf":1.0}}}},"df":36,"docs":{"12":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"2":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"227":{"tf":1.0},"250":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"302":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.4142135623730951},"396":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0},"98":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"432":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"135":{"tf":1.0},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"274":{"tf":1.0},"281":{"tf":1.0},"330":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"356":{"tf":1.4142135623730951},"487":{"tf":1.0},"78":{"tf":1.0}}}}},"df":19,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.4142135623730951},"156":{"tf":1.0},"206":{"tf":1.0},"350":{"tf":2.8284271247461903},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"487":{"tf":1.0},"491":{"tf":1.0},"59":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":9,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"4":{"tf":1.0},"64":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"112":{"tf":1.0},"31":{"tf":1.7320508075688772},"466":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"430":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"310":{"tf":1.0}}}}}}}}}}},"p":{">":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"39":{"tf":2.449489742783178}}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"181":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.0},"426":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"155":{"tf":1.0},"156":{"tf":2.23606797749979},"162":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"156":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":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":{"155":{"tf":4.0},"156":{"tf":3.605551275463989},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"333":{"tf":1.7320508075688772},"336":{"tf":1.4142135623730951},"344":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"270":{"tf":1.0},"273":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"!":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"116":{"tf":1.0},"131":{"tf":2.0},"221":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"350":{"tf":1.0},"482":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"12":{"tf":1.0},"460":{"tf":1.0}}}}}},"m":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"?":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"119":{"tf":1.0},"122":{"tf":1.0},"349":{"tf":2.6457513110645907},"350":{"tf":2.0},"351":{"tf":1.7320508075688772},"352":{"tf":2.449489742783178},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":2.8284271247461903},"356":{"tf":3.0},"359":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":31,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.4142135623730951},"212":{"tf":1.0},"243":{"tf":1.0},"256":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.4142135623730951},"308":{"tf":2.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.449489742783178},"311":{"tf":2.0},"313":{"tf":3.605551275463989},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":1.0},"352":{"tf":2.449489742783178},"356":{"tf":1.7320508075688772},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"408":{"tf":1.0},"416":{"tf":1.0},"475":{"tf":1.0},"65":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"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":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"275":{"tf":1.7320508075688772},"350":{"tf":1.4142135623730951},"85":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}},"s":{"[":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"}":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}},"t":{"df":5,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0},"274":{"tf":1.0},"312":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"401":{"tf":1.0}}}}}},"s":{"df":15,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.0},"290":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"325":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.7320508075688772},"471":{"tf":1.0},"489":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"<":{"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":{"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":1,"docs":{"336":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"204":{"tf":1.0},"345":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":32,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"188":{"tf":1.4142135623730951},"204":{"tf":1.0},"221":{"tf":1.0},"229":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"357":{"tf":1.7320508075688772},"406":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"90":{"tf":2.449489742783178}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":1,"docs":{"310":{"tf":1.0}}}}}}}},"df":5,"docs":{"181":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"38":{"tf":1.0},"438":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":9,"docs":{"112":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"229":{"tf":1.0},"494":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"264":{"tf":1.0},"303":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":2,"docs":{"353":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"353":{"tf":1.0}}}}}}}}}}}}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"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":{},"t":{">":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":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":{"82":{"tf":1.0}}}},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"329":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":33,"docs":{"111":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"194":{"tf":2.0},"199":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"263":{"tf":1.0},"269":{"tf":1.7320508075688772},"306":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"413":{"tf":1.0},"451":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{".":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"153":{"tf":2.23606797749979},"167":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"471":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"153":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"398":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":16,"docs":{"118":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"2":{"tf":1.0},"250":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"\"":{"[":{"a":{"df":3,"docs":{"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":27,"docs":{"117":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.7320508075688772},"331":{"tf":1.0},"335":{"tf":1.7320508075688772},"351":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.4142135623730951}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"<":{"'":{"b":{">":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"230":{"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":{"229":{"tf":1.0}}}}}}}}},"df":6,"docs":{"200":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"243":{"tf":1.0},"261":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"462":{"tf":1.0},"87":{"tf":1.4142135623730951}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"419":{"tf":1.0},"428":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"330":{"tf":1.0}}}}}},"d":{"df":6,"docs":{"11":{"tf":1.0},"227":{"tf":1.0},"322":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"414":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"226":{"tf":1.0},"396":{"tf":1.0},"460":{"tf":1.0},"94":{"tf":1.0}}}}},"r":{"df":22,"docs":{"110":{"tf":1.0},"112":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"302":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":3.7416573867739413},"335":{"tf":2.0},"336":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.23606797749979},"422":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":34,"docs":{"135":{"tf":2.23606797749979},"139":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"153":{"tf":1.0},"166":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"303":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":2.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"351":{"tf":1.0},"361":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.4142135623730951},"471":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"7":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}},"t":{"df":2,"docs":{"245":{"tf":1.0},"252":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"428":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"119":{"tf":1.0},"221":{"tf":1.0},"296":{"tf":1.0},"322":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"159":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"241":{"tf":1.0},"264":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"b":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"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":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":11,"docs":{"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"428":{"tf":1.0},"43":{"tf":1.0},"450":{"tf":1.0},"54":{"tf":2.8284271247461903}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"322":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"337":{"tf":1.0}}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":8,"docs":{"12":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.0},"354":{"tf":1.0},"68":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"<":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"471":{"tf":1.0}},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"486":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"g":{"_":{"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":{"df":3,"docs":{"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"l":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":19,"docs":{"183":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"221":{"tf":1.0},"245":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"n":{"df":4,"docs":{"0":{"tf":1.0},"371":{"tf":1.0},"469":{"tf":1.0},"52":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}}},"y":{"df":5,"docs":{"108":{"tf":1.0},"269":{"tf":1.0},"315":{"tf":1.4142135623730951},"496":{"tf":1.0},"66":{"tf":1.0}}}},"df":4,"docs":{"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"88":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"309":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":3,"docs":{"137":{"tf":1.0},"25":{"tf":1.0},"93":{"tf":1.0}},"g":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"316":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"312":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":{"79":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}},"s":{"df":2,"docs":{"77":{"tf":1.4142135623730951},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"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":{"316":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":33,"docs":{"136":{"tf":1.0},"150":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"311":{"tf":3.605551275463989},"312":{"tf":2.6457513110645907},"313":{"tf":4.358898943540674},"314":{"tf":1.0},"316":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"453":{"tf":3.3166247903554},"458":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"461":{"tf":1.0},"486":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":2.449489742783178},"65":{"tf":2.449489742783178},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.8284271247461903},"86":{"tf":1.0},"88":{"tf":3.4641016151377544},"89":{"tf":2.449489742783178},"93":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"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":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"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":2,"docs":{"314":{"tf":1.0},"316":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"314":{"tf":1.0},"316":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":31,"docs":{"143":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"197":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"33":{"tf":1.0},"356":{"tf":1.0},"372":{"tf":1.4142135623730951},"373":{"tf":1.0},"419":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"261":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"307":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"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":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":8,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"25":{"tf":1.0},"261":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0},"315":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"306":{"tf":1.0},"311":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554}},"e":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"304":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"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":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"312":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"89":{"tf":1.0}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":2,"docs":{"309":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":2.8284271247461903},"311":{"tf":2.23606797749979},"313":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"308":{"tf":1.4142135623730951},"309":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"307":{"tf":1.0},"309":{"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":{},"p":{"1":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"310":{"tf":2.23606797749979}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"310":{"tf":2.6457513110645907},"313":{"tf":2.23606797749979}}},"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":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{"<":{"_":{"df":1,"docs":{"309":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"<":{"b":{"df":1,"docs":{"313":{"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":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"73":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"75":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"74":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}}},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"70":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":10,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"235":{"tf":1.0},"418":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"l":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"506":{"tf":2.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"199":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":1,"docs":{"506":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"199":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"506":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"\"":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":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":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"p":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0}}}}}},"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":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"155":{"tf":1.0},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":2,"docs":{"122":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"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":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"135":{"tf":1.0},"471":{"tf":1.0}}},"r":{"df":2,"docs":{"303":{"tf":1.0},"412":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}},"df":4,"docs":{"112":{"tf":1.0},"119":{"tf":1.0},"438":{"tf":1.0},"446":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"141":{"tf":1.0},"33":{"tf":1.0},"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"251":{"tf":2.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"368":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.7320508075688772}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":56,"docs":{"105":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"167":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.0},"457":{"tf":1.4142135623730951},"466":{"tf":1.0},"475":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"508":{"tf":1.4142135623730951},"68":{"tf":1.0},"84":{"tf":1.0},"9":{"tf":1.0}},"e":{".":{"_":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":7,"docs":{"117":{"tf":1.0},"224":{"tf":1.0},"261":{"tf":1.0},"43":{"tf":1.0},"472":{"tf":1.0},"499":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":23,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"289":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"43":{"tf":1.0},"471":{"tf":1.0},"500":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"204":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"297":{"tf":1.0},"313":{"tf":1.0},"430":{"tf":1.4142135623730951},"470":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"170":{"tf":1.0},"183":{"tf":1.0},"221":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"420":{"tf":1.0},"478":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"228":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.7320508075688772},"232":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"df":16,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"329":{"tf":2.0},"340":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"374":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":2.23606797749979},"458":{"tf":2.23606797749979},"460":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"482":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"22":{"tf":1.0},"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":20,"docs":{"101":{"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},"180":{"tf":2.0},"183":{"tf":1.0},"188":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.0},"452":{"tf":1.0},"504":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"111":{"tf":1.0},"183":{"tf":1.0},"22":{"tf":1.0},"250":{"tf":1.0},"29":{"tf":1.0},"319":{"tf":1.0},"342":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}},"df":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":{"229":{"tf":1.0},"261":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.4142135623730951},"368":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"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":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":1,"docs":{"229":{"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":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"335":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"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":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"184":{"tf":1.0},"310":{"tf":1.4142135623730951},"397":{"tf":1.0},"409":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":21,"docs":{"240":{"tf":1.7320508075688772},"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},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"164":{"tf":1.0},"222":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"353":{"tf":1.0},"418":{"tf":1.4142135623730951},"424":{"tf":1.0},"482":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"226":{"tf":1.0},"251":{"tf":1.0},"270":{"tf":1.0},"313":{"tf":1.0},"350":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"114":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":3.7416573867739413},"118":{"tf":2.23606797749979},"119":{"tf":2.8284271247461903},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.23606797749979},"204":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"95":{"tf":1.0}},"e":{"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":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"121":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"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":5,"docs":{"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"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":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"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":{"(":{"8":{"6":{"4":{"0":{"0":{"df":2,"docs":{"117":{"tf":1.0},"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"116":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":5,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"342":{"tf":1.4142135623730951},"344":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"141":{"tf":1.0},"156":{"tf":1.0},"204":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"46":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.0},"81":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"180":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":19,"docs":{"144":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"171":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"205":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"311":{"tf":1.0},"333":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"478":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0}},"s":{"df":19,"docs":{"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"285":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"406":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"490":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"263":{"tf":1.0},"269":{"tf":1.0},"316":{"tf":1.0},"369":{"tf":1.0},"72":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"280":{"tf":1.0},"331":{"tf":1.0},"339":{"tf":1.4142135623730951},"344":{"tf":1.0},"414":{"tf":2.23606797749979},"470":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"314":{"tf":1.0},"77":{"tf":2.0}}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"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":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"195":{"tf":1.0},"199":{"tf":1.0},"226":{"tf":1.4142135623730951},"289":{"tf":1.0},"312":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"324":{"tf":1.0},"508":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":1,"docs":{"314":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"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":4,"docs":{"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"452":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{"408":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"312":{"tf":2.23606797749979},"314":{"tf":1.0},"77":{"tf":3.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"<":{"df":1,"docs":{"77":{"tf":1.7320508075688772}},"t":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"164":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"230":{"tf":1.0},"245":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"302":{"tf":1.0},"347":{"tf":1.0},"420":{"tf":1.0},"79":{"tf":1.0},"86":{"tf":1.0}},"i":{"df":1,"docs":{"430":{"tf":1.0}},"t":{"df":1,"docs":{"112":{"tf":1.7320508075688772}},"i":{"df":14,"docs":{"108":{"tf":1.0},"281":{"tf":1.0},"356":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"489":{"tf":3.605551275463989},"490":{"tf":1.4142135623730951},"491":{"tf":2.449489742783178},"493":{"tf":2.0},"494":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0}}},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"489":{"tf":1.4142135623730951},"493":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"17":{"tf":1.0},"274":{"tf":1.0},"290":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"322":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"349":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.0},"475":{"tf":1.0},"489":{"tf":1.0},"56":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"336":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"17":{"tf":1.0},"24":{"tf":1.0},"345":{"tf":1.0},"37":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"471":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"306":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"33":{"tf":1.0}}}},"df":34,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"194":{"tf":1.0},"240":{"tf":1.4142135623730951},"251":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"277":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.0},"419":{"tf":1.7320508075688772},"423":{"tf":1.7320508075688772},"424":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.23606797749979},"432":{"tf":2.0},"448":{"tf":1.0},"5":{"tf":1.4142135623730951},"504":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}}}},"c":{"df":1,"docs":{"13":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":42,"docs":{"112":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"470":{"tf":1.0},"487":{"tf":1.0},"508":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.7320508075688772},"66":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"u":{"c":{"df":23,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"175":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"204":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"27":{"tf":1.0},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"351":{"tf":1.0},"406":{"tf":1.0},"423":{"tf":1.0},"465":{"tf":1.0},"56":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}},"t":{"df":5,"docs":{"137":{"tf":1.0},"249":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"316":{"tf":1.0},"386":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"169":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"362":{"tf":1.0},"405":{"tf":2.0}},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"290":{"tf":2.449489742783178},"300":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"126":{"tf":1.4142135623730951},"222":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"290":{"tf":1.0},"293":{"tf":1.0}}}},"df":1,"docs":{"391":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"198":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"469":{"tf":1.0},"78":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"312":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"153":{"tf":1.0},"92":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"462":{"tf":1.0},"464":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"131":{"tf":1.0},"153":{"tf":1.0},"167":{"tf":1.7320508075688772},"177":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"7":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"237":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"199":{"tf":1.0},"289":{"tf":1.0},"324":{"tf":1.0}}}},"df":1,"docs":{"21":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"295":{"tf":1.0},"356":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":24,"docs":{"104":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"119":{"tf":1.7320508075688772},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"212":{"tf":1.0},"230":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"354":{"tf":1.4142135623730951},"357":{"tf":2.0},"359":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"455":{"tf":1.0},"475":{"tf":1.0},"480":{"tf":1.0},"500":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"s":{"df":69,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.4142135623730951},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"240":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"251":{"tf":1.0},"254":{"tf":2.449489742783178},"259":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"279":{"tf":2.0},"287":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"302":{"tf":1.0},"304":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.7320508075688772},"340":{"tf":1.0},"346":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.7320508075688772},"410":{"tf":1.4142135623730951},"414":{"tf":2.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.0},"424":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"433":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"449":{"tf":1.0},"462":{"tf":1.7320508075688772},"469":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.7320508075688772},"485":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"21":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"165":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"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":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"/":{"2":{".":{"0":{"/":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"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":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"108":{"tf":1.0},"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"23":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"276":{"tf":2.6457513110645907},"277":{"tf":3.1622776601683795},"278":{"tf":1.7320508075688772},"280":{"tf":1.0},"287":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":2.0},"324":{"tf":1.0},"458":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"63":{"tf":1.0}}},"i":{"d":{"df":124,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":2.23606797749979},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"16":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"186":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"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},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.0},"330":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"356":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":2.23606797749979},"366":{"tf":2.0},"367":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.0},"373":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":4.58257569495584},"414":{"tf":2.23606797749979},"415":{"tf":3.4641016151377544},"416":{"tf":3.0},"417":{"tf":1.0},"418":{"tf":3.4641016151377544},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"482":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{">":{"(":{"&":{"'":{"a":{"df":3,"docs":{"100":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}},"<":{"'":{"a":{"df":1,"docs":{"416":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"411":{"tf":2.0},"413":{"tf":2.449489742783178},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"416":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"tf":3.4641016151377544}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":16,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.7320508075688772},"366":{"tf":2.6457513110645907},"367":{"tf":2.0},"368":{"tf":3.0},"370":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":2.0},"415":{"tf":1.0},"416":{"tf":1.7320508075688772},"417":{"tf":1.0},"418":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"414":{"tf":1.0},"415":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"1":{":":{":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"418":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"1":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"106":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"312":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"171":{"tf":1.0},"175":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"174":{"tf":1.0},"261":{"tf":1.0},"30":{"tf":1.4142135623730951},"352":{"tf":3.0},"363":{"tf":1.0},"368":{"tf":1.0},"423":{"tf":2.23606797749979},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":105,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"105":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"116":{"tf":3.0},"156":{"tf":1.7320508075688772},"157":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":2.0},"220":{"tf":1.4142135623730951},"226":{"tf":3.7416573867739413},"227":{"tf":2.0},"228":{"tf":2.0},"229":{"tf":3.4641016151377544},"230":{"tf":1.0},"231":{"tf":2.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"261":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"272":{"tf":2.0},"274":{"tf":3.4641016151377544},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"319":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":2.449489742783178},"353":{"tf":1.0},"355":{"tf":1.0},"363":{"tf":2.449489742783178},"367":{"tf":1.0},"368":{"tf":3.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"39":{"tf":3.3166247903554},"390":{"tf":1.0},"395":{"tf":1.7320508075688772},"398":{"tf":1.0},"41":{"tf":3.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.0},"418":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":2.23606797749979},"427":{"tf":1.4142135623730951},"428":{"tf":1.0},"430":{"tf":2.6457513110645907},"431":{"tf":5.477225575051661},"437":{"tf":1.0},"455":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.8284271247461903},"462":{"tf":1.0},"475":{"tf":1.0},"482":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"490":{"tf":1.7320508075688772},"493":{"tf":1.4142135623730951},"50":{"tf":1.0},"56":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"90":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"331":{"tf":1.0},"424":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"285":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"331":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.4142135623730951},"412":{"tf":1.0},"416":{"tf":1.0},"469":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"489":{"tf":1.0},"499":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"344":{"tf":1.0},"353":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":24,"docs":{"145":{"tf":1.7320508075688772},"146":{"tf":2.449489742783178},"147":{"tf":2.449489742783178},"148":{"tf":2.449489742783178},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"152":{"tf":2.6457513110645907},"153":{"tf":1.0},"154":{"tf":2.6457513110645907},"177":{"tf":2.449489742783178},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"282":{"tf":2.0},"460":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"221":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"351":{"tf":1.0},"437":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"330":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":5,"docs":{"222":{"tf":1.0},"290":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"462":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"435":{"tf":1.7320508075688772},"437":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":17,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"343":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"56":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"88":{"tf":1.0}}}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"12":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":10,"docs":{"113":{"tf":1.0},"224":{"tf":1.0},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"278":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"122":{"tf":1.0},"46":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"395":{"tf":1.0},"56":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"283":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}}}}},"q":{"df":1,"docs":{"495":{"tf":1.0}},"l":{"d":{"b":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"374":{"tf":1.0},"420":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":1.0},"147":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"243":{"tf":1.0},"32":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"330":{"tf":1.4142135623730951},"414":{"tf":1.0},"469":{"tf":1.0},"495":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"265":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"307":{"tf":1.0},"416":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"309":{"tf":1.4142135623730951},"475":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"124":{"tf":1.0}}},"df":1,"docs":{"13":{"tf":1.0}}}}}},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"`":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"87":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"199":{"tf":1.0}}}},"m":{"df":1,"docs":{"395":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"319":{"tf":1.4142135623730951}}}}},"df":2,"docs":{"405":{"tf":1.0},"416":{"tf":1.0}},"g":{"df":5,"docs":{"281":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":2.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"342":{"tf":1.0},"44":{"tf":1.0},"464":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"461":{"tf":1.0}}}}}}}},"df":2,"docs":{"124":{"tf":1.4142135623730951},"135":{"tf":1.0}}}},"w":{"df":4,"docs":{"311":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"508":{"tf":1.0}}}},"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":21,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":3.0},"112":{"tf":2.449489742783178},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"161":{"tf":1.0},"172":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"219":{"tf":3.4641016151377544},"235":{"tf":1.0},"236":{"tf":2.6457513110645907},"338":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"252":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":1.0},"420":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"451":{"tf":1.0},"454":{"tf":2.6457513110645907},"455":{"tf":1.0}}}}}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"408":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"21":{"tf":1.0},"226":{"tf":1.0},"377":{"tf":1.4142135623730951},"386":{"tf":3.0},"387":{"tf":2.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":33,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":2.0},"236":{"tf":1.0},"318":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":5.0990195135927845},"458":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":3.605551275463989},"65":{"tf":1.0},"70":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"229":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":10,"docs":{"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"227":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"361":{"tf":1.0},"414":{"tf":1.0},"94":{"tf":1.0}},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"m":{"df":2,"docs":{"144":{"tf":1.0},"183":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"249":{"tf":1.0},"84":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":8,"docs":{"162":{"tf":1.4142135623730951},"200":{"tf":1.0},"219":{"tf":1.0},"274":{"tf":1.0},"405":{"tf":2.0},"459":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"z":{"df":4,"docs":{"238":{"tf":1.0},"366":{"tf":1.0},"418":{"tf":1.0},"438":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"204":{"tf":1.0},"408":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"117":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"377":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"396":{"tf":1.0},"423":{"tf":1.0},"428":{"tf":2.0},"432":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"471":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"430":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":15,"docs":{"13":{"tf":1.0},"156":{"tf":1.0},"205":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.7320508075688772},"322":{"tf":1.0},"330":{"tf":1.0},"40":{"tf":1.0},"433":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"486":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"54":{"tf":1.0}}}},"n":{"c":{"df":1,"docs":{"418":{"tf":1.4142135623730951}},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"322":{"tf":1.0},"396":{"tf":1.0},"418":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"124":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.0},"420":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"470":{"tf":1.0}}}}}}},"r":{"d":{"df":2,"docs":{"249":{"tf":1.4142135623730951},"318":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":2.8284271247461903}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"409":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"247":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":2.0},"250":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"350":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"c":{"df":12,"docs":{"105":{"tf":1.0},"150":{"tf":1.0},"274":{"tf":1.0},"285":{"tf":1.0},"303":{"tf":1.4142135623730951},"313":{"tf":1.0},"334":{"tf":1.0},"351":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}},"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":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}},"df":26,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"160":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"275":{"tf":1.0},"311":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.4142135623730951},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"408":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.4142135623730951},"459":{"tf":3.7416573867739413},"508":{"tf":1.0}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":17,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.7320508075688772},"258":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.7320508075688772},"370":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"478":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":37,"docs":{"125":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0},"297":{"tf":1.0},"31":{"tf":1.4142135623730951},"313":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"337":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":2.0},"40":{"tf":1.0},"413":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"63":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"194":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"340":{"tf":1.0},"51":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"22":{"tf":1.0},"413":{"tf":1.0},"44":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"322":{"tf":1.4142135623730951}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"419":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"428":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"'":{"df":1,"docs":{"327":{"tf":1.0}}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"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":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"#":{"\"":{"[":{"a":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"319":{"tf":1.0},"327":{"tf":1.0},"353":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"102":{"tf":1.0},"352":{"tf":1.0}}}}}}},"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":{"337":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":18,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.0},"106":{"tf":1.4142135623730951},"119":{"tf":1.0},"130":{"tf":1.0},"261":{"tf":1.4142135623730951},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"43":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{"df":13,"docs":{"303":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.6457513110645907},"313":{"tf":2.8284271247461903},"314":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":2.6457513110645907},"65":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}},"r":{"df":2,"docs":{"311":{"tf":1.7320508075688772},"88":{"tf":1.0}},"y":{"\"":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"275":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"100":{"tf":1.0},"229":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"427":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"432":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"313":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.4142135623730951},"428":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"90":{"tf":2.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"13":{"tf":1.0},"204":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"372":{"tf":1.0},"419":{"tf":1.0},"462":{"tf":1.0},"486":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}}}}},"df":2,"docs":{"135":{"tf":1.0},"489":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"s":{"df":33,"docs":{"145":{"tf":2.23606797749979},"146":{"tf":1.7320508075688772},"147":{"tf":1.4142135623730951},"148":{"tf":2.0},"149":{"tf":2.6457513110645907},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"185":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"294":{"tf":1.0},"302":{"tf":1.0},"405":{"tf":3.1622776601683795},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":12,"docs":{"12":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":2.23606797749979},"205":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.0},"396":{"tf":1.0},"409":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.0},"458":{"tf":1.0},"500":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":28,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"252":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"319":{"tf":1.0},"350":{"tf":1.0},"428":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}},"df":9,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"240":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0},"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"451":{"tf":3.1622776601683795},"460":{"tf":1.7320508075688772}}},"v":{"df":50,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"152":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"194":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.7320508075688772},"237":{"tf":1.4142135623730951},"240":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"351":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"397":{"tf":1.4142135623730951},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"45":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"484":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"121":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"278":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.4142135623730951},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"220":{"tf":1.0},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.0}}},"z":{"df":0,"docs":{},"v":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"334":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.4142135623730951},"345":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.0},"374":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"318":{"tf":1.0},"475":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"220":{"tf":1.0},"289":{"tf":1.0},"309":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":17,"docs":{"119":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":1.0},"221":{"tf":1.4142135623730951},"247":{"tf":1.0},"297":{"tf":1.0},"359":{"tf":1.0},"398":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"d":{"/":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"289":{"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":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"137":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"330":{"tf":1.0},"507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":26,"docs":{"101":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.7320508075688772},"228":{"tf":1.0},"229":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.4142135623730951},"324":{"tf":1.0},"330":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}}},"df":11,"docs":{"229":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.4142135623730951},"319":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"391":{"tf":1.4142135623730951},"475":{"tf":1.0},"63":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"409":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951}}}}}}}},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"319":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"457":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"21":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"413":{"tf":2.449489742783178},"418":{"tf":1.4142135623730951},"44":{"tf":1.0},"457":{"tf":1.7320508075688772},"459":{"tf":4.123105625617661},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"200":{"tf":1.0},"255":{"tf":1.0},"318":{"tf":1.0},"428":{"tf":1.0}}},"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"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":2,"docs":{"249":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772}}}}}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":5,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"266":{"tf":1.0},"475":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"231":{"tf":1.0},"236":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"437":{"tf":1.0}}}}}}},"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":0,"docs":{},"i":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":5,"docs":{"319":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":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":{"459":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"/":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":159,"docs":{"109":{"tf":1.0},"110":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"119":{"tf":3.3166247903554},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"14":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.0},"204":{"tf":2.449489742783178},"205":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":3.4641016151377544},"213":{"tf":1.0},"214":{"tf":2.8284271247461903},"216":{"tf":1.0},"22":{"tf":1.7320508075688772},"221":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":2.8284271247461903},"228":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":3.1622776601683795},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"236":{"tf":3.1622776601683795},"239":{"tf":1.0},"241":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":2.0},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.4142135623730951},"255":{"tf":2.8284271247461903},"256":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"29":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":1.7320508075688772},"322":{"tf":2.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.4142135623730951},"39":{"tf":2.449489742783178},"408":{"tf":1.0},"411":{"tf":1.0},"423":{"tf":2.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":2.449489742783178},"43":{"tf":1.7320508075688772},"432":{"tf":1.4142135623730951},"433":{"tf":3.4641016151377544},"434":{"tf":2.0},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":3.605551275463989},"438":{"tf":2.8284271247461903},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":3.1622776601683795},"455":{"tf":1.4142135623730951},"457":{"tf":2.0},"459":{"tf":1.7320508075688772},"460":{"tf":1.7320508075688772},"470":{"tf":1.7320508075688772},"471":{"tf":3.0},"472":{"tf":1.4142135623730951},"475":{"tf":2.23606797749979},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.23606797749979},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.4142135623730951},"493":{"tf":1.4142135623730951},"499":{"tf":1.7320508075688772},"500":{"tf":3.605551275463989},"501":{"tf":2.23606797749979},"502":{"tf":1.4142135623730951},"503":{"tf":2.6457513110645907},"504":{"tf":3.3166247903554},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"508":{"tf":2.23606797749979},"52":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.0},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.0},"82":{"tf":2.23606797749979},"84":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.23606797749979},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"i":{"d":{"df":13,"docs":{"317":{"tf":1.7320508075688772},"318":{"tf":3.1622776601683795},"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0},"437":{"tf":2.6457513110645907},"438":{"tf":3.0},"439":{"tf":2.0},"440":{"tf":2.0},"442":{"tf":1.4142135623730951},"446":{"tf":2.6457513110645907},"448":{"tf":2.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"74":{"tf":1.0},"88":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"|":{"c":{"(":{"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":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"470":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":107,"docs":{"108":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"142":{"tf":1.0},"147":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"295":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.0},"337":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"368":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"418":{"tf":1.0},"420":{"tf":1.7320508075688772},"422":{"tf":1.4142135623730951},"426":{"tf":2.0},"43":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"448":{"tf":1.0},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"491":{"tf":1.7320508075688772},"496":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"54":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"466":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"122":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"d":{"df":2,"docs":{"169":{"tf":1.0},"336":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"142":{"tf":1.0},"22":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"458":{"tf":1.0},"52":{"tf":1.4142135623730951}}}},"v":{"df":28,"docs":{"101":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"277":{"tf":1.0},"329":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"346":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":2.23606797749979},"357":{"tf":1.0},"359":{"tf":1.7320508075688772},"361":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"494":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":2.23606797749979},"65":{"tf":2.6457513110645907},"66":{"tf":2.23606797749979},"68":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"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":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"s":{"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":{"350":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}}}}},"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"_":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"b":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"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":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"351":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":1,"docs":{"351":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"181":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":6,"docs":{"171":{"tf":1.0},"264":{"tf":1.0},"386":{"tf":1.0},"497":{"tf":1.0},"70":{"tf":1.7320508075688772},"83":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"p":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":2,"docs":{"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":7,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"131":{"tf":1.4142135623730951},"307":{"tf":1.0},"342":{"tf":1.0},"413":{"tf":1.0},"418":{"tf":1.0},"489":{"tf":1.0},"496":{"tf":1.0},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"434":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":109,"docs":{"109":{"tf":1.4142135623730951},"110":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":2.0},"23":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":2.0},"241":{"tf":1.4142135623730951},"249":{"tf":2.23606797749979},"251":{"tf":1.0},"256":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"266":{"tf":2.23606797749979},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":3.4641016151377544},"275":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"319":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"343":{"tf":1.0},"363":{"tf":1.0},"377":{"tf":1.0},"413":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"433":{"tf":2.6457513110645907},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.8284271247461903},"452":{"tf":1.0},"454":{"tf":3.4641016151377544},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.0},"489":{"tf":2.449489742783178},"490":{"tf":1.4142135623730951},"491":{"tf":2.0},"493":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"500":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":2.6457513110645907},"56":{"tf":1.0},"59":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"491":{"tf":1.0}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"508":{"tf":1.0},"90":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"249":{"tf":1.0},"251":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"459":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"|":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"1":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":6,"docs":{"119":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"433":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"108":{"tf":1.0},"265":{"tf":1.0},"276":{"tf":1.4142135623730951},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"244":{"tf":1.0},"269":{"tf":1.0},"327":{"tf":1.0},"428":{"tf":1.0},"454":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.7320508075688772},"489":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"276":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"<":{"_":{"df":2,"docs":{"234":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":6,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"351":{"tf":1.0},"353":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"459":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"226":{"tf":3.3166247903554},"508":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{"361":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"w":{"<":{"'":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"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":{"350":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"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":2,"docs":{"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"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":{"175":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"446":{"tf":1.0}},"p":{"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":{"<":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"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":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}},"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":{},"s":{"d":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"71":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}},"s":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"84":{"tf":1.0},"87":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":11,"docs":{"236":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"427":{"tf":1.0}}}}},"t":{"df":4,"docs":{"236":{"tf":1.4142135623730951},"459":{"tf":2.449489742783178},"49":{"tf":1.0},"56":{"tf":1.0}},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"_":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":72,"docs":{"100":{"tf":1.4142135623730951},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"156":{"tf":1.0},"171":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"212":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":3.4641016151377544},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"251":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.0},"325":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.4142135623730951},"354":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"406":{"tf":1.7320508075688772},"408":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"442":{"tf":1.0},"457":{"tf":1.4142135623730951},"459":{"tf":2.0},"471":{"tf":1.0},"487":{"tf":3.1622776601683795},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"499":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"78":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"274":{"tf":1.0},"313":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":49,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.0},"123":{"tf":2.6457513110645907},"124":{"tf":3.3166247903554},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.23606797749979},"130":{"tf":3.7416573867739413},"131":{"tf":3.0},"135":{"tf":1.0},"142":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":3.4641016151377544},"214":{"tf":1.0},"235":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0},"449":{"tf":1.0},"454":{"tf":2.449489742783178},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0},"485":{"tf":2.449489742783178},"486":{"tf":1.7320508075688772},"487":{"tf":3.872983346207417},"488":{"tf":1.7320508075688772},"489":{"tf":4.795831523312719},"490":{"tf":2.23606797749979},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":3.0},"494":{"tf":2.0},"495":{"tf":2.0},"496":{"tf":2.449489742783178},"52":{"tf":1.4142135623730951},"54":{"tf":2.8284271247461903},"56":{"tf":3.605551275463989},"59":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":21,"docs":{"153":{"tf":1.0},"155":{"tf":1.0},"193":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"414":{"tf":1.7320508075688772},"43":{"tf":1.0},"433":{"tf":2.0},"436":{"tf":1.4142135623730951},"437":{"tf":2.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.4142135623730951},"66":{"tf":2.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"493":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"175":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":2.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.4142135623730951}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"491":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"487":{"tf":1.0},"489":{"tf":3.1622776601683795},"491":{"tf":1.0},"493":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"489":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"487":{"tf":1.4142135623730951},"489":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"487":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"491":{"tf":2.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"493":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"489":{"tf":2.23606797749979},"493":{"tf":1.0},"494":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"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":{"489":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"130":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"487":{"tf":1.0},"489":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"175":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"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":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"489":{"tf":2.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"460":{"tf":1.0},"490":{"tf":1.4142135623730951},"56":{"tf":1.0}}},"y":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"459":{"tf":1.0},"461":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"459":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":79,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.7320508075688772},"156":{"tf":2.6457513110645907},"157":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"19":{"tf":1.0},"199":{"tf":2.8284271247461903},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.449489742783178},"228":{"tf":2.449489742783178},"229":{"tf":2.0},"231":{"tf":2.23606797749979},"236":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"361":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"411":{"tf":2.0},"413":{"tf":3.1622776601683795},"414":{"tf":1.4142135623730951},"415":{"tf":3.0},"416":{"tf":1.4142135623730951},"418":{"tf":2.6457513110645907},"428":{"tf":2.0},"43":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"489":{"tf":2.8284271247461903},"49":{"tf":1.7320508075688772},"491":{"tf":2.0},"493":{"tf":2.23606797749979},"495":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"93":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"264":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"153":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0},"270":{"tf":1.0},"340":{"tf":1.0},"431":{"tf":1.0},"67":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"433":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"356":{"tf":1.0},"414":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":1,"docs":{"167":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"484":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}}}},"f":{"c":{"0":{"0":{"1":{"3":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":404,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":2.449489742783178},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"223":{"tf":2.23606797749979},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":2.23606797749979},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"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},"259":{"tf":2.23606797749979},"260":{"tf":2.23606797749979},"261":{"tf":2.0},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"287":{"tf":2.449489742783178},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.7320508075688772},"297":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.8284271247461903},"303":{"tf":1.7320508075688772},"304":{"tf":2.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.0},"314":{"tf":2.23606797749979},"315":{"tf":1.7320508075688772},"316":{"tf":1.4142135623730951},"317":{"tf":2.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"320":{"tf":1.4142135623730951},"321":{"tf":2.23606797749979},"322":{"tf":2.23606797749979},"323":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"330":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951},"332":{"tf":2.23606797749979},"333":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"337":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.7320508075688772},"341":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":2.449489742783178},"347":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"369":{"tf":2.6457513110645907},"370":{"tf":1.7320508075688772},"371":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951},"377":{"tf":1.7320508075688772},"378":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"394":{"tf":1.7320508075688772},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"401":{"tf":1.7320508075688772},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"410":{"tf":2.23606797749979},"411":{"tf":1.4142135623730951},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.4142135623730951},"415":{"tf":2.23606797749979},"416":{"tf":1.4142135623730951},"417":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"419":{"tf":2.449489742783178},"420":{"tf":1.7320508075688772},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"425":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"428":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"433":{"tf":2.23606797749979},"434":{"tf":1.4142135623730951},"435":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":2.449489742783178},"450":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"452":{"tf":2.449489742783178},"453":{"tf":2.23606797749979},"454":{"tf":1.4142135623730951},"455":{"tf":2.0},"456":{"tf":2.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.23606797749979},"465":{"tf":2.0},"466":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.4142135623730951},"469":{"tf":2.23606797749979},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"473":{"tf":2.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":2.6457513110645907},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"482":{"tf":2.23606797749979},"483":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":2.23606797749979},"486":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"94":{"tf":3.7416573867739413},"95":{"tf":6.324555320336759},"96":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"311":{"tf":1.0},"331":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"147":{"tf":1.4142135623730951},"181":{"tf":1.0},"199":{"tf":1.0},"227":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"105":{"tf":1.7320508075688772},"141":{"tf":1.0},"167":{"tf":2.23606797749979},"220":{"tf":1.0},"334":{"tf":1.0},"447":{"tf":1.0},"81":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"269":{"tf":1.0},"66":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"449":{"tf":1.0}}},"t":{"df":5,"docs":{"192":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"337":{"tf":2.23606797749979},"428":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"276":{"tf":1.0},"293":{"tf":1.0},"428":{"tf":1.0},"89":{"tf":1.0}}}}}},"t":{"df":24,"docs":{"135":{"tf":1.0},"245":{"tf":2.6457513110645907},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":3.872983346207417},"269":{"tf":2.449489742783178},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":2.23606797749979},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"322":{"tf":1.0},"361":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":2.449489742783178},"77":{"tf":1.0},"87":{"tf":2.6457513110645907},"89":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"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":{"311":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":2,"docs":{"303":{"tf":1.0},"313":{"tf":3.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"251":{"tf":1.0},"268":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"(":{"\"":{"/":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":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":{"269":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"b":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"275":{"tf":1.4142135623730951}},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"275":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"244":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"258":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"273":{"tf":2.449489742783178},"274":{"tf":2.23606797749979},"275":{"tf":2.23606797749979},"276":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":2.8284271247461903},"280":{"tf":1.4142135623730951},"302":{"tf":1.0},"508":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":2.449489742783178},"89":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"310":{"tf":1.4142135623730951}},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"s":{"#":{"2":{"1":{"0":{"8":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"6":{"df":1,"docs":{"410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"8":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":1,"docs":{"93":{"tf":1.0}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"1":{"6":{"6":{"6":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.0},"196":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"1":{"5":{"5":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"0":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"7":{"9":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"9":{"3":{"df":2,"docs":{"258":{"tf":1.0},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"7":{"2":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"6":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"5":{"4":{"df":1,"docs":{"316":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"7":{"1":{"df":1,"docs":{"316":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"1":{"6":{"1":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"5":{"5":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}}},"df":59,"docs":{"11":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":2.8284271247461903},"154":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"178":{"tf":1.0},"183":{"tf":3.3166247903554},"184":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":2.449489742783178},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":1.0},"244":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":2.8284271247461903},"27":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.4142135623730951},"307":{"tf":1.0},"311":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"337":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"460":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}},"p":{"df":1,"docs":{"44":{"tf":1.0}}}},"t":{"df":2,"docs":{"103":{"tf":1.0},"220":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":19,"docs":{"124":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"257":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"359":{"tf":1.4142135623730951},"428":{"tf":1.0},"438":{"tf":1.0},"93":{"tf":1.0}},"s":{"[":{"\"":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":5,"docs":{"349":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0}}}}}}},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":39,"docs":{"119":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.7320508075688772},"194":{"tf":2.0},"199":{"tf":2.0},"24":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"323":{"tf":1.0},"33":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"428":{"tf":1.0},"450":{"tf":1.4142135623730951},"455":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.0},"489":{"tf":2.23606797749979},"490":{"tf":1.4142135623730951},"493":{"tf":2.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":3.4641016151377544},"80":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":85,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":1.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"152":{"tf":2.6457513110645907},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":2.0},"180":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":1.0},"186":{"tf":2.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":2.6457513110645907},"196":{"tf":2.0},"197":{"tf":1.0},"205":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.7320508075688772},"247":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"344":{"tf":1.0},"350":{"tf":1.0},"372":{"tf":1.0},"435":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":2.23606797749979},"452":{"tf":1.0},"453":{"tf":2.0},"458":{"tf":1.4142135623730951},"460":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"472":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":2.23606797749979},"508":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"84":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0}},"e":{"/":{"a":{"df":0,"docs":{},"w":{"df":6,"docs":{"153":{"tf":1.0},"231":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"482":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},":":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"149":{"tf":1.4142135623730951},"154":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}}}}}}},"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":3,"docs":{"459":{"tf":1.0},"461":{"tf":1.0},"56":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"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":{},"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"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":{},"p":{"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":{"_":{"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":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"494":{"tf":1.0},"496":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}},"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":1,"docs":{"496":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"266":{"tf":1.4142135623730951},"277":{"tf":2.449489742783178}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"459":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"143":{"tf":1.0},"144":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1":{"tf":1.0},"31":{"tf":1.0}}}}},"t":{"#":{"3":{"5":{"1":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"df":6,"docs":{"226":{"tf":1.0},"287":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"362":{"tf":1.0}}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"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":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{")":{"df":0,"docs":{},"}":{"(":{"#":{"df":0,"docs":{},"w":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"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":{},"u":{"b":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"183":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"=":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"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":{"=":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"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":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{",":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":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":{"80":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":1,"docs":{"380":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}},"df":132,"docs":{"0":{"tf":1.7320508075688772},"11":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"132":{"tf":2.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},"140":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":2.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"166":{"tf":2.0},"167":{"tf":1.0},"169":{"tf":3.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"246":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":2.0},"270":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"29":{"tf":1.0},"296":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.7320508075688772},"300":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.6457513110645907},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"34":{"tf":1.0},"346":{"tf":1.7320508075688772},"35":{"tf":1.0},"350":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":1.0},"37":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"430":{"tf":1.4142135623730951},"433":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951},"48":{"tf":1.7320508075688772},"482":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"53":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":6,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"239":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"s":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"—":{"df":0,"docs":{},"w":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"w":{"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":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"<":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"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":1,"docs":{"44":{"tf":1.4142135623730951}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"3":{"'":{"df":2,"docs":{"114":{"tf":1.0},"117":{"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":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"117":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"337":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"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":{"df":1,"docs":{"508":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":26,"docs":{"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"203":{"tf":1.4142135623730951},"216":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.7320508075688772},"229":{"tf":1.0},"291":{"tf":1.0},"337":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"371":{"tf":1.7320508075688772},"435":{"tf":1.0},"46":{"tf":2.0},"471":{"tf":1.0},"504":{"tf":2.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"249":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"86":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"[":{"a":{"d":{"d":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"369":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"274":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"95":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":3,"docs":{"410":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":51,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"318":{"tf":1.7320508075688772},"325":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":2.0},"386":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.7320508075688772},"491":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":8,"docs":{"269":{"tf":1.4142135623730951},"277":{"tf":1.0},"305":{"tf":1.0},"415":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"100":{"tf":1.0},"193":{"tf":1.0},"368":{"tf":1.0},"408":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.0}}}},"y":{"df":1,"docs":{"194":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"313":{"tf":1.0}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":6,"docs":{"136":{"tf":1.0},"182":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"135":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"401":{"tf":1.0}},"t":{"df":2,"docs":{"72":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":12,"docs":{"188":{"tf":1.0},"194":{"tf":1.0},"229":{"tf":1.4142135623730951},"351":{"tf":1.0},"357":{"tf":1.7320508075688772},"386":{"tf":1.0},"43":{"tf":1.0},"457":{"tf":1.0},"62":{"tf":2.23606797749979},"65":{"tf":2.449489742783178},"66":{"tf":3.4641016151377544},"85":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{":":{":":{"<":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"76":{"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":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"75":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":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":{"124":{"tf":1.0},"212":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"253":{"tf":1.0},"269":{"tf":1.0},"312":{"tf":2.0},"319":{"tf":1.0},"336":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"401":{"tf":1.0},"415":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"k":{"'":{"df":5,"docs":{"119":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"189":{"tf":1.0},"362":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.4142135623730951}}}}}}}}},":":{":":{"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":{"350":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"350":{"tf":1.0}},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":6,"docs":{"363":{"tf":1.4142135623730951},"366":{"tf":1.7320508075688772},"368":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"452":{"tf":1.0},"508":{"tf":1.0}}}}}}}},"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":{"350":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"17":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":2.6457513110645907},"225":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"231":{"tf":1.0},"475":{"tf":1.4142135623730951},"478":{"tf":1.0}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"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":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}},">":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"110":{"tf":1.0},"111":{"tf":1.0}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"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":5,"docs":{"350":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.4142135623730951}}}}}}}},"df":181,"docs":{"0":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":2.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.449489742783178},"146":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178},"148":{"tf":2.0},"149":{"tf":3.0},"15":{"tf":1.0},"152":{"tf":3.3166247903554},"153":{"tf":3.1622776601683795},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.449489742783178},"165":{"tf":1.7320508075688772},"166":{"tf":2.8284271247461903},"167":{"tf":1.7320508075688772},"169":{"tf":4.0},"17":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":2.449489742783178},"181":{"tf":1.0},"183":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"186":{"tf":1.7320508075688772},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":2.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"289":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"337":{"tf":1.0},"338":{"tf":2.449489742783178},"340":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":2.0},"378":{"tf":1.0},"380":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"396":{"tf":1.4142135623730951},"398":{"tf":1.0},"4":{"tf":1.0},"400":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.0},"419":{"tf":1.4142135623730951},"428":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":2.23606797749979},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":2.449489742783178},"452":{"tf":1.0},"454":{"tf":3.605551275463989},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"472":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.4142135623730951},"484":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"488":{"tf":1.0},"497":{"tf":1.0},"499":{"tf":1.4142135623730951},"5":{"tf":2.449489742783178},"50":{"tf":1.0},"500":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":2.23606797749979},"60":{"tf":1.0},"7":{"tf":2.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}}},"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":{},"o":{"_":{"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":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"110":{"tf":1.0},"112":{"tf":1.0}}}}}}}}}}}}}}}}},"df":3,"docs":{"212":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"56":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"tf":2.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.7320508075688772},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}},"df":1,"docs":{"433":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":20,"docs":{"211":{"tf":1.0},"247":{"tf":1.4142135623730951},"249":{"tf":2.0},"255":{"tf":2.0},"256":{"tf":2.0},"274":{"tf":2.6457513110645907},"312":{"tf":1.4142135623730951},"319":{"tf":2.0},"325":{"tf":1.0},"420":{"tf":1.0},"71":{"tf":2.23606797749979},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"84":{"tf":3.0},"86":{"tf":3.0},"88":{"tf":1.7320508075688772},"89":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"482":{"tf":1.0}}},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"44":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":20,"docs":{"14":{"tf":1.0},"207":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"372":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"418":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"447":{"tf":1.0},"56":{"tf":1.0},"73":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"355":{"tf":1.0},"356":{"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":1,"docs":{"356":{"tf":1.0}}}}}}}},"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":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"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":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"356":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":49,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.7320508075688772},"19":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"252":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.0},"305":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0},"339":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"374":{"tf":1.0},"377":{"tf":1.0},"4":{"tf":1.0},"402":{"tf":1.0},"410":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"281":{"tf":1.4142135623730951},"284":{"tf":1.7320508075688772},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":53,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"12":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"194":{"tf":1.7320508075688772},"201":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"224":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"259":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.0},"346":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"382":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":1.0},"410":{"tf":1.4142135623730951},"415":{"tf":1.0},"419":{"tf":1.0},"422":{"tf":1.0},"428":{"tf":1.0},"436":{"tf":1.4142135623730951},"44":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.4142135623730951},"485":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":2,"docs":{"254":{"tf":1.0},"31":{"tf":1.0}}},"m":{"df":5,"docs":{"156":{"tf":1.0},"220":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"423":{"tf":1.0}}}}}}}},"n":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"250":{"tf":1.0},"275":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"81":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":2.0},"135":{"tf":1.0},"222":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"33":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"(":{"$":{"(":{"$":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{",":{")":{"*":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}}}}},".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"0":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"299":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"314":{"tf":1.0}}}}}}}}}}}}}},"_":{"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":{"482":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"156":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":1,"docs":{"227":{"tf":1.4142135623730951}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"112":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"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":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"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":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"371":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"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":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"311":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"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":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"156":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":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":{"226":{"tf":2.0}}}}}},"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":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":1,"docs":{"112":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":3,"docs":{"157":{"tf":1.0},"274":{"tf":1.7320508075688772},"398":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"175":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"319":{"tf":1.7320508075688772},"77":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"249":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"x":{"df":3,"docs":{"274":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"413":{"tf":1.0},"414":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"290":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"290":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{},"|":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"290":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}},"o":{"df":0,"docs":{},"p":{"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":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}},"0":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951}}},"1":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"249":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"236":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"229":{"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"229":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":1,"docs":{"228":{"tf":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":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"415":{"tf":1.0},"416":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"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":{"88":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"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":{"77":{"tf":1.4142135623730951}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"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":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"490":{"tf":1.0}}}}}}}},"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":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"200":{"tf":1.7320508075688772},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"200":{"tf":1.0},"226":{"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":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"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":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"482":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":{"39":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"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":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":20,"docs":{"199":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.7320508075688772},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"506":{"tf":1.4142135623730951},"77":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"s":{"d":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"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":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"249":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":4,"docs":{"312":{"tf":1.0},"314":{"tf":1.0},"77":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}}}}}}}},"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":{},"n":{"d":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"211":{"tf":1.0},"313":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"423":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":60,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":2.0},"156":{"tf":2.23606797749979},"199":{"tf":4.358898943540674},"200":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"226":{"tf":4.47213595499958},"227":{"tf":2.8284271247461903},"228":{"tf":3.1622776601683795},"229":{"tf":4.0},"236":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"255":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":2.8284271247461903},"268":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":3.1622776601683795},"289":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"299":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"319":{"tf":2.0},"325":{"tf":1.0},"355":{"tf":1.7320508075688772},"363":{"tf":2.23606797749979},"368":{"tf":2.0},"371":{"tf":3.0},"39":{"tf":3.4641016151377544},"398":{"tf":1.4142135623730951},"41":{"tf":2.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":2.23606797749979},"418":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"482":{"tf":1.0},"489":{"tf":3.3166247903554},"490":{"tf":3.0},"493":{"tf":1.0},"506":{"tf":2.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"82":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"2":{"tf":1.0},"240":{"tf":1.0},"274":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"180":{"tf":1.0},"188":{"tf":1.0},"197":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951}},"v":{"df":2,"docs":{"194":{"tf":2.8284271247461903},"196":{"tf":1.0}}}}}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"`":{"]":{"(":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":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":{"159":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"110":{"tf":1.0},"112":{"tf":1.0},"175":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":64,"docs":{"110":{"tf":1.4142135623730951},"113":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"130":{"tf":2.6457513110645907},"155":{"tf":1.0},"156":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":3.7416573867739413},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"230":{"tf":1.7320508075688772},"236":{"tf":2.23606797749979},"238":{"tf":1.7320508075688772},"261":{"tf":1.0},"269":{"tf":1.7320508075688772},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"318":{"tf":2.6457513110645907},"322":{"tf":1.4142135623730951},"331":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"408":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":2.6457513110645907},"462":{"tf":1.0},"464":{"tf":1.0},"471":{"tf":1.0},"486":{"tf":1.7320508075688772},"493":{"tf":1.0},"499":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":2.449489742783178},"503":{"tf":2.23606797749979},"504":{"tf":2.8284271247461903},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"265":{"tf":1.0},"331":{"tf":1.0},"338":{"tf":1.4142135623730951}},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"416":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":26,"docs":{"240":{"tf":2.8284271247461903},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":1.4142135623730951},"247":{"tf":2.6457513110645907},"248":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"250":{"tf":2.449489742783178},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.7320508075688772},"255":{"tf":2.8284271247461903},"256":{"tf":3.4641016151377544},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.7320508075688772},"67":{"tf":1.0},"81":{"tf":3.605551275463989},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"248":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"248":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}}},"t":{"df":16,"docs":{"13":{"tf":1.0},"205":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"318":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"454":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":2.0},"505":{"tf":1.4142135623730951},"508":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"12":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.0},"172":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"227":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"330":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"482":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"319":{"tf":1.0},"430":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.7320508075688772}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":16,"docs":{"13":{"tf":2.23606797749979},"376":{"tf":2.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"381":{"tf":2.449489742783178},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"397":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.7320508075688772},"405":{"tf":2.8284271247461903}},"e":{"'":{"df":1,"docs":{"406":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"402":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"395":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"393":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"388":{"tf":1.0},"389":{"tf":1.0}}}},"df":0,"docs":{}}}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"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":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"408":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"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":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"_":{"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":{},"r":{"df":0,"docs":{},"e":{"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":{"408":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"222":{"tf":1.0},"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":52,"docs":{"13":{"tf":1.0},"132":{"tf":1.4142135623730951},"2":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":2.8284271247461903},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":2.449489742783178},"387":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"390":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":2.23606797749979},"396":{"tf":2.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":2.0},"402":{"tf":2.8284271247461903},"403":{"tf":1.0},"404":{"tf":1.4142135623730951},"405":{"tf":2.23606797749979},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":2.0},"409":{"tf":2.449489742783178},"428":{"tf":1.4142135623730951},"454":{"tf":1.7320508075688772},"459":{"tf":1.0},"486":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"266":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"287":{"tf":1.0},"336":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"401":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"13":{"tf":1.0},"378":{"tf":1.0},"381":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"381":{"tf":1.0}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.7320508075688772}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"448":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":1,"docs":{"402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"155":{"tf":1.0},"270":{"tf":1.0},"469":{"tf":1.0},"487":{"tf":1.0}}},"v":{"df":8,"docs":{"218":{"tf":1.0},"247":{"tf":1.0},"274":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"84":{"tf":1.0}},"e":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"508":{"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":1,"docs":{"305":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"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":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"4":{"7":{"df":1,"docs":{"80":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"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":{},"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":62,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"205":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"261":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":2.449489742783178},"325":{"tf":1.0},"332":{"tf":1.0},"377":{"tf":1.0},"419":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"450":{"tf":1.0},"489":{"tf":1.4142135623730951},"493":{"tf":1.0},"508":{"tf":1.7320508075688772},"63":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"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":2.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"82":{"tf":1.4142135623730951},"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},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":2.23606797749979},"93":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"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":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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"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":0,"docs":{},"y":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"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":0,"docs":{},"i":{"d":{"df":3,"docs":{"319":{"tf":2.0},"320":{"tf":1.0},"321":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}},"i":{"c":{"df":175,"docs":{"0":{"tf":1.0},"101":{"tf":1.7320508075688772},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"12":{"tf":2.449489742783178},"123":{"tf":1.0},"124":{"tf":2.23606797749979},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"13":{"tf":1.7320508075688772},"130":{"tf":2.8284271247461903},"131":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.6457513110645907},"140":{"tf":1.4142135623730951},"141":{"tf":3.3166247903554},"142":{"tf":2.6457513110645907},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"162":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":2.449489742783178},"204":{"tf":4.242640687119285},"205":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"219":{"tf":2.0},"226":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"25":{"tf":1.0},"26":{"tf":1.0},"263":{"tf":2.23606797749979},"264":{"tf":3.1622776601683795},"265":{"tf":1.7320508075688772},"266":{"tf":2.23606797749979},"267":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":4.358898943540674},"275":{"tf":2.23606797749979},"276":{"tf":1.7320508075688772},"277":{"tf":1.0},"278":{"tf":3.4641016151377544},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":2.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":3.1622776601683795},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":3.3166247903554},"319":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"324":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.7320508075688772},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"350":{"tf":3.3166247903554},"351":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"354":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"43":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"44":{"tf":2.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":3.3166247903554},"453":{"tf":2.0},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"46":{"tf":2.0},"460":{"tf":2.23606797749979},"486":{"tf":2.23606797749979},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.7320508075688772},"5":{"tf":1.0},"50":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":2.23606797749979},"65":{"tf":2.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":2.6457513110645907},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":3.605551275463989},"84":{"tf":2.6457513110645907},"85":{"tf":1.0},"86":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":2.23606797749979},"89":{"tf":3.872983346207417},"90":{"tf":1.0},"91":{"tf":1.7320508075688772},"92":{"tf":1.4142135623730951},"93":{"tf":2.0},"95":{"tf":2.0},"96":{"tf":2.0},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}},"e":{"'":{"df":3,"docs":{"174":{"tf":1.0},"322":{"tf":1.0},"453":{"tf":1.0}}},"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"211":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"2":{"8":{":":{"2":{"7":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"2":{"8":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"5":{"df":1,"docs":{"310":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"1":{"0":{"df":1,"docs":{"305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"9":{"df":1,"docs":{"309":{"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":{},"r":{"c":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"305":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":2.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{"1":{"8":{"4":{"df":1,"docs":{"80":{"tf":1.0}}},"8":{"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":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"278":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},":":{":":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"250":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"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":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":{"<":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"319":{"tf":2.0}}}},"df":5,"docs":{"268":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"73":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"86":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},":":{":":{"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":{"204":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"o":{"df":2,"docs":{"212":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"b":{"df":5,"docs":{"244":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"266":{"tf":1.0}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"_":{"0":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"i":{"d":{"df":1,"docs":{"77":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{"313":{"tf":1.4142135623730951}},"e":{")":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}},"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"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":{"490":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"349":{"tf":1.0},"355":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"_":{"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":{"244":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"<":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"14":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"278":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"_":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"377":{"tf":1.0},"398":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"491":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"490":{"tf":1.0}}}}}},"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":112,"docs":{"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},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":2.0},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.7320508075688772},"230":{"tf":1.4142135623730951},"232":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"318":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":2.0},"352":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"36":{"tf":2.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"377":{"tf":1.0},"398":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"453":{"tf":1.7320508075688772},"457":{"tf":1.0},"458":{"tf":4.0},"459":{"tf":2.23606797749979},"468":{"tf":1.0},"475":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"490":{"tf":2.449489742783178},"491":{"tf":2.0},"496":{"tf":2.23606797749979},"5":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":2.23606797749979},"505":{"tf":1.7320508075688772},"508":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":2.6457513110645907},"59":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":14,"docs":{"175":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"368":{"tf":1.0},"398":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"110":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"80":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"105":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"156":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"225":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"363":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"459":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"1":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"1":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"226":{"tf":2.23606797749979}}},"2":{"5":{"6":{":":{"4":{"7":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"8":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"s":{"a":{"+":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"+":{"5":{"df":0,"docs":{},"j":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"5":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"3":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"=":{"\"":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"226":{"tf":2.23606797749979},"229":{"tf":2.0},"230":{"tf":1.0},"501":{"tf":1.4142135623730951}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"1":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"5":{"6":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"337":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"152":{"tf":1.0},"153":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":44,"docs":{"155":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":2.0},"33":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"34":{"tf":1.7320508075688772},"340":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"35":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.0},"420":{"tf":4.58257569495584},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"431":{"tf":3.1622776601683795},"432":{"tf":1.4142135623730951},"486":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"93":{"tf":2.8284271247461903}},"i":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":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":{"77":{"tf":2.0},"84":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"335":{"tf":1.0},"355":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"}":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"340":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"408":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"304":{"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":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"372":{"tf":1.0}}}},"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":{"d":{"df":4,"docs":{"363":{"tf":1.7320508075688772},"364":{"tf":1.0},"368":{"tf":2.0},"370":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}},"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":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"487":{"tf":1.0},"490":{"tf":2.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"127":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"142":{"tf":1.4142135623730951},"199":{"tf":1.0},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"241":{"tf":1.0},"287":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.4142135623730951},"340":{"tf":1.0},"350":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}},"p":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":10,"docs":{"175":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"28":{"tf":1.0},"427":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"492":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"459":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"306":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"229":{"tf":1.0},"423":{"tf":1.0},"438":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"249":{"tf":1.0},"372":{"tf":1.0},"405":{"tf":1.0},"418":{"tf":1.0}},"n":{"df":6,"docs":{"110":{"tf":1.0},"226":{"tf":1.0},"307":{"tf":1.0},"312":{"tf":1.0},"351":{"tf":1.0},"416":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"261":{"tf":1.0},"268":{"tf":1.0},"322":{"tf":1.4142135623730951},"377":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"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":{"67":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}},"y":{":":{":":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"230":{"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":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"<":{"'":{"a":{"df":1,"docs":{"230":{"tf":1.0}}},"b":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":2,"docs":{"260":{"tf":1.0},"324":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"303":{"tf":1.0},"308":{"tf":1.4142135623730951},"310":{"tf":3.0},"313":{"tf":1.4142135623730951},"457":{"tf":2.0},"56":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":2.23606797749979},"24":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"43":{"tf":1.0},"454":{"tf":2.449489742783178},"457":{"tf":1.4142135623730951},"476":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":2.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"119":{"tf":1.4142135623730951},"211":{"tf":1.0},"230":{"tf":1.0},"457":{"tf":2.6457513110645907},"486":{"tf":1.0},"54":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"68":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"341":{"tf":1.0},"38":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"12":{"tf":1.0},"166":{"tf":1.0},"303":{"tf":1.0},"382":{"tf":1.0}}},"df":3,"docs":{"333":{"tf":1.0},"344":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"457":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"357":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}}}}}},"v":{"4":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":11,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"122":{"tf":1.0},"216":{"tf":1.0},"230":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"476":{"tf":1.7320508075688772},"478":{"tf":1.0},"484":{"tf":1.0},"67":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":27,"docs":{"121":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"175":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.7320508075688772},"310":{"tf":1.0},"335":{"tf":1.0},"350":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"490":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.0},"427":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":14,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"290":{"tf":1.0},"386":{"tf":1.0},"459":{"tf":1.0},"475":{"tf":1.0},"491":{"tf":1.0}}}},"i":{"c":{"df":3,"docs":{"36":{"tf":1.0},"418":{"tf":1.0},"431":{"tf":1.0}}},"df":7,"docs":{"244":{"tf":1.0},"255":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"311":{"tf":1.0},"402":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"155":{"tf":1.0},"161":{"tf":1.0},"200":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"350":{"tf":1.0},"41":{"tf":1.0},"449":{"tf":1.4142135623730951},"481":{"tf":1.0},"5":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":31,"docs":{"110":{"tf":1.0},"12":{"tf":1.0},"155":{"tf":1.0},"174":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.7320508075688772},"229":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"318":{"tf":1.4142135623730951},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"350":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"489":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}},"df":0,"docs":{}}}},"k":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"141":{"tf":1.0},"226":{"tf":1.4142135623730951},"276":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"z":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"226":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":4,"docs":{"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"506":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}}},"df":21,"docs":{"156":{"tf":1.7320508075688772},"226":{"tf":3.3166247903554},"227":{"tf":1.4142135623730951},"229":{"tf":3.1622776601683795},"231":{"tf":1.4142135623730951},"314":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"428":{"tf":1.7320508075688772},"432":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.4142135623730951},"505":{"tf":2.0},"506":{"tf":1.4142135623730951},"82":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"90":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"250":{"tf":1.0},"354":{"tf":1.0},"395":{"tf":2.0},"396":{"tf":1.0},"402":{"tf":2.0},"448":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"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":{},"n":{"df":1,"docs":{"212":{"tf":2.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.4142135623730951}}}}}}},"df":9,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"416":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"416":{"tf":2.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"226":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"119":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"214":{"tf":1.0},"508":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"13":{"tf":1.0},"213":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"171":{"tf":1.0},"222":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.4142135623730951},"438":{"tf":1.0},"475":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":2.0},"313":{"tf":1.0},"341":{"tf":1.0},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"396":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":196,"docs":{"106":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":2.23606797749979},"110":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.0},"119":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":2.449489742783178},"148":{"tf":1.7320508075688772},"149":{"tf":2.449489742783178},"15":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":3.605551275463989},"153":{"tf":4.242640687119285},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":3.605551275463989},"184":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":2.0},"196":{"tf":2.0},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"249":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":3.1622776601683795},"260":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"269":{"tf":3.7416573867739413},"27":{"tf":2.449489742783178},"274":{"tf":2.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"28":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"305":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"318":{"tf":1.0},"32":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"33":{"tf":2.0},"337":{"tf":1.0},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"34":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"351":{"tf":2.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"359":{"tf":2.0},"36":{"tf":1.4142135623730951},"362":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.7320508075688772},"385":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"395":{"tf":1.0},"4":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"43":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":2.0},"435":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"44":{"tf":1.0},"449":{"tf":2.0},"45":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"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.7320508075688772},"459":{"tf":1.7320508075688772},"46":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.7320508075688772},"486":{"tf":2.8284271247461903},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":2.6457513110645907},"82":{"tf":2.0},"83":{"tf":2.449489742783178},"84":{"tf":2.23606797749979},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0}}},"y":{"'":{"df":5,"docs":{"307":{"tf":1.0},"385":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"#":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"426":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"437":{"tf":1.0}}}},"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":{"359":{"tf":1.4142135623730951}}}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"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":{"349":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"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":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"{":{"a":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"314":{"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":1,"docs":{"153":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"350":{"tf":1.0},"371":{"tf":2.449489742783178},"413":{"tf":1.7320508075688772},"414":{"tf":2.449489742783178},"415":{"tf":1.0},"416":{"tf":2.8284271247461903},"67":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"312":{"tf":1.0},"355":{"tf":1.0},"371":{"tf":1.0},"395":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"(":{"[":{"1":{"2":{"7":{"df":1,"docs":{"508":{"tf":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":{"304":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"405":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"297":{"tf":1.0},"352":{"tf":1.0},"396":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"112":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"201":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.4142135623730951},"309":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.7320508075688772},"431":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"475":{"tf":1.4142135623730951},"491":{"tf":1.0},"508":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0}}}},"v":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":14,"docs":{"108":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"240":{"tf":1.0},"251":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":2.0},"45":{"tf":1.0},"5":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"e":{"(":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"355":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"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":1,"docs":{"231":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"229":{"tf":1.0}}},"_":{"df":1,"docs":{"415":{"tf":1.0}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"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":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"f":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"231":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":{"229":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"r":{"c":{"3":{"2":{"c":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"c":{"df":0,"docs":{},"r":{"c":{"3":{"2":{"c":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":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.0},"226":{"tf":1.0}}},"df":1,"docs":{"414":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"289":{"tf":1.4142135623730951}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"199":{"tf":1.7320508075688772},"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"227":{"tf":1.0}}},"p":{"df":1,"docs":{"39":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"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":{"229":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"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":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"k":{"(":{"_":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"352":{"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":{},"p":{"df":1,"docs":{"352":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"457":{"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":1,"docs":{"457":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"_":{"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":{"229":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"267":{"tf":1.4142135623730951},"274":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"297":{"tf":2.23606797749979},"298":{"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":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"297":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"238":{"tf":1.4142135623730951}},"e":{"(":{"5":{"df":1,"docs":{"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"363":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"402":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"451":{"tf":1.0},"470":{"tf":1.0},"56":{"tf":1.0}}},"p":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"38":{"tf":1.0},"48":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"172":{"tf":1.0},"27":{"tf":1.0},"296":{"tf":1.0},"313":{"tf":1.4142135623730951},"438":{"tf":1.0},"457":{"tf":1.0},"470":{"tf":1.0},"508":{"tf":1.0},"63":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"204":{"tf":1.0},"205":{"tf":1.0},"423":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"117":{"tf":1.0},"306":{"tf":1.0},"313":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"177":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"33":{"tf":1.0},"457":{"tf":1.0},"46":{"tf":1.0},"494":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":28,"docs":{"100":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"26":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.23606797749979},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":2.0},"297":{"tf":3.7416573867739413},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":2.0},"449":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.4142135623730951}},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"289":{"tf":1.0},"298":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":8,"docs":{"247":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"251":{"tf":1.0},"257":{"tf":1.0},"319":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":2.0},"81":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"328":{"tf":1.0},"78":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":5,"docs":{"204":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":6,"docs":{"14":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.0},"499":{"tf":1.0},"504":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"109":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"192":{"tf":1.0},"203":{"tf":1.0},"230":{"tf":1.0},"252":{"tf":1.0},"428":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"508":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0}}}},"df":4,"docs":{"70":{"tf":1.7320508075688772},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"f":{"df":90,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.23606797749979},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.8284271247461903},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"283":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"318":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"336":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"352":{"tf":1.0},"354":{"tf":1.0},"426":{"tf":1.4142135623730951},"43":{"tf":1.0},"45":{"tf":1.4142135623730951},"453":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":2.0},"48":{"tf":1.0},"481":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"62":{"tf":1.4142135623730951},"7":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"84":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":34,"docs":{"100":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"173":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"263":{"tf":1.0},"269":{"tf":2.6457513110645907},"272":{"tf":1.0},"278":{"tf":1.0},"289":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.7320508075688772},"313":{"tf":1.0},"322":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.4142135623730951},"38":{"tf":1.0},"380":{"tf":1.4142135623730951},"401":{"tf":1.0},"416":{"tf":1.0},"43":{"tf":1.4142135623730951},"504":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"499":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"424":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"119":{"tf":1.0},"145":{"tf":2.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"175":{"tf":1.0},"345":{"tf":1.0},"38":{"tf":1.0},"424":{"tf":1.0},"95":{"tf":1.0}}}}}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":1,"docs":{"405":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"105":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"29":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"351":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"l":{"df":3,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"163":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.7320508075688772}}}},"df":14,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"213":{"tf":1.0},"3":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":4,"docs":{"204":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"274":{"tf":1.0},"282":{"tf":1.0},"359":{"tf":1.0}}}}},"r":{"d":{"df":23,"docs":{"100":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":2.0},"131":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.0},"359":{"tf":1.0},"426":{"tf":1.0},"494":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"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":0,"docs":{},"s":{"(":{"5":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"127":{"tf":1.0},"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":1,"docs":{"131":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":2.23606797749979}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"116":{"tf":1.0},"174":{"tf":1.0},"199":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"289":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"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":{"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"275":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"80":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":26,"docs":{"171":{"tf":1.4142135623730951},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.23606797749979},"270":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"413":{"tf":1.0},"454":{"tf":1.0},"507":{"tf":1.0},"72":{"tf":3.605551275463989},"78":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":2.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"89":{"tf":3.3166247903554},"90":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"21":{"tf":1.0},"297":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":36,"docs":{"100":{"tf":1.0},"226":{"tf":3.4641016151377544},"236":{"tf":1.0},"249":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"307":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"410":{"tf":1.0},"411":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"44":{"tf":1.0},"459":{"tf":2.8284271247461903},"466":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"56":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":44,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.7320508075688772},"259":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"381":{"tf":1.0},"410":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"449":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"249":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"508":{"tf":1.7320508075688772}},"e":{":":{":":{"b":{"a":{"d":{"_":{"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":{"508":{"tf":1.0}}}}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"82":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"y":{"df":4,"docs":{"197":{"tf":1.0},"337":{"tf":1.0},"373":{"tf":1.0},"482":{"tf":1.0}}}},"d":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{":":{":":{"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":5,"docs":{"352":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"423":{"tf":2.449489742783178}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"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":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"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":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"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":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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"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":1,"docs":{"423":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"30":{"tf":1.0},"423":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"|":{"_":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":10,"docs":{"200":{"tf":1.0},"226":{"tf":3.3166247903554},"228":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"324":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"324":{"tf":1.0},"352":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"422":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"227":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"'":{"_":{"df":3,"docs":{"228":{"tf":1.0},"324":{"tf":1.0},"39":{"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":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"289":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"84":{"tf":1.0}}}}}}}}}},"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":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"1":{"df":2,"docs":{"307":{"tf":1.4142135623730951},"308":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"508":{"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":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"352":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"395":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"6":{"4":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"352":{"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":{}}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"229":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"&":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"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":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"a":{"df":0,"docs":{},"r":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"c":{"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":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"227":{"tf":1.0},"229":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"212":{"tf":1.0},"30":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":5,"docs":{"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.0}}},"p":{"df":21,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"166":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"251":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"278":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.4142135623730951},"428":{"tf":1.0},"431":{"tf":1.0},"453":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"66":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":30,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"290":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"367":{"tf":1.0},"413":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.0},"459":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"249":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":6,"docs":{"228":{"tf":1.0},"271":{"tf":1.0},"309":{"tf":1.0},"487":{"tf":1.4142135623730951},"489":{"tf":1.0},"49":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"475":{"tf":1.0},"70":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"/":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"353":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"112":{"tf":1.0},"119":{"tf":1.4142135623730951},"124":{"tf":1.0},"135":{"tf":1.0},"142":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":2.0},"475":{"tf":1.0},"480":{"tf":1.0},"482":{"tf":1.0},"494":{"tf":1.0},"53":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"415":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":13,"docs":{"185":{"tf":1.7320508075688772},"188":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"459":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":2.23606797749979},"488":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0}}}}}},"y":{"df":2,"docs":{"305":{"tf":1.0},"307":{"tf":1.0}}}},"df":19,"docs":{"226":{"tf":3.1622776601683795},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"230":{"tf":1.0},"231":{"tf":2.0},"249":{"tf":1.0},"307":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"325":{"tf":1.0},"350":{"tf":1.0},"427":{"tf":1.0},"457":{"tf":1.4142135623730951},"475":{"tf":1.0},"482":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.0},"508":{"tf":1.0},"67":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":{"156":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"_":{"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":{"229":{"tf":3.0}}}}}}}}},"`":{"]":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":2.0},"113":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"18":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"216":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.0},"233":{"tf":1.0},"259":{"tf":2.23606797749979},"260":{"tf":2.8284271247461903},"261":{"tf":3.3166247903554},"262":{"tf":1.7320508075688772},"27":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":2.8284271247461903},"437":{"tf":1.0},"438":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":2.0},"502":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"322":{"tf":1.0},"423":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"230":{"tf":1.0},"274":{"tf":1.0},"330":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"287":{"tf":1.0},"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"'":{"df":1,"docs":{"324":{"tf":1.0}}},"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"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":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":2.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":42,"docs":{"144":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"249":{"tf":1.4142135623730951},"261":{"tf":2.6457513110645907},"269":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"290":{"tf":1.0},"31":{"tf":3.4641016151377544},"319":{"tf":1.7320508075688772},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"325":{"tf":2.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.0},"357":{"tf":1.0},"37":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"41":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":2.0},"428":{"tf":1.0},"430":{"tf":1.7320508075688772},"431":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"457":{"tf":1.7320508075688772},"476":{"tf":1.4142135623730951},"482":{"tf":2.6457513110645907},"508":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"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":{},"i":{"d":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"#":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"\"":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"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":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"—":{"a":{"df":1,"docs":{"482":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"261":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"281":{"tf":1.0},"5":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"329":{"tf":1.0}}},"(":{"df":1,"docs":{"333":{"tf":1.0}}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"300":{"tf":1.0},"345":{"tf":1.0}}}}}}},"df":114,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"112":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"131":{"tf":2.0},"142":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"172":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"27":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"310":{"tf":2.6457513110645907},"311":{"tf":1.0},"324":{"tf":2.449489742783178},"325":{"tf":1.7320508075688772},"329":{"tf":1.4142135623730951},"33":{"tf":2.23606797749979},"330":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":3.3166247903554},"335":{"tf":2.0},"34":{"tf":1.0},"340":{"tf":2.0},"344":{"tf":2.0},"350":{"tf":1.0},"351":{"tf":2.449489742783178},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":3.1622776601683795},"38":{"tf":2.8284271247461903},"39":{"tf":1.4142135623730951},"390":{"tf":1.0},"395":{"tf":1.0},"402":{"tf":1.4142135623730951},"404":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":4.123105625617661},"435":{"tf":1.0},"438":{"tf":1.4142135623730951},"455":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"471":{"tf":1.0},"475":{"tf":1.0},"48":{"tf":1.0},"489":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.23606797749979},"82":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"85":{"tf":2.23606797749979},"87":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":2.0}},"s":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"339":{"tf":1.0},"340":{"tf":1.0}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":44,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"261":{"tf":3.3166247903554},"263":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"426":{"tf":2.0},"427":{"tf":1.4142135623730951},"431":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"475":{"tf":1.0},"48":{"tf":3.1622776601683795},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"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":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"27":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0}}}}}}},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"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":{}}}}},":":{":":{"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":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"128":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"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":2,"docs":{"128":{"tf":1.0},"129":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.4142135623730951},"290":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"199":{"tf":1.4142135623730951},"312":{"tf":1.0},"349":{"tf":2.0},"350":{"tf":1.0},"39":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"b":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"154":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"30":{"tf":1.0},"418":{"tf":1.7320508075688772},"461":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"245":{"tf":1.0},"251":{"tf":1.0},"257":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"222":{"tf":1.0},"94":{"tf":2.0},"95":{"tf":1.4142135623730951}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"301":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"283":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":5,"docs":{"155":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951}}}},"t":{"df":7,"docs":{"14":{"tf":1.0},"146":{"tf":1.0},"312":{"tf":1.0},"423":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"431":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"244":{"tf":1.0},"8":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"111":{"tf":1.0},"194":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"418":{"tf":1.4142135623730951},"433":{"tf":1.0},"74":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"124":{"tf":1.0},"137":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"318":{"tf":1.0},"433":{"tf":1.0},"436":{"tf":1.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"459":{"tf":1.0},"5":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"147":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"413":{"tf":1.7320508075688772},"415":{"tf":1.0},"433":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":43,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"135":{"tf":1.0},"146":{"tf":1.0},"178":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"216":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"337":{"tf":1.4142135623730951},"353":{"tf":1.0},"362":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"410":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.0},"449":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"431":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"307":{"tf":1.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"378":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"135":{"tf":1.0},"306":{"tf":1.0},"484":{"tf":1.0}}}},"m":{"df":1,"docs":{"227":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"141":{"tf":1.0},"173":{"tf":1.0},"201":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"294":{"tf":1.0},"317":{"tf":1.0},"346":{"tf":1.0},"410":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":7,"docs":{"155":{"tf":1.4142135623730951},"195":{"tf":1.0},"313":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"48":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"227":{"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":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"227":{"tf":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":{"227":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"482":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}},"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":{"369":{"tf":1.0}}}}}}},"i":{"df":2,"docs":{"232":{"tf":1.0},"266":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":85,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"25":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"3":{"tf":1.0},"302":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"363":{"tf":1.0},"371":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"427":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"508":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.23606797749979},"87":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":5,"docs":{"350":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"77":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"221":{"tf":1.0},"309":{"tf":1.0},"93":{"tf":1.0}}},"f":{"a":{"c":{"df":8,"docs":{"105":{"tf":1.0},"199":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"306":{"tf":1.4142135623730951},"318":{"tf":1.0},"331":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"312":{"tf":1.0},"380":{"tf":1.0},"402":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"386":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}}}},"v":{"c":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"?":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"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":9,"docs":{"212":{"tf":1.4142135623730951},"274":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"89":{"tf":3.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":2,"docs":{"222":{"tf":1.0},"405":{"tf":2.0}},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"27":{"tf":2.0},"355":{"tf":1.4142135623730951},"93":{"tf":3.3166247903554}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":2,"docs":{"27":{"tf":1.4142135623730951},"34":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":29,"docs":{"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"192":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":3.605551275463989},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"261":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"367":{"tf":1.0},"414":{"tf":1.4142135623730951},"416":{"tf":1.0},"454":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":2.6457513110645907},"493":{"tf":1.0},"56":{"tf":2.8284271247461903},"67":{"tf":2.0},"82":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"414":{"tf":1.7320508075688772},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}}},"df":1,"docs":{"13":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"159":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"448":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":14,"docs":{"229":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"287":{"tf":1.0},"324":{"tf":1.4142135623730951},"331":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"430":{"tf":1.4142135623730951},"489":{"tf":1.7320508075688772},"492":{"tf":1.0},"504":{"tf":1.0},"77":{"tf":1.7320508075688772},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"367":{"tf":1.0},"68":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":{"(":{"9":{"4":{"6":{"_":{"7":{"1":{"3":{"_":{"6":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}}}}}},"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"1":{"6":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"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":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{">":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"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":{"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"155":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":2.0},"207":{"tf":1.0},"216":{"tf":1.0},"408":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"e":{"1":{"df":1,"docs":{"408":{"tf":1.0}}},"2":{"df":1,"docs":{"408":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"408":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"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":0,"docs":{},"o":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":19,"docs":{"149":{"tf":2.0},"152":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"195":{"tf":1.0},"232":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"395":{"tf":1.0},"402":{"tf":1.0}},"|":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"418":{"tf":1.4142135623730951},"472":{"tf":1.0},"478":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"386":{"tf":1.0},"402":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"499":{"tf":1.0}}}},"df":0,"docs":{}}},"df":50,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"296":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"322":{"tf":1.0},"329":{"tf":1.4142135623730951},"354":{"tf":1.0},"363":{"tf":2.0},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.7320508075688772},"386":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"431":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"471":{"tf":1.0},"482":{"tf":1.0},"505":{"tf":1.4142135623730951},"53":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.4142135623730951}},"n":{"df":6,"docs":{"171":{"tf":1.0},"199":{"tf":1.0},"245":{"tf":1.0},"380":{"tf":1.0},"428":{"tf":1.0},"81":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"499":{"tf":1.0},"508":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"149":{"tf":1.0},"154":{"tf":1.4142135623730951},"200":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"329":{"tf":1.0},"40":{"tf":1.0},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"k":{"df":7,"docs":{"155":{"tf":1.0},"245":{"tf":1.0},"415":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}}}}},"b":{"df":1,"docs":{"52":{"tf":1.0}}},"d":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"284":{"tf":1.0},"349":{"tf":1.0}}},"df":24,"docs":{"204":{"tf":1.4142135623730951},"212":{"tf":2.0},"229":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"261":{"tf":1.0},"266":{"tf":1.7320508075688772},"27":{"tf":1.0},"284":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0},"355":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":1.4142135623730951},"459":{"tf":2.0},"49":{"tf":1.0},"56":{"tf":2.0},"77":{"tf":2.6457513110645907},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"88":{"tf":2.449489742783178},"90":{"tf":2.6457513110645907}},"e":{"a":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}}}}},"df":6,"docs":{"149":{"tf":1.0},"208":{"tf":1.4142135623730951},"406":{"tf":1.0},"489":{"tf":1.0},"508":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"312":{"tf":1.0},"427":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"150":{"tf":1.0},"222":{"tf":1.0},"230":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"501":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"472":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"310":{"tf":1.0}}}}},"n":{"d":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"5":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"df":19,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"172":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"229":{"tf":1.0},"340":{"tf":1.0},"351":{"tf":1.0},"430":{"tf":1.0},"470":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"126":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"229":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"413":{"tf":1.0},"503":{"tf":1.0},"78":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":26,"docs":{"109":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"410":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"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":{"_":{"a":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"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":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":34,"docs":{"111":{"tf":1.0},"122":{"tf":1.4142135623730951},"13":{"tf":1.0},"131":{"tf":2.6457513110645907},"141":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"214":{"tf":2.0},"220":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.0},"293":{"tf":1.4142135623730951},"306":{"tf":2.0},"309":{"tf":1.0},"316":{"tf":1.0},"359":{"tf":1.0},"378":{"tf":1.0},"386":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"496":{"tf":2.23606797749979},"80":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":4,"docs":{"290":{"tf":1.0},"388":{"tf":1.0},"418":{"tf":1.0},"508":{"tf":1.0}}}},"t":{"'":{"df":10,"docs":{"116":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"226":{"tf":1.4142135623730951},"287":{"tf":1.0},"451":{"tf":1.0},"486":{"tf":1.0},"504":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{},"’":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"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":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":7,"docs":{"2":{"tf":1.0},"232":{"tf":1.0},"306":{"tf":1.0},"352":{"tf":1.0},"397":{"tf":1.0},"460":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"56":{"tf":1.0},"68":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":11,"docs":{"116":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.0},"290":{"tf":1.0},"297":{"tf":1.4142135623730951},"322":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"228":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"313":{"tf":2.23606797749979},"371":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}}},"y":{"'":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"458":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0},"56":{"tf":1.0}}}},"r":{"df":8,"docs":{"282":{"tf":1.0},"345":{"tf":1.0},"366":{"tf":1.0},"458":{"tf":1.0},"505":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"112":{"tf":1.0},"135":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0}},"g":{"df":16,"docs":{"142":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"240":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"454":{"tf":3.605551275463989},"457":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"81":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"k":{"df":6,"docs":{"306":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"89":{"tf":1.0}}}},"r":{"d":{"df":8,"docs":{"244":{"tf":1.0},"253":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"31":{"tf":1.0},"418":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}}}}}},"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":{"506":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"228":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"x":{"df":2,"docs":{"229":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"0":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"506":{"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":{},"e":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"228":{"tf":1.0}}}}}}},"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":{},"t":{"df":1,"docs":{"229":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":26,"docs":{"11":{"tf":1.0},"112":{"tf":1.4142135623730951},"144":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"204":{"tf":1.0},"221":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"274":{"tf":1.0},"305":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"336":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"381":{"tf":1.0},"414":{"tf":1.0},"423":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"466":{"tf":1.0},"491":{"tf":1.0},"56":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"118":{"tf":1.0},"297":{"tf":1.4142135623730951},"313":{"tf":1.0},"372":{"tf":1.0}},"t":{"df":4,"docs":{"204":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0},"71":{"tf":1.4142135623730951}}}}},"s":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"135":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":19,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"124":{"tf":1.0},"172":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.0},"274":{"tf":1.7320508075688772},"309":{"tf":1.0},"323":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"419":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":4,"docs":{"183":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"54":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":2.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":26,"docs":{"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"137":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.7320508075688772},"318":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"371":{"tf":1.0},"423":{"tf":1.0},"431":{"tf":1.0},"472":{"tf":1.0},"56":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"94":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"115":{"tf":1.0},"180":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"432":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"426":{"tf":1.0}}}}}},"u":{"df":12,"docs":{"260":{"tf":1.4142135623730951},"313":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"368":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"398":{"tf":1.0},"414":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"494":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"428":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":3,"docs":{"2":{"tf":1.0},"278":{"tf":1.0},"396":{"tf":1.0}},"e":{"df":2,"docs":{"386":{"tf":1.0},"469":{"tf":1.0}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"324":{"tf":1.0},"419":{"tf":1.0},"429":{"tf":1.4142135623730951},"430":{"tf":2.0},"431":{"tf":1.0},"432":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"431":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"`":{"]":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":76,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"145":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.4142135623730951},"156":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"20":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.7320508075688772},"234":{"tf":1.0},"238":{"tf":1.0},"255":{"tf":1.0},"272":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.449489742783178},"302":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.4142135623730951},"313":{"tf":2.449489742783178},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"377":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"386":{"tf":1.0},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"405":{"tf":4.0},"409":{"tf":1.0},"413":{"tf":2.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"428":{"tf":1.4142135623730951},"431":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"489":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"68":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"413":{"tf":1.0},"414":{"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"416":{"tf":1.0}}}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"413":{"tf":2.449489742783178},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"416":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"73":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"333":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"214":{"tf":1.0},"333":{"tf":1.0},"344":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":30,"docs":{"111":{"tf":1.0},"135":{"tf":1.0},"201":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":2.6457513110645907},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"212":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"214":{"tf":3.4641016151377544},"333":{"tf":1.0},"344":{"tf":1.0},"410":{"tf":2.0},"411":{"tf":2.8284271247461903},"412":{"tf":1.7320508075688772},"413":{"tf":3.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"416":{"tf":3.7416573867739413},"417":{"tf":1.0},"418":{"tf":1.7320508075688772},"491":{"tf":1.0},"73":{"tf":1.0},"95":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"73":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"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":{"(":{"3":{"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":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"212":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"r":{"df":1,"docs":{"205":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"é":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"450":{"tf":1.4142135623730951}}}},"df":11,"docs":{"103":{"tf":1.0},"110":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":2.0},"221":{"tf":2.0},"25":{"tf":2.449489742783178},"411":{"tf":1.0}},"s":{"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"30":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":14,"docs":{"101":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"16":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"274":{"tf":1.0},"350":{"tf":1.4142135623730951},"363":{"tf":1.0},"368":{"tf":1.0},"413":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"100":{"tf":1.0},"205":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"457":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.4142135623730951},"172":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"235":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0},"310":{"tf":1.0},"373":{"tf":1.0},"457":{"tf":1.0},"492":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":1.0},"250":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.4142135623730951}}}}}},":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"100":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"304":{"tf":1.0},"508":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"508":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"212":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":16,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"135":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.4142135623730951},"244":{"tf":1.0},"3":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"402":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"146":{"tf":1.0}}},"df":19,"docs":{"125":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.7320508075688772},"166":{"tf":1.0},"169":{"tf":2.0},"190":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"26":{"tf":1.0},"263":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"378":{"tf":1.0},"45":{"tf":1.0},"5":{"tf":1.0}}}},"p":{"df":12,"docs":{"135":{"tf":1.4142135623730951},"250":{"tf":1.0},"302":{"tf":1.0},"305":{"tf":1.0},"33":{"tf":1.4142135623730951},"337":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"71":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"435":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"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":{"33":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"413":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"320":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"355":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":2,"docs":{"229":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"229":{"tf":2.0},"506":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"468":{"tf":1.0},"471":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"265":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"240":{"tf":1.0},"464":{"tf":1.0},"505":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"109":{"tf":1.0},"172":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":7,"docs":{"251":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":1,"docs":{"211":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"0":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{}}},"s":{">":{">":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"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":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"241":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"274":{"tf":2.8284271247461903},"279":{"tf":1.4142135623730951},"77":{"tf":1.0},"84":{"tf":2.0},"86":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"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":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"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":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"df":0,"docs":{},"}":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"71":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"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":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":3,"docs":{"74":{"tf":1.0},"75":{"tf":1.0},"76":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":16,"docs":{"110":{"tf":1.0},"119":{"tf":2.0},"135":{"tf":1.0},"142":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"3":{"tf":1.0},"71":{"tf":2.6457513110645907},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"y":{"df":2,"docs":{"279":{"tf":1.0},"309":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"508":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"459":{"tf":1.0}},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":1,"docs":{"459":{"tf":1.0}}}}},"df":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":{"137":{"tf":1.7320508075688772},"257":{"tf":1.7320508075688772},"283":{"tf":1.0},"349":{"tf":1.0},"433":{"tf":1.0},"459":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"78":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"74":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"461":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"249":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"247":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"257":{"tf":2.23606797749979}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"247":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"!":{"(":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"487":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"b":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}}}}},"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":0,"docs":{},"y":{"(":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":{}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"508":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}},"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":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"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":{}}}},"k":{"df":9,"docs":{"171":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"29":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":1.0},"40":{"tf":1.0},"415":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"303":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"305":{"tf":1.0},"9":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"306":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"229":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":15,"docs":{"13":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"226":{"tf":1.0},"227":{"tf":3.3166247903554},"229":{"tf":4.47213595499958},"230":{"tf":2.449489742783178},"231":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":2.6457513110645907},"503":{"tf":1.0},"504":{"tf":1.7320508075688772},"505":{"tf":2.23606797749979},"506":{"tf":2.23606797749979},"507":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"'":{",":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.7320508075688772}}}},"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":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"(":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"s":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"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":2,"docs":{"112":{"tf":1.0},"416":{"tf":1.0}}},"df":119,"docs":{"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"232":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":1.4142135623730951},"243":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"287":{"tf":1.0},"305":{"tf":2.449489742783178},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"322":{"tf":4.0},"323":{"tf":2.0},"324":{"tf":2.6457513110645907},"325":{"tf":1.0},"326":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":2.0},"329":{"tf":2.449489742783178},"330":{"tf":1.4142135623730951},"331":{"tf":1.4142135623730951},"338":{"tf":1.0},"350":{"tf":2.6457513110645907},"351":{"tf":2.449489742783178},"355":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"361":{"tf":2.0},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"367":{"tf":2.6457513110645907},"368":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"377":{"tf":1.4142135623730951},"378":{"tf":1.0},"38":{"tf":1.0},"381":{"tf":1.4142135623730951},"385":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":2.0},"401":{"tf":1.0},"402":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"416":{"tf":1.4142135623730951},"417":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":2.23606797749979},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":2.449489742783178},"438":{"tf":2.449489742783178},"442":{"tf":1.0},"446":{"tf":1.0},"448":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":3.1622776601683795},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"467":{"tf":1.7320508075688772},"470":{"tf":1.0},"482":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"507":{"tf":1.0},"56":{"tf":2.0},"62":{"tf":1.0},"67":{"tf":2.8284271247461903},"68":{"tf":2.23606797749979},"71":{"tf":2.0},"77":{"tf":2.0},"79":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"84":{"tf":3.0},"85":{"tf":2.0},"87":{"tf":2.0},"88":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"438":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"396":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"287":{"tf":1.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.7320508075688772},"505":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":21,"docs":{"204":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"241":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"347":{"tf":1.4142135623730951},"35":{"tf":1.0},"433":{"tf":1.0},"448":{"tf":1.7320508075688772},"45":{"tf":1.0},"450":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":2.0},"93":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"489":{"tf":1.0}}}}}}}},"df":4,"docs":{"330":{"tf":1.4142135623730951},"489":{"tf":1.0},"491":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"489":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":5,"docs":{"420":{"tf":1.4142135623730951},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"78":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"240":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":3.0},"81":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"135":{"tf":1.0},"15":{"tf":2.0},"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.4142135623730951},"451":{"tf":2.0},"454":{"tf":4.242640687119285},"455":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"325":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"293":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"418":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"261":{"tf":1.4142135623730951},"402":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"105":{"tf":1.0},"195":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}}}}}}}},"df":12,"docs":{"131":{"tf":1.0},"135":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"313":{"tf":1.0},"373":{"tf":1.0},"396":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"500":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"290":{"tf":1.0},"310":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"471":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"309":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"163":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.0},"322":{"tf":1.0},"449":{"tf":1.0},"475":{"tf":1.0}}}}},"y":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":7,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"325":{"tf":1.0},"423":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"482":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"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":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"324":{"tf":1.0},"422":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"331":{"tf":1.0},"387":{"tf":1.7320508075688772},"393":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"289":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":15,"docs":{"181":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"269":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"432":{"tf":1.0},"487":{"tf":1.0},"504":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"152":{"tf":1.0},"305":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"430":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":54,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"117":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"296":{"tf":1.4142135623730951},"306":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.0},"402":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.0},"450":{"tf":1.0},"457":{"tf":1.4142135623730951},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"492":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"98":{"tf":1.0}}}},"x":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"(":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{")":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"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":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":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"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":1,"docs":{"459":{"tf":1.0}},"q":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"457":{"tf":1.0},"459":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"459":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"455":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"156":{"tf":1.0},"44":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}},"q":{"df":3,"docs":{"455":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.0}}}}},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"y":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"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":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"269":{"tf":1.7320508075688772}},"p":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"53":{"tf":1.0}}},"df":176,"docs":{"101":{"tf":2.23606797749979},"105":{"tf":3.0},"106":{"tf":2.0},"112":{"tf":1.4142135623730951},"124":{"tf":1.0},"13":{"tf":1.4142135623730951},"135":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"153":{"tf":2.0},"178":{"tf":1.4142135623730951},"18":{"tf":1.0},"186":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"244":{"tf":1.0},"249":{"tf":1.7320508075688772},"251":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"27":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":2.0},"291":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":2.23606797749979},"297":{"tf":2.449489742783178},"299":{"tf":1.0},"30":{"tf":2.0},"300":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"309":{"tf":3.4641016151377544},"310":{"tf":4.0},"312":{"tf":1.0},"313":{"tf":5.5677643628300215},"319":{"tf":2.8284271247461903},"32":{"tf":2.449489742783178},"324":{"tf":2.0},"325":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.0},"332":{"tf":1.0},"333":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.0},"337":{"tf":1.7320508075688772},"338":{"tf":1.0},"339":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"340":{"tf":2.6457513110645907},"341":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":2.449489742783178},"367":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.0},"371":{"tf":2.0},"372":{"tf":2.8284271247461903},"373":{"tf":1.7320508075688772},"374":{"tf":2.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"377":{"tf":2.8284271247461903},"378":{"tf":1.0},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"386":{"tf":1.4142135623730951},"390":{"tf":2.449489742783178},"395":{"tf":2.23606797749979},"396":{"tf":2.23606797749979},"397":{"tf":2.8284271247461903},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.7320508075688772},"402":{"tf":2.23606797749979},"406":{"tf":1.7320508075688772},"408":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":2.8284271247461903},"424":{"tf":2.6457513110645907},"427":{"tf":1.7320508075688772},"428":{"tf":2.449489742783178},"430":{"tf":2.23606797749979},"431":{"tf":2.449489742783178},"432":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":2.449489742783178},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.23606797749979},"475":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":2.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.0},"482":{"tf":3.3166247903554},"483":{"tf":1.0},"484":{"tf":1.0},"490":{"tf":1.0},"496":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":3.872983346207417},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.6457513110645907},"71":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178},"84":{"tf":3.872983346207417},"85":{"tf":2.0},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"93":{"tf":2.23606797749979},"95":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}},"e":{">":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"313":{"tf":2.449489742783178}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"56":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"450":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"107":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":4,"docs":{"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0}}}}},"i":{"c":{"df":9,"docs":{"109":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"226":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"489":{"tf":1.0},"52":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}}}},"{":{"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"284":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"1":{"6":{"df":1,"docs":{"330":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":6,"docs":{"27":{"tf":1.0},"297":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"330":{"tf":1.4142135623730951},"387":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"226":{"tf":3.3166247903554},"227":{"tf":1.7320508075688772},"229":{"tf":4.242640687119285},"330":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":3.3166247903554}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}},"df":1,"docs":{"88":{"tf":2.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"110":{"tf":1.0},"363":{"tf":1.0},"68":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"383":{"tf":1.0},"488":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}},"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":3,"docs":{"313":{"tf":1.4142135623730951},"423":{"tf":2.0},"428":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"422":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"r":{"df":5,"docs":{"150":{"tf":1.0},"194":{"tf":1.0},"313":{"tf":1.0},"396":{"tf":1.0},"427":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"347":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":14,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"156":{"tf":1.0},"229":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"338":{"tf":1.0},"433":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"190":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"420":{"tf":1.0},"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"508":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"69":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"244":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"156":{"tf":1.0},"305":{"tf":1.0},"432":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"291":{"tf":1.4142135623730951},"300":{"tf":1.0},"434":{"tf":1.0}},"e":{"d":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":2,"docs":{"261":{"tf":1.0},"291":{"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":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"305":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"18":{"tf":1.0},"475":{"tf":1.0},"5":{"tf":1.0}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"318":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"175":{"tf":1.0},"363":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"!":{"(":{"\"":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"175":{"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":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"274":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"243":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"59":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}},"df":12,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":2.449489742783178},"34":{"tf":1.0},"396":{"tf":1.4142135623730951},"40":{"tf":3.0},"41":{"tf":2.0},"420":{"tf":1.0},"45":{"tf":1.0},"50":{"tf":2.8284271247461903}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"274":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":2.23606797749979},"328":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"328":{"tf":1.7320508075688772},"428":{"tf":1.0},"432":{"tf":1.0}}}}}}}}},"t":{"df":4,"docs":{"12":{"tf":1.0},"293":{"tf":1.4142135623730951},"417":{"tf":1.0},"496":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"318":{"tf":1.0}}}}}},"x":{"df":1,"docs":{"30":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"245":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":5,"docs":{"226":{"tf":1.4142135623730951},"325":{"tf":1.0},"40":{"tf":1.7320508075688772},"50":{"tf":2.0},"68":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"124":{"tf":1.0},"229":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"401":{"tf":1.4142135623730951},"458":{"tf":1.0},"5":{"tf":1.0},"504":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"180":{"tf":1.0},"257":{"tf":1.0},"306":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"438":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"261":{"tf":1.0},"454":{"tf":1.0}}}},"df":1,"docs":{"454":{"tf":2.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"195":{"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":2,"docs":{"33":{"tf":1.0},"472":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":2.0}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"5":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"248":{"tf":2.0},"250":{"tf":1.0},"253":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"153":{"tf":2.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"295":{"tf":1.0},"324":{"tf":1.0},"330":{"tf":1.0},"471":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"231":{"tf":1.0},"313":{"tf":1.0},"458":{"tf":1.7320508075688772},"489":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":2.23606797749979},"330":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"230":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"471":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"380":{"tf":2.0},"381":{"tf":1.7320508075688772},"390":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"405":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"471":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"391":{"tf":1.0},"392":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.0},"245":{"tf":1.0},"29":{"tf":1.0},"330":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"501":{"tf":1.0},"505":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"357":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"396":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"416":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"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":5,"docs":{"229":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":13,"docs":{"265":{"tf":1.0},"278":{"tf":1.0},"331":{"tf":1.0},"342":{"tf":1.0},"462":{"tf":1.0},"508":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"183":{"tf":1.0}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":53,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"131":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":2.449489742783178},"184":{"tf":1.0},"188":{"tf":2.449489742783178},"190":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.8284271247461903},"230":{"tf":2.0},"232":{"tf":1.4142135623730951},"239":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"359":{"tf":1.7320508075688772},"363":{"tf":1.0},"368":{"tf":1.0},"374":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"468":{"tf":1.4142135623730951},"472":{"tf":1.0},"484":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.0},"508":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"226":{"tf":2.449489742783178}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":30,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"148":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"229":{"tf":1.0},"282":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"345":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"386":{"tf":1.0},"416":{"tf":1.0},"418":{"tf":1.0},"471":{"tf":1.0},"5":{"tf":1.0},"61":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"88":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"313":{"tf":1.0}}},"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":2,"docs":{"305":{"tf":1.0},"313":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"197":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"303":{"tf":1.0},"305":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":2.8284271247461903},"364":{"tf":1.0},"45":{"tf":1.0},"471":{"tf":1.4142135623730951},"86":{"tf":2.449489742783178},"87":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"313":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"p":{"df":1,"docs":{"86":{"tf":1.0}},"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":{"86":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"72":{"tf":2.0}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"89":{"tf":1.4142135623730951}},"s":{">":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"c":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"89":{"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":1,"docs":{"89":{"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":3,"docs":{"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"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":{"390":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"288":{"tf":1.0},"318":{"tf":1.0},"371":{"tf":1.0},"376":{"tf":1.0},"423":{"tf":1.4142135623730951},"427":{"tf":2.23606797749979},"432":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"167":{"tf":1.4142135623730951}}}}}},"i":{"df":18,"docs":{"243":{"tf":1.0},"249":{"tf":2.0},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"347":{"tf":1.0},"350":{"tf":1.7320508075688772},"351":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":2.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"508":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"l":{"'":{"df":1,"docs":{"116":{"tf":1.0}}},"df":13,"docs":{"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":2.6457513110645907},"118":{"tf":2.449489742783178},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.0},"52":{"tf":1.0},"95":{"tf":1.0}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"24":{"tf":1.0},"38":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"117":{"tf":1.0},"144":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"274":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.7320508075688772},"8":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":249,"docs":{"0":{"tf":1.0},"100":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"109":{"tf":2.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":2.0},"13":{"tf":1.4142135623730951},"135":{"tf":2.449489742783178},"136":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"188":{"tf":2.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.0},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"203":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":2.449489742783178},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.23606797749979},"22":{"tf":1.4142135623730951},"220":{"tf":2.449489742783178},"221":{"tf":3.0},"222":{"tf":1.4142135623730951},"226":{"tf":4.358898943540674},"227":{"tf":3.605551275463989},"229":{"tf":4.898979485566356},"230":{"tf":2.23606797749979},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"244":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.0},"257":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"261":{"tf":2.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.7320508075688772},"269":{"tf":2.0},"27":{"tf":1.0},"274":{"tf":3.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"289":{"tf":2.6457513110645907},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772},"312":{"tf":1.7320508075688772},"313":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":2.0},"32":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.7320508075688772},"331":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":2.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":2.23606797749979},"351":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"363":{"tf":2.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.23606797749979},"374":{"tf":1.0},"378":{"tf":1.7320508075688772},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"393":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.0},"398":{"tf":2.0},"4":{"tf":1.0},"401":{"tf":1.0},"405":{"tf":1.0},"408":{"tf":2.0},"413":{"tf":1.0},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.4142135623730951},"424":{"tf":1.7320508075688772},"428":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"451":{"tf":1.7320508075688772},"454":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.7320508075688772},"478":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":2.0},"484":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.4142135623730951},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"508":{"tf":2.6457513110645907},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":2.0},"59":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":2.449489742783178},"75":{"tf":2.6457513110645907},"76":{"tf":2.449489742783178},"77":{"tf":3.605551275463989},"78":{"tf":3.1622776601683795},"79":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"84":{"tf":3.7416573867739413},"85":{"tf":2.449489742783178},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"89":{"tf":1.7320508075688772},"90":{"tf":3.0},"92":{"tf":2.0},"93":{"tf":2.449489742783178},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"98":{"tf":2.449489742783178},"99":{"tf":2.0}},"e":{"_":{"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"352":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"352":{"tf":1.4142135623730951}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"352":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"124":{"tf":1.0},"142":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"349":{"tf":1.0}}}}},"r":{"'":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":107,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":3.3166247903554},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"169":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"218":{"tf":2.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":2.6457513110645907},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.0},"240":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"350":{"tf":2.23606797749979},"351":{"tf":1.0},"354":{"tf":1.4142135623730951},"377":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":2.23606797749979},"381":{"tf":2.0},"382":{"tf":1.0},"386":{"tf":2.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":2.23606797749979},"401":{"tf":1.0},"402":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":2.23606797749979},"414":{"tf":2.0},"416":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"430":{"tf":1.0},"44":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"452":{"tf":2.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":2.449489742783178},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":2.449489742783178},"468":{"tf":1.0},"472":{"tf":1.7320508075688772},"477":{"tf":1.0},"48":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"482":{"tf":1.7320508075688772},"485":{"tf":2.449489742783178},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":2.23606797749979},"489":{"tf":2.23606797749979},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"500":{"tf":1.0},"508":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":2.23606797749979},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"i":{"df":0,"docs":{},"z":{"df":4,"docs":{"229":{"tf":1.0},"231":{"tf":1.4142135623730951},"431":{"tf":1.0},"76":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"_":{"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":11,"docs":{"152":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"415":{"tf":1.0},"424":{"tf":1.0},"451":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"482":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"508":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"160":{"tf":1.0},"274":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"356":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"470":{"tf":1.0},"77":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"318":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"2":{"df":6,"docs":{"340":{"tf":1.0},"508":{"tf":1.0},"72":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":1.7320508075688772},"356":{"tf":2.6457513110645907}},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"428":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"426":{"tf":1.4142135623730951},"428":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"426":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"116":{"tf":1.7320508075688772},"119":{"tf":1.0},"14":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"198":{"tf":1.0},"200":{"tf":2.449489742783178},"207":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":2.0},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"331":{"tf":2.449489742783178},"343":{"tf":1.0},"426":{"tf":2.449489742783178},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"438":{"tf":1.0},"478":{"tf":1.0},"482":{"tf":1.0},"49":{"tf":1.4142135623730951},"500":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":62,"docs":{"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"193":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":2.23606797749979},"206":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":2.6457513110645907},"227":{"tf":1.7320508075688772},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":1.0},"318":{"tf":2.6457513110645907},"32":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.7320508075688772},"324":{"tf":2.23606797749979},"325":{"tf":2.0},"327":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.0},"331":{"tf":1.4142135623730951},"337":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":2.0},"355":{"tf":1.4142135623730951},"356":{"tf":2.23606797749979},"368":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"408":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"422":{"tf":1.0},"423":{"tf":2.449489742783178},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.7320508075688772},"431":{"tf":2.6457513110645907},"440":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":4.358898943540674},"462":{"tf":1.7320508075688772},"482":{"tf":2.449489742783178},"505":{"tf":1.0},"56":{"tf":1.0},"95":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"o":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"423":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"359":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"126":{"tf":1.0},"154":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"350":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"413":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":3,"docs":{"297":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}},"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"297":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"297":{"tf":1.0}}},"c":{"df":1,"docs":{"297":{"tf":1.0}}},"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"297":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":2.0},"296":{"tf":1.0},"297":{"tf":2.449489742783178},"298":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.7320508075688772},"370":{"tf":1.0},"372":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"40":{"tf":2.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.0},"430":{"tf":1.4142135623730951},"434":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":1.0},"489":{"tf":1.0},"50":{"tf":2.6457513110645907},"98":{"tf":1.0}},"e":{"(":{"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":{"297":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"f":{"df":1,"docs":{"297":{"tf":1.0}}},"g":{"df":1,"docs":{"297":{"tf":1.0}}}}},"t":{"df":1,"docs":{"437":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":10,"docs":{"138":{"tf":1.0},"199":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.7320508075688772},"318":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"499":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":2,"docs":{"37":{"tf":1.0},"423":{"tf":1.7320508075688772}},"e":{"c":{"'":{"df":1,"docs":{"328":{"tf":1.0}}},"<":{"_":{"df":1,"docs":{"199":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"431":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"428":{"tf":1.0}}}}},"t":{"df":4,"docs":{"35":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"156":{"tf":1.0},"199":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"251":{"tf":1.0},"268":{"tf":1.0},"326":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"35":{"tf":1.0},"428":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"281":{"tf":1.0},"366":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"222":{"tf":1.0},"244":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"13":{"tf":1.0},"135":{"tf":1.0},"199":{"tf":1.0},"366":{"tf":1.0},"452":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}},"f":{"df":3,"docs":{"226":{"tf":1.0},"228":{"tf":1.0},"313":{"tf":1.4142135623730951}},"i":{"df":10,"docs":{"148":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"196":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"304":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":77,"docs":{"105":{"tf":2.23606797749979},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"117":{"tf":1.0},"12":{"tf":2.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"152":{"tf":1.7320508075688772},"153":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":3.7416573867739413},"184":{"tf":1.0},"185":{"tf":3.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":3.3166247903554},"189":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":3.7416573867739413},"193":{"tf":4.0},"194":{"tf":4.69041575982343},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"197":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"229":{"tf":1.0},"25":{"tf":1.0},"260":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":3.0},"285":{"tf":3.1622776601683795},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.4142135623730951},"319":{"tf":1.0},"322":{"tf":1.4142135623730951},"337":{"tf":1.0},"372":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"426":{"tf":1.0},"45":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"464":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":35,"docs":{"120":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"241":{"tf":1.0},"247":{"tf":1.0},"255":{"tf":1.0},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"325":{"tf":1.0},"349":{"tf":1.4142135623730951},"38":{"tf":1.0},"428":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"448":{"tf":1.4142135623730951},"460":{"tf":2.6457513110645907},"475":{"tf":1.0},"68":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"27":{"tf":1.0},"457":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":23,"docs":{"240":{"tf":1.0},"244":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.0},"328":{"tf":1.0},"330":{"tf":2.449489742783178},"331":{"tf":1.0},"419":{"tf":2.6457513110645907},"420":{"tf":1.0},"421":{"tf":1.7320508075688772},"422":{"tf":2.0},"423":{"tf":2.23606797749979},"424":{"tf":1.7320508075688772},"425":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":2.449489742783178},"428":{"tf":2.8284271247461903},"429":{"tf":1.7320508075688772},"430":{"tf":2.0},"431":{"tf":3.3166247903554},"432":{"tf":2.449489742783178},"81":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"274":{"tf":1.0},"422":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"306":{"tf":1.0},"344":{"tf":1.0},"424":{"tf":1.7320508075688772},"508":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"238":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.0}}}}}}}},"w":{".":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"475":{"tf":1.0}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"174":{"tf":1.0}},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"183":{"tf":1.4142135623730951},"52":{"tf":1.0},"56":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"173":{"tf":1.0}}},"df":7,"docs":{"171":{"tf":2.6457513110645907},"172":{"tf":1.0},"173":{"tf":2.23606797749979},"174":{"tf":2.449489742783178},"175":{"tf":2.449489742783178},"176":{"tf":1.7320508075688772},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"174":{"tf":1.0},"175":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"431":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":44,"docs":{"100":{"tf":1.0},"130":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.4142135623730951},"210":{"tf":1.0},"221":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"246":{"tf":1.0},"248":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"294":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"318":{"tf":1.0},"330":{"tf":1.0},"350":{"tf":1.0},"363":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"386":{"tf":1.0},"408":{"tf":1.0},"428":{"tf":1.7320508075688772},"43":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"466":{"tf":1.0},"469":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}},"n":{"df":3,"docs":{"253":{"tf":1.0},"351":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"507":{"tf":1.0},"508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"458":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"210":{"tf":1.4142135623730951},"501":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":67,"docs":{"1":{"tf":1.0},"119":{"tf":1.4142135623730951},"125":{"tf":1.0},"130":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"218":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"274":{"tf":2.0},"276":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"33":{"tf":1.0},"356":{"tf":1.0},"381":{"tf":1.0},"394":{"tf":1.4142135623730951},"402":{"tf":1.0},"416":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"43":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"48":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"489":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.4142135623730951},"86":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"d":{"df":4,"docs":{"200":{"tf":2.6457513110645907},"306":{"tf":1.0},"431":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":10,"docs":{"156":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.4142135623730951},"257":{"tf":1.0},"308":{"tf":1.0},"436":{"tf":1.0},"452":{"tf":1.0},"495":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"r":{"df":10,"docs":{"199":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"3":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"424":{"tf":1.0},"471":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"352":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":4,"docs":{"116":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"196":{"tf":1.0},"478":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"182":{"tf":1.0},"183":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":35,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"137":{"tf":1.0},"145":{"tf":1.4142135623730951},"192":{"tf":1.0},"225":{"tf":1.0},"26":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"293":{"tf":1.0},"329":{"tf":1.0},"346":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"430":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"504":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"296":{"tf":1.0},"475":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"226":{"tf":1.4142135623730951},"351":{"tf":1.0},"372":{"tf":1.0},"482":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"457":{"tf":1.0},"494":{"tf":1.0},"500":{"tf":1.0},"508":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":6,"docs":{"255":{"tf":1.0},"269":{"tf":1.4142135623730951},"412":{"tf":1.0},"414":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":2,"docs":{"261":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"245":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"413":{"tf":1.4142135623730951},"487":{"tf":1.0},"493":{"tf":1.0},"52":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"193":{"tf":1.0},"313":{"tf":1.4142135623730951},"413":{"tf":1.0},"94":{"tf":1.0}},"s":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"350":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"132":{"tf":1.0},"25":{"tf":1.0},"322":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.4142135623730951},"420":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"431":{"tf":1.0},"432":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"69":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"135":{"tf":1.0},"318":{"tf":1.0},"458":{"tf":1.4142135623730951},"482":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"331":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{":":{"4":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"349":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.0}}}},"n":{"df":2,"docs":{"413":{"tf":1.0},"415":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":7,"docs":{"113":{"tf":1.0},"212":{"tf":1.4142135623730951},"240":{"tf":1.0},"287":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"81":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"245":{"tf":1.0},"247":{"tf":1.0}}},"h":{"df":3,"docs":{"274":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"g":{"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":{},"u":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"i":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"3":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"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":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"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":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"489":{"tf":1.0}}}}}},"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"_":{"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":1,"docs":{"131":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"231":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"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":{"231":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":28,"docs":{"14":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"241":{"tf":1.0},"245":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.4142135623730951},"282":{"tf":1.0},"310":{"tf":1.0},"318":{"tf":1.4142135623730951},"330":{"tf":1.0},"416":{"tf":1.0},"428":{"tf":1.4142135623730951},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"459":{"tf":1.0},"81":{"tf":1.0},"84":{"tf":1.0},"90":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":44,"docs":{"105":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"171":{"tf":1.4142135623730951},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"290":{"tf":1.0},"298":{"tf":1.0},"312":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"363":{"tf":1.4142135623730951},"366":{"tf":1.0},"368":{"tf":1.0},"386":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"392":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"475":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"7":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":18,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"153":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"297":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"226":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"k":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"169":{"tf":1.0},"475":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"110":{"tf":1.4142135623730951},"119":{"tf":1.0},"120":{"tf":1.0},"130":{"tf":1.4142135623730951},"145":{"tf":1.0},"148":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"261":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"314":{"tf":1.0},"322":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.4142135623730951},"38":{"tf":1.0},"402":{"tf":1.0},"418":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"470":{"tf":1.0},"478":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"54":{"tf":1.0},"77":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"l":{"d":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"0":{"\\":{"df":0,"docs":{},"r":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"229":{"tf":1.0},"503":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"229":{"tf":1.4142135623730951},"31":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"313":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"306":{"tf":1.0},"415":{"tf":1.0}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"153":{"tf":1.4142135623730951},"274":{"tf":1.0},"330":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":27,"docs":{"131":{"tf":1.7320508075688772},"167":{"tf":1.0},"17":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":2.449489742783178},"212":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"241":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"320":{"tf":1.0},"331":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"428":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0},"482":{"tf":1.0},"491":{"tf":1.0},"68":{"tf":1.0},"89":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"225":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"254":{"tf":1.0},"299":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"36":{"tf":1.0},"420":{"tf":1.0},"472":{"tf":1.4142135623730951},"475":{"tf":1.7320508075688772},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":2.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.7320508075688772},"483":{"tf":1.0},"484":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"355":{"tf":2.23606797749979},"356":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"!":{"(":{"df":0,"docs":{},"f":{"df":4,"docs":{"289":{"tf":1.4142135623730951},"297":{"tf":2.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"(":{"\"":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":62,"docs":{"100":{"tf":1.0},"112":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"145":{"tf":1.0},"169":{"tf":1.0},"184":{"tf":1.7320508075688772},"205":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":2.0},"231":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"275":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"313":{"tf":1.7320508075688772},"319":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"386":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"415":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"435":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.7320508075688772},"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.0},"508":{"tf":2.0},"509":{"tf":1.0},"56":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":2.0},"98":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"166":{"tf":1.0},"27":{"tf":1.7320508075688772},"56":{"tf":1.0},"93":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"509":{"tf":1.0}}}}}},"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":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"229":{"tf":1.0}},"s":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":20,"docs":{"166":{"tf":1.0},"183":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"306":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.0},"4":{"tf":1.0},"401":{"tf":1.0},"453":{"tf":1.0},"472":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"497":{"tf":1.0},"508":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"296":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"229":{"tf":1.0}}}}},"t":{"df":1,"docs":{"471":{"tf":1.0}}}}},"x":{"df":11,"docs":{"228":{"tf":1.4142135623730951},"229":{"tf":2.8284271247461903},"230":{"tf":1.0},"260":{"tf":1.0},"437":{"tf":1.4142135623730951},"491":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"504":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"373":{"tf":2.0}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":7,"docs":{"144":{"tf":1.0},"181":{"tf":3.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"471":{"tf":1.4142135623730951}}}},"df":4,"docs":{"193":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"311":{"tf":1.0},"53":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":15,"docs":{"199":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"427":{"tf":1.7320508075688772},"428":{"tf":1.0},"430":{"tf":2.0},"431":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"r":{"df":4,"docs":{"100":{"tf":1.0},"504":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"v":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"14":{"tf":1.0},"88":{"tf":1.0}}},"v":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"y":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"z":{"0":{"df":1,"docs":{"319":{"tf":1.0}}},"a":{"df":1,"docs":{"319":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":9,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"200":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.4142135623730951},"333":{"tf":1.0},"482":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"6":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"df":0,"docs":{},"w":{"df":1,"docs":{"229":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"title":{"root":{"1":{".":{"0":{"df":1,"docs":{"294":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":1,"docs":{"191":{"tf":1.0}}},"2":{".":{"0":{"df":1,"docs":{"346":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"197":{"tf":1.0},"311":{"tf":1.0}},"n":{"+":{"1":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"433":{"tf":1.0},"447":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"256":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"261":{"tf":1.0},"354":{"tf":1.0},"415":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":1,"docs":{"14":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":5,"docs":{"448":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0}},"j":{"a":{"c":{"df":1,"docs":{"394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"34":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"312":{"tf":1.0},"398":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}},"n":{"df":14,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"254":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"416":{"tf":1.0},"447":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"495":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"174":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"302":{"tf":1.0},"474":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"365":{"tf":1.0},"407":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"283":{"tf":1.0}}},"df":1,"docs":{"72":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"288":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"315":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"412":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"62":{"tf":1.0},"64":{"tf":1.0}}},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":11,"docs":{"127":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"357":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"96":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"148":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"18":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"df":3,"docs":{"367":{"tf":1.0},"448":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"148":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"123":{"tf":1.0},"14":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0},"382":{"tf":1.0}}},"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":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"419":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"n":{"d":{"df":1,"docs":{"243":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"382":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"271":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"263":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"314":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"390":{"tf":1.4142135623730951},"397":{"tf":1.0},"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"317":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"362":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"127":{"tf":1.0},"128":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"215":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":9,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"378":{"tf":1.0},"408":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}}}}},"df":2,"docs":{"368":{"tf":1.0},"75":{"tf":1.0}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":{"68":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"436":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0},"505":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"106":{"tf":1.0},"113":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"196":{"tf":1.0},"213":{"tf":1.0},"233":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"409":{"tf":1.0},"417":{"tf":1.0},"432":{"tf":1.0},"446":{"tf":1.0},"461":{"tf":1.0},"468":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"496":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"227":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"200":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"502":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"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":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"150":{"tf":1.0},"165":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"485":{"tf":1.0}},"i":{"df":4,"docs":{"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"494":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"110":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"234":{"tf":1.0},"291":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"433":{"tf":1.0},"453":{"tf":1.0},"477":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"134":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"301":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"425":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"8":{"tf":1.0},"91":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"t":{"df":3,"docs":{"287":{"tf":1.0},"45":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"305":{"tf":1.0},"405":{"tf":1.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"368":{"tf":1.0}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"399":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"338":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"r":{"df":11,"docs":{"125":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"151":{"tf":1.0},"365":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"437":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"322":{"tf":1.0},"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"287":{"tf":1.0},"299":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"455":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"497":{"tf":1.0},"509":{"tf":1.0}}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"357":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"306":{"tf":1.0},"56":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"338":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":14,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"185":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"332":{"tf":1.0},"337":{"tf":1.0},"459":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"339":{"tf":1.0},"356":{"tf":1.0},"398":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"150":{"tf":1.0},"312":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"363":{"tf":1.0},"368":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"100":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"410":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"100":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"489":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"234":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"311":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":7,"docs":{"240":{"tf":1.0},"383":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"402":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"387":{"tf":1.0}}}}}}}},"df":1,"docs":{"76":{"tf":1.0}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"248":{"tf":1.0},"498":{"tf":1.0}}}}},"df":1,"docs":{"381":{"tf":1.0}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"208":{"tf":1.0},"221":{"tf":1.4142135623730951},"353":{"tf":1.0},"462":{"tf":1.0},"467":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"221":{"tf":1.0},"489":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"281":{"tf":1.0},"284":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"325":{"tf":1.0},"375":{"tf":1.0},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":11,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.0},"360":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"68":{"tf":1.0},"9":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"156":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"191":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.4142135623730951}}}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"158":{"tf":1.0},"403":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}},"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":3,"docs":{"32":{"tf":1.0},"388":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"221":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"311":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"313":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"507":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"469":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"380":{"tf":1.0},"474":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"503":{"tf":1.0},"504":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"502":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"346":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.4142135623730951},"361":{"tf":1.0},"42":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"358":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"391":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"278":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"157":{"tf":1.0},"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":15,"docs":{"259":{"tf":1.0},"277":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"301":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"437":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"335":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"259":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"400":{"tf":1.0},"474":{"tf":1.0}}}},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"163":{"tf":1.0},"165":{"tf":1.0},"324":{"tf":1.0},"39":{"tf":1.0},"408":{"tf":1.0},"41":{"tf":1.0},"441":{"tf":1.0},"80":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"488":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.0},"255":{"tf":1.0},"314":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"2":{"tf":1.0},"394":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0}}}}}}}},"f":{".":{"a":{".":{"df":0,"docs":{},"q":{"df":1,"docs":{"460":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"q":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"498":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"401":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"431":{"tf":1.0}}}},"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"223":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"117":{"tf":1.0}}}}}}},"n":{"df":1,"docs":{"398":{"tf":1.0}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"92":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"132":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"<":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"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":{"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":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"299":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"310":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"483":{"tf":1.0},"9":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"161":{"tf":1.0},"193":{"tf":1.0},"203":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"311":{"tf":1.0},"336":{"tf":1.0},"355":{"tf":1.0},"396":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"442":{"tf":1.0},"477":{"tf":1.0},"56":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"o":{"df":2,"docs":{"17":{"tf":1.0},"311":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"244":{"tf":1.0},"253":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"304":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.0},"317":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"466":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"508":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":15,"docs":{"108":{"tf":1.0},"18":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"469":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"479":{"tf":1.0},"498":{"tf":1.0},"506":{"tf":1.0},"75":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"294":{"tf":1.0},"506":{"tf":1.0}}}}}}},"i":{"d":{"df":2,"docs":{"433":{"tf":1.0},"437":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"68":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"189":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"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":35,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"384":{"tf":1.0},"397":{"tf":1.0},"415":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"471":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"421":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"263":{"tf":1.0},"433":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"298":{"tf":1.0},"404":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"231":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"20":{"tf":1.0},"398":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"457":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"441":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"454":{"tf":1.0},"455":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"27":{"tf":1.0},"3":{"tf":1.0},"393":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"401":{"tf":1.0},"402":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"467":{"tf":1.0},"506":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"107":{"tf":1.0},"502":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"310":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"153":{"tf":1.0},"382":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"507":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"257":{"tf":1.0},"458":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"324":{"tf":1.0},"326":{"tf":1.0},"504":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"498":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"35":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":4,"docs":{"240":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"252":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"317":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}}},"w":{"df":1,"docs":{"498":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}},"df":3,"docs":{"237":{"tf":1.0},"437":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":2,"docs":{"37":{"tf":1.0},"458":{"tf":1.0}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"104":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"14":{"tf":1.0},"141":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"249":{"tf":1.0},"251":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"285":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"406":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":2,"docs":{"272":{"tf":1.0},"304":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"400":{"tf":1.0},"448":{"tf":1.0},"487":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"86":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"454":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":5,"docs":{"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"237":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"108":{"tf":1.0},"285":{"tf":1.0},"494":{"tf":1.0},"99":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"121":{"tf":1.0},"238":{"tf":1.0},"278":{"tf":1.0},"329":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":11,"docs":{"14":{"tf":1.0},"302":{"tf":1.0},"312":{"tf":1.0},"344":{"tf":1.0},"351":{"tf":1.0},"369":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"390":{"tf":1.0}}},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"125":{"tf":1.0},"29":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"137":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"219":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"295":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}},"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":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"439":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"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":0,"docs":{},"y":{":":{":":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":16,"docs":{"18":{"tf":1.0},"19":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.0},"274":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"84":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":10,"docs":{"449":{"tf":1.0},"457":{"tf":1.0},"459":{"tf":1.0},"487":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"73":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"39":{"tf":1.0},"397":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"350":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":6,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"303":{"tf":1.0},"349":{"tf":1.0},"377":{"tf":1.0},"64":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"352":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"311":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"275":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"19":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"312":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0},"88":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"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":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"251":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"418":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"329":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"191":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"333":{"tf":1.0}},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":9,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"371":{"tf":1.0},"413":{"tf":1.0},"423":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"508":{"tf":1.0},"8":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"167":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"290":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"292":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"101":{"tf":1.0},"149":{"tf":1.0},"183":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"254":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"296":{"tf":1.0},"334":{"tf":1.0},"372":{"tf":1.0},"414":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"436":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"100":{"tf":1.0},"307":{"tf":1.0},"410":{"tf":1.0}},"e":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"366":{"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":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"177":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"330":{"tf":1.0},"495":{"tf":1.0},"58":{"tf":1.0}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"310":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"145":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"219":{"tf":1.0},"498":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"237":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"343":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"337":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"391":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"340":{"tf":1.0},"341":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"79":{"tf":1.0}}}}}}}}}},"df":15,"docs":{"14":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"255":{"tf":1.0},"325":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"454":{"tf":1.0},"475":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"317":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"448":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":9,"docs":{"133":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"504":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}},"v":{"df":2,"docs":{"353":{"tf":1.0},"494":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"23":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"406":{"tf":1.0},"440":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"123":{"tf":1.0},"125":{"tf":1.0},"129":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"494":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"437":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"301":{"tf":1.0}}}}}}},"f":{"c":{"df":56,"docs":{"108":{"tf":1.0},"114":{"tf":1.0},"123":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"177":{"tf":1.0},"185":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"302":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"332":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"375":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"419":{"tf":1.0},"433":{"tf":1.0},"452":{"tf":1.0},"456":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"492":{"tf":1.0},"61":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"167":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"337":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"245":{"tf":1.0},"74":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"252":{"tf":1.0},"268":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"87":{"tf":1.0}}}}}}},"s":{"df":5,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"288":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"284":{"tf":1.0},"358":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":8,"docs":{"152":{"tf":1.0},"153":{"tf":1.0},"194":{"tf":1.0},"215":{"tf":1.0},"246":{"tf":1.0},"306":{"tf":1.0},"453":{"tf":1.0},"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"132":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0}}}}}},"s":{"3":{"df":1,"docs":{"504":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"382":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"130":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"435":{"tf":1.0}}}}}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":14,"docs":{"108":{"tf":1.0},"13":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"362":{"tf":1.0},"433":{"tf":1.0},"5":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"d":{"(":{")":{".":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"500":{"tf":1.0},"501":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"240":{"tf":1.0},"256":{"tf":1.0},"404":{"tf":1.0},"81":{"tf":1.0}}}}}},"r":{"/":{"d":{"df":1,"docs":{"396":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"397":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"375":{"tf":1.0},"381":{"tf":1.4142135623730951},"85":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"395":{"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":1,"docs":{"69":{"tf":1.0}}}},"i":{"c":{"df":16,"docs":{"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"193":{"tf":1.0},"208":{"tf":1.0},"263":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"302":{"tf":1.0},"453":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"398":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"126":{"tf":1.0},"208":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0},"490":{"tf":1.0},"504":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"127":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}},"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":{"308":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"4":{"df":2,"docs":{"230":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}},"z":{"df":0,"docs":{},"e":{"df":1,"docs":{"505":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"395":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"310":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":19,"docs":{"11":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"357":{"tf":1.0},"385":{"tf":1.0},"449":{"tf":1.0},"459":{"tf":1.0},"51":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"149":{"tf":1.0},"372":{"tf":1.0},"424":{"tf":1.0},"428":{"tf":1.0},"431":{"tf":1.0},"447":{"tf":1.0},"508":{"tf":1.0}}}},"v":{"df":3,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"8":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"169":{"tf":1.0},"295":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"208":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"197":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"458":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"507":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"31":{"tf":1.0},"448":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"329":{"tf":1.0},"368":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"38":{"tf":1.0},"39":{"tf":1.0},"47":{"tf":1.0},"92":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"443":{"tf":1.0},"447":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"155":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"108":{"tf":1.0},"223":{"tf":1.0},"283":{"tf":1.0},"506":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"184":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":24,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.0},"142":{"tf":1.0},"146":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"186":{"tf":1.0},"202":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"264":{"tf":1.0},"318":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0},"411":{"tf":1.0},"420":{"tf":1.0},"434":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"480":{"tf":1.0},"486":{"tf":1.0},"63":{"tf":1.0}}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"429":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"405":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"201":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"214":{"tf":1.0},"410":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"l":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"110":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"505":{"tf":1.0},"506":{"tf":1.0}}}}},"t":{"df":14,"docs":{"243":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"351":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"397":{"tf":1.0},"467":{"tf":1.0},"493":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"504":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"448":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"329":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"271":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":19,"docs":{"13":{"tf":1.0},"278":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"340":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"390":{"tf":1.4142135623730951},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"402":{"tf":1.0},"458":{"tf":1.0},"479":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"40":{"tf":1.0},"41":{"tf":1.0},"50":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"328":{"tf":1.0}}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"504":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"330":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"392":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"157":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":9,"docs":{"108":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"378":{"tf":1.0},"398":{"tf":1.0},"408":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"260":{"tf":1.0},"319":{"tf":1.0},"348":{"tf":1.0},"398":{"tf":1.0},"452":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"488":{"tf":1.0},"59":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"140":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"257":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"105":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951}}}}}}}},"i":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"419":{"tf":1.0},"421":{"tf":1.0},"425":{"tf":1.0},"429":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"14":{"tf":1.0},"17":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"252":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":3,"docs":{"110":{"tf":1.0},"148":{"tf":1.0},"483":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"250":{"tf":1.0},"475":{"tf":1.0},"479":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"14":{"tf":1.0},"219":{"tf":1.0},"498":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"181":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/design/server/anatomy.html b/design/server/anatomy.html index b253d25038..6365db69bd 100644 --- a/design/server/anatomy.html +++ b/design/server/anatomy.html @@ -174,7 +174,7 @@

    Smithy Rust

    The Anatomy of a Service

    What is Smithy? At a high-level, it's a grammar for specifying services while leaving the business logic undefined. A Smithy Service specifies a collection of function signatures in the form of Operations, their purpose is to encapsulate business logic. A Smithy implementation should, for each Smithy Service, provide a builder, which accepts functions conforming to said signatures, and returns a service subject to the semantics specified by the model.

    This survey is disinterested in the actual Kotlin implementation of the code generator, and instead focuses on the structure of the generated Rust code and how it relates to the Smithy model. The intended audience is new contributors and users interested in internal details.

    -

    During the survey we will use the pokemon.smithy model as a reference:

    +

    During the survey we will use the pokemon.smithy model as a reference:

    /// A Pokémon species forms the basis for at least one Pokémon.
     @title("Pokémon Species")
     resource PokemonSpecies {
    @@ -378,7 +378,7 @@ 

    Operations

    }

    To summarize a model service constructed can be constructed from a Handler or a OperationService subject to the constraints of an OperationShape. More detailed information on these conversions is provided in the Handler and OperationService section Rust docs.

    Serialization and Deserialization

    -

    A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits:

    +

    A Smithy protocol specifies the serialization/deserialization scheme - how a HTTP request is transformed into a modelled input and a modelled output to a HTTP response. The is formalized using the FromRequest and IntoResponse traits:

    #![allow(unused)]
     fn main() {
     extern crate aws_smithy_http_server;
    @@ -566,7 +566,7 @@ 

    Plugins

    fn apply(&self, input: T) -> Self::Output { <U as Pl<Ser, Op, T>>::apply(self, input) } } }
    -

    An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs.

    +

    An example Plugin implementation can be found in /examples/pokemon-service/src/plugin.rs.

    Plugins can be applied in two places:

    • HTTP plugins, which are applied pre-deserialization/post-serialization, acting on HTTP requests/responses.
    • @@ -709,7 +709,7 @@

      Builders

      self.get_pokemon_species = Some(Route::new(svc)); self }
      -

      Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise.

      +

      Handlers and operations are upgraded to a Route as soon as they are registered against the service builder. You can think of Route as a boxing layer in disguise.

      You can transform a builder instance into a complete service (PokemonService) using one of the following methods:

      Crates in /rust-runtime (informally referred to as "runtime crates") are added to a crate's dependency only when used. For example, if a model uses event streams, the generated crates will depend on aws-smithy-eventstream.

      Generating code

      -

      smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and +

      smithy-rs's entry points are Smithy code-generation plugins, and is not a command. One entry point is in RustCodegenPlugin::execute and inherits from SmithyBuildPlugin in smithy-build. Code generation is in Kotlin and shared common, non-Rust specific code with the smithy Java repository. They plug into the Smithy gradle plugin, which is a gradle plugin.

      The comment at the beginning of execute describes what a Decorator is and uses the following terms:

      • Context: contains the model being generated, projection and settings for the build
      • -
      • Decorator: (also referred to as customizations) customizes how code is being generated. AWS services are required to sign with the SigV4 protocol, and a decorator adds Rust code to sign requests and responses. +
      • Decorator: (also referred to as customizations) customizes how code is being generated. AWS services are required to sign with the SigV4 protocol, and a decorator adds Rust code to sign requests and responses. Decorators are applied in reverse order of being added and have a priority order.
      • Writer: creates files and adds content; it supports templating, using # for substitutions
      • Location: the file where a symbol will be written to
      -

      The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method.

      -

      CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor.

      +

      The only task of a RustCodegenPlugin is to construct a CodegenVisitor and call its execute() method.

      +

      CodegenVisitor::execute() is given a Context and decorators, and calls a CodegenVisitor.

      CodegenVisitor, RustCodegenPlugin, and wherever there are different implementations between client and server, such as in generating error types, have corresponding server versions.

      Objects used throughout code generation are:

        -
      • Symbol: a node in a graph, an abstraction that represents the qualified name of a type; symbols reference and depend on other symbols, and have some common properties among languages (such as a namespace or a definition file). For Rust, we add properties to include more metadata about a symbol, such as its type
      • -
      • RustType: Option<T>, HashMap, ... along with their namespaces of origin such as std::collections
      • -
      • RuntimeType: the information to locate a type, plus the crates it depends on
      • +
      • Symbol: a node in a graph, an abstraction that represents the qualified name of a type; symbols reference and depend on other symbols, and have some common properties among languages (such as a namespace or a definition file). For Rust, we add properties to include more metadata about a symbol, such as its type
      • +
      • RustType: Option<T>, HashMap, ... along with their namespaces of origin such as std::collections
      • +
      • RuntimeType: the information to locate a type, plus the crates it depends on
      • ShapeId: an immutable object that identifies a Shape

      Useful conversions are:

      SymbolProvider.toSymbol(shape)
       

      where SymbolProvider constructs symbols for shapes. Some symbols require to create other symbols and types; -event streams and other streaming shapes are an example. -Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider, -and all other providers will work with this new symbol.

      +event streams and other streaming shapes are an example. +Symbol providers are all applied in order; if a shape uses a reserved keyword in Rust, its name is converted to a new name by a symbol provider, +and all other providers will work with this new symbol.

      Model.expectShape(shapeId)
       

      Each model has a shapeId to shape map; this method returns the shape associated with this shapeId.

      -

      Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape.

      -

      CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust; -here is how a service is constructed, -here a structure and so on.

      -

      Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis. -The complete result is a Rust crate, -in which all dependencies are written into their modules and lib.rs is generated (here). -execute() ends by running cargo fmt, +

      Some objects implement a transform method that only change the input model, so that code generation will work on that new model. This is used to, for example, add a trait to a shape.

      +

      CodegenVisitor is a ShapeVisitor. For all services in the input model, shapes are converted into Rust; +here is how a service is constructed, +here a structure and so on.

      +

      Code generation flows from writer to files and entities are (mostly) generated only on a need-by-need basis. +The complete result is a Rust crate, +in which all dependencies are written into their modules and lib.rs is generated (here). +execute() ends by running cargo fmt, to avoid having to format correctly Rust in Writers and to be sure the generated code follows the styling rules.

    diff --git a/design/server/middleware.html b/design/server/middleware.html index ccea0ed0a0..474df18c50 100644 --- a/design/server/middleware.html +++ b/design/server/middleware.html @@ -173,7 +173,7 @@

    Smithy Rust

    Middleware

    The following document provides a brief survey of the various positions middleware can be inserted in Smithy Rust.

    -

    We use the Pokémon service as a reference model throughout.

    +

    We use the Pokémon service as a reference model throughout.

    /// A Pokémon species forms the basis for at least one Pokémon.
     @title("Pokémon Species")
     resource PokemonSpecies {
    diff --git a/design/smithy/aggregate_shapes.html b/design/smithy/aggregate_shapes.html
    index 01d27b9cd4..6a8f6073b9 100644
    --- a/design/smithy/aggregate_shapes.html
    +++ b/design/smithy/aggregate_shapes.html
    @@ -180,7 +180,7 @@ 

    Aggregate S Unionenum -

    Most generated types are controlled by SymbolVisitor.

    +

    Most generated types are controlled by SymbolVisitor.

    List

    List objects in Smithy are transformed into vectors in Rust. Based on the output of the NullableIndex, the generated list may be Vec<T> or Vec<Option<T>>.

    Set

    @@ -284,7 +284,7 @@

    Union

    Smithy Union is modeled as enum in Rust.

    1. Generated enums must be marked #[non_exhaustive].
    2. -
    3. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue.
    4. +
    5. Generated enums must provide an Unknown variant. If parsing receives an unknown input that doesn't match any of the given union variants, Unknown should be constructed. Tracking Issue.
    6. Union members (enum variants) are not nullable, because Smithy union members cannot contain null values.
    7. When union members contain references to other shapes, we generate a wrapping variant (see below).
    8. Union members do not require #[non_exhaustive], because changing the shape targeted by a union member is not backwards compatible.
    9. diff --git a/design/smithy/overview.html b/design/smithy/overview.html index 16f37ca987..c1d5b268fb 100644 --- a/design/smithy/overview.html +++ b/design/smithy/overview.html @@ -181,10 +181,10 @@

      Internals

      Shape: The core Smithy primitive. A smithy model is composed of nested shapes defining an API.

    10. -

      Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt. Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately.

      +

      Symbol: A Representation of a type including namespaces and any dependencies required to use a type. A shape can be converted into a symbol by a SymbolVisitor. A SymbolVisitor maps shapes to types in your programming language (e.g. Rust). In the Rust SDK, see SymbolVisitor.kt. Symbol visitors are composable—many specific behaviors are mixed in via small & focused symbol providers, e.g. support for the streaming trait is mixed in separately.

    11. -

      Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a "Rust block" of code.

      +

      Writer: Writers are code generation primitives that collect code prior to being written to a file. Writers enable language specific helpers to be added to simplify codegen for a given language. For example, smithy-rs adds rustBlock to RustWriter to create a "Rust block" of code.

      writer.rustBlock("struct Model") {
           model.fields.forEach {
               write("${field.name}: #T", field.symbol)
      diff --git a/design/smithy/recursive_shapes.html b/design/smithy/recursive_shapes.html
      index 1c327748c8..10103a73b0 100644
      --- a/design/smithy/recursive_shapes.html
      +++ b/design/smithy/recursive_shapes.html
      @@ -194,7 +194,7 @@ 

      Recursive S | = help: insert indirection (e.g., a `Box`, `Rc`, or `&`) at some point to make `main::TopStructure` representable

      -

      This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt

      +

      This occurs because Rust types must be a size known at compile time. The way around this, as the message suggests, is to Box the offending type. smithy-rs implements this design in RecursiveShapeBoxer.kt

      To support this, as the message suggests, we must "Box" the offending type. There is a touch of trickiness—only one element in the cycle needs to be boxed, but we need to select it deterministically such that we always pick the same element between multiple codegen runs. To do this the Rust SDK will:

      1. Topologically sort the graph of shapes.
      2. diff --git a/design/smithy/simple_shapes.html b/design/smithy/simple_shapes.html index d7584772db..e1ecfc27e3 100644 --- a/design/smithy/simple_shapes.html +++ b/design/smithy/simple_shapes.html @@ -184,8 +184,8 @@

        Simple Shapes doublef64 bigIntegerBigInteger (Not implemented yet) bigDecimalBigDecimal (Not implemented yet) -timestampDateTime -documentDocument +timestampDateTime +documentDocument

        Big Numbers

        @@ -196,7 +196,7 @@

        Big Numbers

        pub struct BigDecimal(String); }

    This will enable us to add helpers over time as requested. Users will also be able to define their own conversions into their preferred large-number libraries.

    -

    As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here.

    +

    As of 5/23/2021 BigInteger / BigDecimal are not included in AWS models. Implementation is tracked here.

    Timestamps

    chrono is the current de facto library for datetime in Rust, but it is pre-1.0. DateTimes are represented by an SDK defined structure modeled on std::time::Duration from the Rust standard library.

    #![allow(unused)]